HELP:: Article not found on backend (/administrator)

General questions relating to Joomla! 3.x.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting.
Forum Post Assistant - If you are serious about wanting help, you should use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10
Post Reply
shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

HELP:: Article not found on backend (/administrator)

Post by shreateh » Sun May 28, 2023 3:06 pm

Hello
when navigating to backend (/adiministrator), nothing loads, no login form loads and i get an error message says "Article not found".
however, the frontend works fine.

after hard debugging, i fount out that the error is 404, and it gets from this file:
SITENAME/components/com_content/models/article.php
line:
if (empty($data))
{
return JError::raiseError(404,JText::_('COM_CONTENT_ERROR_ARTICLE_NOT_FOUND'));
}

any help how to solve this ?? many thanks
Last edited by toivo on Mon May 29, 2023 10:14 pm, edited 1 time in total.
Reason: mod note: typo in subject

User avatar
pe7er
Joomla! Master
Joomla! Master
Posts: 24975
Joined: Thu Aug 18, 2005 8:55 pm
Location: Nijmegen, Netherlands
Contact:

Re: HELP:: Article not found on backend (/adiministrator)

Post by pe7er » Sun May 28, 2023 7:05 pm

Can you give somewhat more info about your server/Joomla setup?

Use Forum Post Assistant: https://forumpostassistant.github.io/docs/
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com

shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

Re: HELP:: Article not found on backend (/adiministrator)

Post by shreateh » Sun May 28, 2023 8:01 pm

pe7er wrote:
Sun May 28, 2023 7:05 pm
Can you give somewhat more info about your server/Joomla setup?

Use Forum Post Assistant: https://forumpostassistant.github.io/docs/
thanks for the reply . here some info

joomla 3.8
Apache
PHP/7.4.33

and this is the article.php from beginning till the error message returned


Code: Select all

<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\Registry\Registry;
use Joomla\Utilities\IpHelper;

/**
 * Content Component Article Model
 *
 * @since  1.5
 */
class ContentModelArticle extends JModelItem
{
	/**
	 * Model context string.
	 *
	 * @var        string
	 */
	protected $_context = 'com_content.article';

	/**
	 * Method to auto-populate the model state.
	 *
	 * Note. Calling getState in this method will result in recursion.
	 *
	 * @since   1.6
	 *
	 * @return void
	 */
	protected function populateState()
	{
		$app = JFactory::getApplication('site');

		// Load state from the request.
		$pk = $app->input->getInt('id');
		$this->setState('article.id', $pk);

		$offset = $app->input->getUInt('limitstart');
		$this->setState('list.offset', $offset);

		// Load the parameters.
		$params = $app->getParams();
		$this->setState('params', $params);

		$user = JFactory::getUser();

		// If $pk is set then authorise on complete asset, else on component only
		$asset = empty($pk) ? 'com_content' : 'com_content.article.' . $pk;

		if ((!$user->authorise('core.edit.state', $asset)) && (!$user->authorise('core.edit', $asset)))
		{
			$this->setState('filter.published', 1);
			$this->setState('filter.archived', 2);
		}

		$this->setState('filter.language', JLanguageMultilang::isEnabled());
	}

