I installed a module then issues started happening, i managed to remove again but i still cannot login to the admin panel. the frontend is working properly. js files path in admin panel looks wrong, please help
Hi @RabieKD
I think you need to check the error logs once. After that you will be able to find out the issue.
Here are the steps can help you to check error log:
/*error_reporting(E_ALL | E_STRICT);*/
error_reporting(E_ALL); $_SERVER['MAGE_IS_DEVELOPER_MODE'] = true;
ini_set('display_errors', 1);
Thanks
Hope it helps !
Thanks for replying.
I open index.php and search for error_reporting(E_ALL | E_STRICT); but there is no result! it doesnt exist in my index.php file.
OK, i uncommented last one and it is showing the below error in the login bage:
Fatal error: Call to a member function getBlockName() on boolean in /home/kstarskw/public_html/app/code/core/Mage/Captcha/Block/Captcha.php on line 43
but i think this error is occuring because the js files are being loaded.
You need to delete var/cache and var/session directories.
I hope it will work for you.
Thanks
if issue solved,Click Kudos & Accept as Solution
Hello @RabieKD ,
There is look like captcha is not working. So we have to disable it, Please open phpmyadmin and run below command
Search on core_config_data table in your database .Search admin/captcha/enable on run the below code
Update core_config_data set value=0 WHERE path LIKE '%admin/captcha/enable%';
--
If my answer is useful, please Accept as Solution & give Kudos
Hi @RabieKD
Were you able to find a solution of this issue?