cancel
Showing results for 
Search instead for 
Did you mean: 

Admin Panel Login page not working

Admin Panel Login page not working

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

 

login page.JPG

6 REPLIES 6

Re: Admin Panel Login page not working

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:

 

  1. Open your Magento installation directory. Locate and open index.php file.
  2. Search for error_reporting(E_ALL | E_STRICT); code.
  3. Comment it out like that:
    /*error_reporting(E_ALL | E_STRICT);*/
  4. And use the following code instead:
    error_reporting(E_ALL);
    $_SERVER['MAGE_IS_DEVELOPER_MODE'] = true;
  5. Uncomment it by removing the # sign, so it looks like that:
    ini_set('display_errors', 1);
  6. Save this file and upload to the server. Reload your website page to see errors.

 

Thanks

 

Hope it helps !

if issue solved,Click Kudos & Accept as Solution

Re: Admin Panel Login page not working

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.

Re: Admin Panel Login page not working

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.

Re: Admin Panel Login page not working

@RabieKD 

 

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

Re: Admin Panel Login page not working

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

Re: Admin Panel Login page not working

Hi @RabieKD 

Were you able to find a solution of this issue?

---
Problem Solved Click Accept as Solution!:Magento Community India Forum