	/**
	 * Method to get article data.
	 *
	 * @param   integer  $pk  The id of the article.
	 *
	 * @return  object|boolean|JException  Menu item data object on success, boolean false or JException instance on error
	 */
	public function getItem($pk = null)
	{
		$user = JFactory::getUser();

		$pk = (!empty($pk)) ? $pk : (int) $this->getState('article.id');

		if ($this->_item === null)
		{
			$this->_item = array();
		}

		if (!isset($this->_item[$pk]))
		{
			try
			{
				$db = $this->getDbo();
				$query = $db->getQuery(true)
					->select(
						$this->getState(
							'item.select', 'a.id, a.asset_id, a.title, a.alias, a.introtext, a.fulltext, ' .
							'a.state, a.catid, a.created, a.created_by, a.created_by_alias, ' .
							// Use created if modified is 0
							'CASE WHEN a.modified = ' . $db->quote($db->getNullDate()) . ' THEN a.created ELSE a.modified END as modified, ' .
							'a.modified_by, a.checked_out, a.checked_out_time, a.publish_up, a.publish_down, ' .
							'a.images, a.urls, a.attribs, a.version, a.ordering, ' .
							'a.metakey, a.metadesc, a.access, a.hits, a.metadata, a.featured, a.language, a.xreference'
						)
					);
				$query->from('#__content AS a')
					->where('a.id = ' . (int) $pk);

				// Join on category table.
				$query->select('c.title AS category_title, c.alias AS category_alias, c.access AS category_access')
					->innerJoin('#__categories AS c on c.id = a.catid')
					->where('c.published > 0');

				// Join on user table.
				$query->select('u.name AS author')
					->join('LEFT', '#__users AS u on u.id = a.created_by');

				// Filter by language
				if ($this->getState('filter.language'))
				{
					$query->where('a.language in (' . $db->quote(JFactory::getLanguage()->getTag()) . ',' . $db->quote('*') . ')');
				}

				// Join over the categories to get parent category titles
				$query->select('parent.title as parent_title, parent.id as parent_id, parent.path as parent_route, parent.alias as parent_alias')
					->join('LEFT', '#__categories as parent ON parent.id = c.parent_id');

				// Join on voting table
				$query->select('ROUND(v.rating_sum / v.rating_count, 0) AS rating, v.rating_count as rating_count')
					->join('LEFT', '#__content_rating AS v ON a.id = v.content_id');

				if ((!$user->authorise('core.edit.state', 'com_content.article.' . $pk)) && (!$user->authorise('core.edit', 'com_content.article.' . $pk)))
				{
					// Filter by start and end dates.
					$nullDate = $db->quote($db->getNullDate());
					$date = JFactory::getDate();

					$nowDate = $db->quote($date->toSql());

					$query->where('(a.publish_up = ' . $nullDate . ' OR a.publish_up <= ' . $nowDate . ')')
						->where('(a.publish_down = ' . $nullDate . ' OR a.publish_down >= ' . $nowDate . ')');
				}

				// Filter by published state.
				$published = $this->getState('filter.published');
				$archived = $this->getState('filter.archived');

				if (is_numeric($published))
				{
				    
					$query->where('(a.state = ' . (int) $published . ' OR a.state =' . (int) $archived . ')');
				}

				$db->setQuery($query);

				$data = $db->loadObject();
                
				if (empty($data))
				{
				    
					return JError::raiseError(404, "com_content/models/article.php 156 test ".JText::_('COM_CONTENT_ERROR_ARTICLE_NOT_FOUND'));
				}
Last edited by toivo on Mon Jun 05, 2023 4:46 am, edited 1 time in total.
Reason: mod note: added CODE tags

User avatar
AMurray
Joomla! Exemplar
Joomla! Exemplar
Posts: 9729
Joined: Sat Feb 13, 2010 7:35 am
Location: Australia

Re: HELP:: Article not found on backend (/adiministrator)

Post by AMurray » Sun May 28, 2023 9:22 pm

Please use the FPA - top of the screen the red box.
Regards - A Murray
General Support Moderator

shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

Re: HELP:: Article not found on backend (/adiministrator)

Post by shreateh » Sun May 28, 2023 9:39 pm

AMurray wrote:
Sun May 28, 2023 9:22 pm
Please use the FPA - top of the screen the red box.
error ::

As a security measure, this copy of FPA has been self-deleted due to the time it has been present on the server.
You will need to upload another copy of FPA to continue.

sozzled
I've been banned!
Posts: 13639
Joined: Sun Jul 05, 2009 3:30 am
Location: Canberra, Australia

"auto-deleted" FPA script

Post by sozzled » Sun May 28, 2023 9:52 pm

See viewtopic.php?f=806&t=991614 for the answer to that question.

shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

Re: "auto-deleted" FPA script

Post by shreateh » Sun May 28, 2023 10:02 pm

sozzled wrote:
Sun May 28, 2023 9:52 pm
See viewtopic.php?f=806&t=991614 for the answer to that question.
thanks, here is the result ..
Forum Post Assistant (v1.6.6) : 28-May-2023 wrote:
Basic Environment :: wrote:Joomla! Instance :: Not Found
Joomla! Configured :: Not Found

Host Configuration :: OS: Linux | OS Version: 2.6.32-954.3.5.lve1.4.90.el6.x86_64 | Technology: x86_64 | Web Server: Apache | Encoding: gzip, deflate, br | System TMP Writable: Yes | Free Disk Space : 899.58 GiB |

PHP Configuration :: Version: 7.4.33 | PHP API: litespeed | Session Path Writable: Yes | Display Errors: 0 | Error Reporting: 32767 | Log Errors To: error_log | Last Known Error: | Register Globals: | Magic Quotes: | Safe Mode: | Allow url fopen: 1 | Open Base: | Uploads: 1 | Max. Upload Size: 32M | Max. POST Size: 32M | Max. Input Time: -1 | Max. Execution Time: 30 | Memory Limit: 256M

Database Configuration :: Database Credentials incomplete or not available Nothing to display.
User Privileges : Unknown
Detailed Environment :: wrote:PHP Extensions :: Core (7.4.33) | date (7.4.33) | libxml (7.4.33) | openssl (7.4.33) | pcre (7.4.33) | sqlite3 (7.4.33) | zlib (7.4.33) | bz2 (7.4.33) | calendar (7.4.33) | ctype (7.4.33) | curl (7.4.33) | hash (7.4.33) | filter (7.4.33) | ftp (7.4.33) | gettext (7.4.33) | gmp (7.4.33) | SPL (7.4.33) | iconv (7.4.33) | pcntl (7.4.33) | readline (7.4.33) | Reflection (7.4.33) | session (7.4.33) | standard (7.4.33) | shmop (7.4.33) | SimpleXML (7.4.33) | mbstring (7.4.33) | tokenizer (7.4.33) | xml (7.4.33) | litespeed () | bcmath (7.4.33) | dom (20031129) | fileinfo (7.4.33) | gd (7.4.33) | imagick (3.7.0) | imap (7.4.33) | inotify (2.0.0) | intl (7.4.33) | json (7.4.33) | exif (7.4.33) | mysqli (7.4.33) | mysqlnd (mysqlnd 7.4.33) | PDO (7.4.33) | pdo_mysql (7.4.33) | pdo_sqlite (7.4.33) | Phar (7.4.33) | posix (7.4.33) | soap (7.4.33) | sockets (7.4.33) | xmlreader (7.4.33) | xmlrpc (7.4.33) | xmlwriter (7.4.33) | Zend OPcache (7.4.33) | Zend Engine (3.4.0) |
Potential Missing Extensions :: zip | mysql | mcrypt |

Switch User Environment :: PHP CGI: Yes | Server SU: Yes | PHP SU: Yes | Potential Ownership Issues: Unknown

gws
Joomla! Champion
Joomla! Champion
Posts: 5938
Joined: Tue Aug 23, 2005 1:56 pm
Location: South coast, UK
Contact:

Re: HELP:: Article not found on backend (/adiministrator)

Post by gws » Mon May 29, 2023 9:14 am

You need to run the FPA in the root of joomla.

shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

Re: HELP:: Article not found on backend (/adiministrator)

Post by shreateh » Mon May 29, 2023 12:09 pm

gws wrote:
Mon May 29, 2023 9:14 am
You need to run the FPA in the root of joomla.
ah ok sorry for that.. i have joomla installed inside root which is in public_html/Joomlafolder/fpa-en.php
and here is the result,
Forum Post Assistant (v1.6.6) : 29-May-2023 wrote:
Basic Environment :: wrote:Joomla! Instance :: Joomla! 3.10.0-Stable (Daraja) 14-August-2021
Joomla! Platform :: Joomla Platform 13.1.0-Stable (Curiosity) 24-Apr-2013
Joomla! Configured :: Yes | Read-Only (444) |
Configuration Options :: Offline: false | SEF: true | SEF Suffix: true | SEF ReWrite: true | .htaccess/web.config: Yes | GZip: true | Cache: false | CacheTime: 5 | CacheHandler: file | CachePlatformPrefix: false | FTP Layer: false | Proxy: false | LiveSite: | Session lifetime: 60 | Session handler: none | Shared sessions: false | SSL: 2 | Error Reporting: 1 | Site Debug: false | Language Debug: false | Default Access: Public | Unicode Slugs: true | dbConnection Type: mysqli | PHP Supports J! 3.10.0: Yes | Database Supports J! 3.10.0: Yes | Database Credentials Present: Yes |

Host Configuration :: OS: Linux | OS Version: 2.6.32-954.3.5.lve1.4.90.el6.x86_64 | Technology: x86_64 | Web Server: Apache | Encoding: gzip, deflate, br | System TMP Writable: Yes | Free Disk Space : 896.91 GiB |

PHP Configuration :: Version: 7.4.33 | PHP API: litespeed | Session Path Writable: Yes | Display Errors: 0 | Error Reporting: 32767 | Log Errors To: error_log | Last Known Error: | Register Globals: | Magic Quotes: | Safe Mode: | Allow url fopen: 1 | Open Base: | Uploads: 1 | Max. Upload Size: 32M | Max. POST Size: 32M | Max. Input Time: -1 | Max. Execution Time: 30 | Memory Limit: 256M

Database Configuration :: Version: 5.6.51-cll-lve (Client:5.6.51) | Database Size: 1063.91 MiB | #of Tables with config prefix:  108 | #of other Tables:  0 | User Privileges : GRANT ALL
Detailed Environment :: wrote:PHP Extensions :: Core (7.4.33) | date (7.4.33) | libxml (7.4.33) | openssl (7.4.33) | pcre (7.4.33) | sqlite3 (7.4.33) | zlib (7.4.33) | bz2 (7.4.33) | calendar (7.4.33) | ctype (7.4.33) | curl (7.4.33) | hash (7.4.33) | filter (7.4.33) | ftp (7.4.33) | gettext (7.4.33) | gmp (7.4.33) | SPL (7.4.33) | iconv (7.4.33) | pcntl (7.4.33) | readline (7.4.33) | Reflection (7.4.33) | session (7.4.33) | standard (7.4.33) | shmop (7.4.33) | SimpleXML (7.4.33) | mbstring (7.4.33) | tokenizer (7.4.33) | xml (7.4.33) | litespeed () | bcmath (7.4.33) | dom (20031129) | fileinfo (7.4.33) | gd (7.4.33) | imagick (3.7.0) | imap (7.4.33) | inotify (2.0.0) | intl (7.4.33) | json (7.4.33) | exif (7.4.33) | mysqli (7.4.33) | mysqlnd (mysqlnd 7.4.33) | PDO (7.4.33) | pdo_mysql (7.4.33) | pdo_sqlite (7.4.33) | Phar (7.4.33) | posix (7.4.33) | soap (7.4.33) | sockets (7.4.33) | xmlreader (7.4.33) | xmlrpc (7.4.33) | xmlwriter (7.4.33) | Zend OPcache (7.4.33) | Zend Engine (3.4.0) |
Potential Missing Extensions :: zip |

Switch User Environment :: PHP CGI: Yes | Server SU: Yes | PHP SU: Yes | Potential Ownership Issues: No
Folder Permissions :: wrote:Core Folders :: images/ (755) | components/ (755) | modules/ (755) | plugins/ (755) | language/ (755) | templates/ (755) | cache/ (755) | logs/ (---) | tmp/ (755) | administrator/components/ (755) | administrator/modules/ (755) | administrator/language/ (755) | administrator/templates/ (755) | administrator/logs/ (755) |

Elevated Permissions (First 10) ::
Database Information :: wrote:Database statistics :: Uptime: 1733918 | Threads: 23 | Questions: 545481571 | Slow queries: 60760 | Opens: 3059445 | Flush tables: 64 | Open tables: 5000 | Queries per second avg: 314.594 |
Extensions Discovered :: wrote:Components :: Site ::
Core :: com_wrapper (3.0.0) 1 | com_mailto (3.0.0) 1 |
3rd Party:: WF_LINK_SEARCH_TITLE (2.8.18) ? | WF_AGGREGATOR_VIDEO_TITLE (2.8.18) ? | WF_AGGREGATOR_DAILYMOTION_TITLE (2.8.18) ? | WF_AGGREGATOR_[youtube]_TITLE (2.8.18) ? | WF_AGGREGATOR_VIMEO_TITLE (2.8.18) ? | WF_AGGREGATOR_AUDIO_TITLE (2.8.18) ? | WF_FILESYSTEM_JOOMLA_TITLE (2.8.18) ? | WF_LINKS_JOOMLALINKS_TITLE (2.8.18) ? | WF_POPUPS_JCEMEDIABOX_TITLE (2.8.18) ? | WF_PRINT_TITLE (2.8.18) ? | WF_AUTOSAVE_TITLE (2.8.18) ? | WF_ARTICLE_TITLE (2.8.18) ? | WF_PREVIEW_TITLE (2.8.18) ? | WF_FONTSELECT_TITLE (2.8.18) ? | WF_WORDCOUNT_TITLE (2.8.18) ? | WF_CLEANUP_TITLE (2.8.18) ? | WF_CHARMAP_TITLE (2.8.18) ? | WF_HR_TITLE (2.8.18) ? | WF_DIRECTIONALITY_TITLE (2.8.18) ? | WF_IMGMANAGER_TITLE (2.8.18) ? | WF_SOURCE_TITLE (2.8.18) ? | WF_BROWSER_TITLE (2.8.18) ? | WF_FONTCOLOR_TITLE (2.8.18) ? | JCE - Noneditable (1.0.0) ? | WF_EMOTIONS_TITLE (2.8.18) ? | WF_ANCHOR_TITLE (2.8.18) ? | WF_SEARCHREPLACE_TITLE (2.8.18) ? | WF_CONTEXTMENU_TITLE (2.8.18) ? | WF_FULLSCREEN_TITLE (2.8.18) ? | WF_TEXTCASE_TITLE (2.8.18) ? | WF_MEDIA_TITLE (2.8.18) ? | WF_SPELLCHECKER_TITLE (2.8.18) ? | WF_TABLE_TITLE (2.8.18) ? | WF_STYLE_TITLE (2.8.18) ? | WF_FONTSIZESELECT_TITLE (2.8.18) ? | WF_HELP_TITLE (2.8.18) ? | WF_CLIPBOARD_TITLE (2.8.18) ? | WF_NONBREAKING_TITLE (2.8.18) ? | WF_STYLESELECT_TITLE (2.8.18) ? | WF_VISUALCHARS_TITLE (2.8.18) ? | WF_LINK_TITLE (2.8.18) ? | WF_LISTS_TITLE (2.8.18) ? | WF_REFERENCE_TITLE (2.8.18) ? | WF_FORMATSELECT_TITLE (2.8.18) ? | WF_VISUALBLOCKS_TITLE (2.8.18) ? | WF_KITCHENSINK_TITLE (2.8.18) ? | WF_XHTMLXTRAS_TITLE (2.8.18) ? | WF_ATTRIBUTES_TITLE (2.8.18) ? |

Components :: Admin ::
Core :: com_cache (3.0.0) 1 | com_fields (3.7.0) 1 | com_associations (3.7.0) 1 | com_messages (3.0.0) 1 | com_postinstall (3.2.0) 1 | com_finder (3.0.0) 1 | com_privacy (3.9.0) 1 | com_actionlogs (3.9.0) 1 | com_search (3.0.0) 1 | com_media (3.0.0) 1 | com_ajax (3.2.0) 1 | com_newsfeeds (3.0.0) 1 | com_checkin (3.0.0) 1 | com_config (3.0.0) 1 | com_languages (3.0.0) 1 | com_templates (3.0.0) 1 | com_joomlaupdate (3.6.2) 1 | com_contenthistory (3.2.0) 1 | com_content (3.0.0) 1 | com_tags (3.1.0) 1 | com_modules (3.0.0) 1 | com_login (3.0.0) 1 | com_users (3.0.0) 1 | com_installer (3.0.0) 1 | com_menus (3.0.0) 1 | com_admin (3.0.0) 1 | com_banners (3.0.0) 1 | com_redirect (3.0.0) 1 | com_cpanel (3.0.0) 1 | com_plugins (3.0.0) 1 | com_categories (3.0.0) 1 |
3rd Party:: Editors-xtd - Droppics (2.5.13) 1 | Content - droppics (2.5.13) 1 | Droppics (3.2.28_light) 1 | Akeeba (8.0.9) 1 | plg_jce_links_dropfiles (5.7.10_light) 1 | Editors-xtd - Dropfiles (5.7.10_light) 1 | Content - dropfiles (5.7.10_light) 1 | System - Dropfiles (5.7.10_light) 1 | K2 - dropfiles (5.7.10_light) 1 | Dropfiles (5.7.10_light) 1 | COM_JCE (2.8.18) 1 | GSD (1.0) 1 | System - Dropeditor (2.5.13) 1 | Joomunited updater (1.0.0) 1 | Editor - DropEditor (2.5.13) 1 | Dropfiles (5.7.10_light) 1 | plg_jce_links_dropfiles (5.7.10_light) 1 | Editors-xtd - Dropfiles (5.7.10_light) 1 | Content - dropfiles (5.7.10_light) 1 | System - Dropfiles (5.7.10_light) 1 | K2 - dropfiles (5.7.10_light) 1 | Content - Dropeditor (2.5.13) 1 | Droppics (3.2.28_light) 1 | Editors-xtd - Droppics (2.5.13) 1 | Content - droppics (2.5.13) 1 | DropEditor (2.5.13) 1 |

Modules :: Site ::
Core :: mod_search (3.0.0) 1 | mod_breadcrumbs (3.0.0) 1 | mod_feed (3.0.0) 1 | mod_related_items (3.0.0) 1 | mod_finder (3.0.0) 1 | mod_articles_archive (3.0.0) 1 | mod_wrapper (3.0.0) 1 | mod_footer (3.0.0) 1 | mod_articles_latest (3.0.0) 1 | mod_syndicate (3.0.0) 1 | mod_banners (3.0.0) 1 | mod_articles_categories (3.0.0) 1 | mod_tags_similar (3.1.0) 1 | mod_menu (3.0.0) 1 | mod_users_latest (3.0.0) 1 | mod_whosonline (3.0.0) 1 | mod_articles_news (3.0.0) 1 | mod_languages (3.5.0) 1 | mod_login (3.0.0) 1 | mod_custom (3.0.0) 1 | mod_articles_category (3.0.0) 1 | mod_tags_popular (3.1.0) 1 | mod_stats (3.0.0) 1 | mod_articles_popular (3.0.0) 1 | mod_random_image (3.0.0) 1 |
3rd Party:: Mini Frontpage (2.2.3) 1 |

Modules :: Admin ::
Core :: mod_quickicon (3.0.0) 1 | mod_feed (3.0.0) 1 | mod_privacy_dashboard (3.9.0) 1 | mod_popular (3.0.0) 1 | mod_latestactions (3.9.0) 1 | mod_menu (3.0.0) 1 | mod_status (3.0.0) 1 | mod_sampledata (3.8.0) 1 | mod_logged (3.0.0) 1 | mod_login (3.0.0) 1 | mod_custom (3.0.0) 1 | mod_toolbar (3.0.0) 1 | mod_title (3.0.0) 1 | mod_latest (3.0.0) 1 | mod_stats_admin (3.0.0) 1 | mod_submenu (3.0.0) 1 | mod_multilangstatus (3.0.0) 1 | mod_version (3.0.0) 1 |
3rd Party::

Libraries ::
Core ::
3rd Party:: file_fof30 (3.6.2) ? | Astroid Plugin (2.4.0) ? | file_fof40 (4.0.6) ? | Regular Labs Library (21.8.10988) 1 |

Plugins ::
Core :: plg_content_emailcloak (3.0.0) 1 | plg_content_pagenavigation (3.0.0) 1 | plg_content_pagebreak (3.0.0) 1 | plg_content_loadmodule (3.0.0) 1 | plg_content_finder (3.0.0) 1 | plg_content_vote (3.0.0) 1 | plg_content_confirmconsent (3.9.0) 1 | plg_content_fields (3.7.0) 1 | plg_content_joomla (3.0.0) 1 | plg_installer_packageinstaller (3.6.0) 1 | PLG_INSTALLER_URLINSTALLER (3.6.0) 1 | PLG_INSTALLER_FOLDERINSTALLER (3.6.0) 1 | plg_search_tags (3.0.0) 1 | plg_search_content (3.0.0) 1 | plg_search_contacts (3.0.0) 1 | plg_search_newsfeeds (3.0.0) 1 | plg_search_categories (3.0.0) 1 | plg_privacy_message (3.9.0) 1 | plg_privacy_content (3.9.0) 1 | plg_privacy_consents (3.9.0) 1 | plg_privacy_user (3.9.0) 1 | plg_privacy_actionlogs (3.9.0) 1 | plg_twofactorauth_totp (3.2.0) 1 | plg_twofactorauth_yubikey (3.2.0) 1 | plg_quickicon_eos310 (3.10.0) 1 | plg_quickicon_privacycheck (3.9.0) 1 | plg_quickicon_phpversioncheck (3.7.0) 1 | plg_quickicon_extensionupdate (3.0.0) 1 | plg_quickicon_joomlaupdate (3.0.0) 1 | plg_extension_joomla (3.0.0) 1 | plg_editors-xtd_article (3.0.0) 1 | plg_editors-xtd_menu (3.7.0) 1 | plg_editors-xtd_image (3.0.0) 1 | plg_editors-xtd_module (3.5.0) 1 | plg_editors-xtd_pagebreak (3.0.0) 1 | plg_editors-xtd_fields (3.7.0) 1 | plg_editors-xtd_readmore (3.0.0) 1 | plg_captcha_recaptcha_invisible (3.8) 1 | plg_captcha_recaptcha (3.4.0) 1 | plg_finder_tags (3.0.0) 1 | plg_finder_content (3.0.0) 1 | plg_finder_contacts (3.0.0) 1 | plg_finder_newsfeeds (3.0.0) 1 | plg_finder_categories (3.0.0) 1 | plg_system_privacyconsent (3.9.0) 1 | plg_system_sessiongc (3.8.6) 1 | plg_system_p3p (3.0.0) 1 | plg_system_logrotation (3.9.0) 1 | plg_system_updatenotification (3.5.0) 1 | plg_system_remember (3.0.0) 1 | plg_system_highlight (3.0.0) 1 | plg_system_languagefilter (3.0.0) 0 | plg_system_languagecode (3.0.0) 0 | plg_system_cache (3.0.0) 0 | plg_system_log (3.0.0) 1 | plg_system_sef (3.0.0) 1 | plg_system_redirect (3.0.0) 1 | PLG_SYSTEM_ACTIONLOGS (3.9.0) 1 | plg_system_logout (3.0.0) 1 | plg_system_fields (3.7.0) 1 | plg_system_stats (3.5.0) 1 | plg_system_debug (3.0.0) 1 | plg_user_profile (3.0.0) 1 | plg_user_contactcreator (3.0.0) 1 | plg_user_terms (3.9.0) 1 | plg_user_joomla (3.0.0) 1 | plg_authentication_ldap (3.0.0) 1 | plg_authentication_cookie (3.0.0) 1 | plg_authentication_joomla (3.0.0) 1 | plg_authentication_gmail (3.0.0) 1 | PLG_ACTIONLOG_JOOMLA (3.9.0) 1 | plg_fields_list (3.7.0) 1 | plg_fields_imagelist (3.7.0) 1 | plg_fields_radio (3.7.0) 1 | plg_fields_checkboxes (3.7.0) 1 | plg_fields_repeatable (3.9.0) 1 | plg_fields_editor (3.7.0) 1 | plg_fields_media (3.7.0) 1 | plg_fields_integer (3.7.0) 1 | plg_fields_sql (3.7.0) 1 | plg_fields_textarea (3.7.0) 1 | plg_fields_url (3.7.0) 1 | plg_fields_user (3.7.0) 1 | plg_fields_usergrouplist (3.7.0) 1 | plg_fields_calendar (3.7.0) 1 | plg_fields_color (3.7.0) 1 | plg_fields_text (3.7.0) 1 |
3rd Party:: Content - droppics (2.5.13) 1 | Content - Dropeditor (2.5.13) 1 | Content - Adsinside (5.2) 1 | plg_content_jce (2.8.18) 1 | Content - dropfiles (5.7.10_light) 1 | PLG_GSD_CONTENT (1.0) 1 | PLG_GSD_ZOO (1.0) 0 | PLG_GSD_DJCATALOG2 (1.0) 0 | PLG_GSD_MENUS (1.0) 0 | PLG_GSD_SPPAGEBUILDER (1.0) 0 | PLG_GSD_QUIX (1.0) 0 | PLG_GSD_J2STORE (1.0) 0 | PLG_GSD_JSHOPPING (1.0) 0 | PLG_GSD_HIKASHOP (1.0) 0 | PLG_GSD_DJCLASSIFIEDS (1.0) 0 | PLG_GSD_K2 (1.0) 0 | PLG_GSD_ESHOP (1.0) 0 | PLG_GSD_RSBLOG (1.0) 0 | PLG_GSD_EASYBLOG (1.0) 0 | PLG_GSD_SOBIPRO (1.0) 0 | PLG_GSD_GRIDBOX (1.0) 0 | PLG_GSD_EVENTBOOKING (1.0) 0 | PLG_GSD_DJEVENTS (1.0) 0 | PLG_GSD_JCALPRO (1.0) 0 | PLG_GSD_VIRTUEMART (1.0) 0 | Joomunited updater (1.0.0) 1 | plg_installer_jce (2.8.18) 1 | plg_quickicon_akeebabackup (8.0.9) 1 | plg_quickicon_jce (2.8.18) 1 | plg_extension_jce (2.8.18) 1 | PLG_EDITORS-XTD_SOURCERER (9.0.0) 1 | Editors-xtd - Droppics (2.5.13) 1 | Editors-xtd - Dropfiles (5.7.10_light) 1 | K2 - dropfiles (5.7.10_light) 1 | Helix3 - Ajax (2.5.6) 1 | System - Helix3 Framework (2.5.6) 1 | plg_system_gsd (4.8.3) 1 | PLG_SYSTEM_SOURCERER (9.0.0) 1 | PLG_SYSTEM_BACKUPONUPDATE (8.0.9) 1 | plg_system_nrframework (4.5.3) 1 | T3 Framework (2.7.5) 1 | System - Dropeditor (2.5.13) 1 | PLG_SYSTEM_REGULARLABS (21.8.10988) 1 | plg_system_jce (2.8.18) 1 | System - Dropfiles (5.7.10_light) 1 | Editor - DropEditor (2.5.13) 1 | plg_editors_tinymce (4.5.12) ? | plg_editors_jce (2.8.18) 1 | plg_editors_codemirror (5.60.0) 1 | PLG_ACTIONLOG_AKEEBABACKUP (8.0.9) 1 | plg_fields_mediajce (2.8.18) 1 | plg_jce_links_dropfiles (5.7.10_light) 1 |
Templates Discovered :: wrote:Templates :: Site :: protostar (1.0) 1 | beez3 (3.1.0) 1 | tz_jollyany (3.2.6) ? | astroid_template_zero (2.4.0) ? | ja_cityguide (1.0.3) 1 |
Templates :: Admin :: hathor (3.0.0) 1 | isis (1.0) 1 |

shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

Re: HELP:: Article not found on backend (/adiministrator)

Post by shreateh » Mon May 29, 2023 9:40 pm

hi,
i fount out that joomla considers /administrator/ as a category!
when i add an article id at the end, it opens article,
example:
https://websiteName/administrator/65
it opens article with the id = 65

by default, without adding article number to end, it searches for article number = 0

User avatar
AMurray
Joomla! Exemplar
Joomla! Exemplar
Posts: 9729
Joined: Sat Feb 13, 2010 7:35 am
Location: Australia

Re: HELP:: Article not found on backend (/adiministrator)

Post by AMurray » Mon May 29, 2023 10:13 pm

Don't understand this - /administrator is not a category (and as I see it shouldn't be able to be created as a category in the category manager).

It's a folder for your back-end administration, and therefore should be a "reserved word" and should be prevented from being used as a category name.

Little off topic but noting you have an out-of-date Joomla 3.10.0 (the latest is 3.10.11) and your PHP is out of date.
Regards - A Murray
General Support Moderator

shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

Re: HELP:: Article not found on backend (/adiministrator)

Post by shreateh » Mon May 29, 2023 10:18 pm

thanks for the reply
i did not create any related categories to administrator word, the website uses to work fine, i dont remember if i missed something or deleted any by mistake. anyway now once i navigate to administrator it searches for article id =0 and says "article not found".
while when i navigate to /administrator/index.php it says "category not found"
i tried the most common chatGPT solutions but failed.

shreateh
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Sun Jan 25, 2015 10:20 am

Re: HELP:: Article not found on backend (/administrator)

Post by shreateh » Sun Jun 04, 2023 9:45 pm

Hello,
website updated to joomla 4 , php 8.1
and now when i visit administrator i get this message :

Joomla\CMS\Router\Exception\RouteNotFoundException Object ( [message:protected] => Page not found [string:Exception:private] => [code:protected] => 404 [file:protected] => /home/khalil/public_html/libraries/src/Router/Router.php [line:protected] => 155 [trace:Exception:private] => Array ( [0] => Array ( [file] => /home/khalil/public_html/libraries/src/Application/SiteApplication.php [line] => 746 [function] => parse [class] => Joomla\CMS\Router\Router [type] => -> ) [1] => Array ( [file] => /home/khalil/public_html/libraries/src/Application/SiteApplication.php [line] => 232 [function] => route [class] => Joomla\CMS\Application\SiteApplication [type] => -> ) [2] => Array ( [file] => /home/khalil/public_html/libraries/src/Application/CMSApplication.php [line] => 293 [function] => doExecute [class] => Joomla\CMS\Application\SiteApplication [type] => -> ) [3] => Array ( [file] => /home/khalil/public_html/includes/app.php [line] => 61 [function] => execute [class] => Joomla\CMS\Application\CMSApplication [type] => -> ) [4] => Array ( [file] => /home/khalil/public_html/index.php [line] => 32 [args] => Array ( [0] => /home/khalil/public_html/includes/app.php ) [function] => require_once ) ) [previous:Exception:private] => )


Post Reply

Return to “General Questions/New to Joomla! 3.x”