“500 - An error has occurred” in Joomla, when attemping to login in backend

一笑奈何 提交于 2019-12-09 06:46:06

问题


When I attemp to login in the backend using the right login of the Super User i get an error page "500 - An error has occurred."

I have changed the Super User password by PhpMyAdmin and the error remains.

I have installed Joomla 2.5 installed.


回答1:


First you have change folder permission to 775 for the following folders:

cache, logs, tmp & administrator/cache

Then go to: configuration.php

find code:
$log_path = 'XXXXXXXXXXXXX';
$tmp_path = 'XXXXXXXXXXXXX';

and change code into:
$log_path = './logs';
$tmp_path = './tmp';


来源:https://stackoverflow.com/questions/14208594/500-an-error-has-occurred-in-joomla-when-attemping-to-login-in-backend

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!