How Can We Help?
When trying to log into the backend after entering the username and password and as soon as you click on login, I get the following error. Fatal error: Call to undefined method: stdClass->onAuthenticate() in /home/sitename/libraries/joomla/user/authentication.php on line 121 (Joomla! 1.5)
Solution
Change the file permissions of the plugin folder to at least 755. And try again and the backend should load perfectly
find . -type f -exec chmod 644 {} \\;
find . -type d -exec chmod 755 {} \\;
and I put unzipped a fresh copy of joomla on top and that didn\’t work. Any other ideas on this?
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
and I put unzipped a fresh copy of joomla on top and that didn\’t work. Any other ideas on this?
Maybe check the ownership of the folder, chown apache:apache or chmod to 777 for testing purposes to make absulutely sure the permissions aren\’t the issue
Where exactly do the File Permisions of plugin folder found? i tried to look for it but i cannot see it.