J2.5

Users Cannot Login in 2.5.13

From Joomla! Documentation

Revision as of 16:36, 7 August 2013 by Mfuller526 (talk | contribs)

The "J2.5" namespace is a namespace scheduled to be archived. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

A small number of users have reported not being able to login to the front end in Joomla 2.5.13.

This seems to only occur when the users have a corrupt asset table.

This is usually due to a faulty migration from Joomla 1.5.

To check this, look at your asset table in your database. If there is more than one parent_id with a value of 0 this indicates a corrupt table.

SELECT count(*) FROM `#__assets` where parent_id = 0

Apply your own prefix instead of #_.

There should only be 1, only the root asset is allowed to have parent_id=0.

To fix you can manually or with an sql query change the parent ids. If the broken assets are categories the parent should be set to the id number for that component (for example usually the id for com_content is 8). (They can also be set to have a parent of another category in the same component.)

SQL queries: UPDATE `prefix_assets` SET `parent_id`=1 WHERE `parent_id`=0 AND id>1 UPDATE `prefix_assets` SET `parent_id`=0 WHERE `title` = 'Root Asset' Note: change prefix to your database extension (Global configuration > Server > Database Settings > Database Tables Prefix)

For something besides a category, set the parent either to a category id or to the id for the extension if the extension does not use categories.