Admin panel is not login or not showing invalid credentials error in magento 1.9.0.1Admin Panel not workingcan not able to login to admin panelMagento Enterprise Admin Login Not Working SuddenlyMagento Admin Login Refreshes for correct credentialsadmin panel not log in magento?Problem in login of admin panelmagento 1.9 login page not showing any messagesMagento Admin Panel Login errorError Trying to Login to Admin PanelMagento 2 Error After logging in Admin Panel
Why did computer video outputs go from digital to analog, then back to digital?
How can I receive packages while in France?
What is the meaning of "a thinly disguised price"?
What do I do when a student working in my lab "ghosts" me?
What should I say when a company asks you why someone (a friend) who was fired left?
Is it normal practice to screen share with a client?
Are gangsters hired to attack people at a train station classified as a terrorist attack?
Very basic singly linked list
Extrapolation v. Interpolation
Other than a swing wing, what types of variable geometry have flown?
Spoken encryption
Impact of throwing away fruit waste on a peak > 3200 m above a glacier
How do I run a game when my PCs have different approaches to combat?
Examples of solving for unknowns using equivalence relations that are not equality, inequality, or boolean truth?
Are glider winch launches rarer in the USA than in the rest of the world? Why?
Monty Hall Problem with a Fallible Monty
Is Grandpa Irrational? Another Grandpa Mystery
Who has jurisdiction for a crime committed in an embassy?
Is a normal-sized rug with the Animate Objects spell cast on it able to carry a person and fly?
Which creatures count as green creatures?
Film where a boy turns into a princess
What is a Union Word™?
What exactly makes a General Products hull nearly indestructible?
How did C64 games handle music during gameplay?
Admin panel is not login or not showing invalid credentials error in magento 1.9.0.1
Admin Panel not workingcan not able to login to admin panelMagento Enterprise Admin Login Not Working SuddenlyMagento Admin Login Refreshes for correct credentialsadmin panel not log in magento?Problem in login of admin panelmagento 1.9 login page not showing any messagesMagento Admin Panel Login errorError Trying to Login to Admin PanelMagento 2 Error After logging in Admin Panel
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have an issue that in my magento website admin panel is not logging in with correct username and password and also not showing any error message of invalid login with incorrect credentials.
So please let me know how I resolve the issues of admin login.
Thanks
magento-1.9 admin-panel
add a comment |
I have an issue that in my magento website admin panel is not logging in with correct username and password and also not showing any error message of invalid login with incorrect credentials.
So please let me know how I resolve the issues of admin login.
Thanks
magento-1.9 admin-panel
You have to reset admin password from database.
– Suresh Chikani
Sep 15 '16 at 6:08
try with other browser.....
– Baby in Magento
Sep 15 '16 at 6:13
Thanks for quick reply. But nothing happen when reset password. And main thing is that its not showing any error like invalid credentials or invalid username and password. I think it may cause of sessions generate error. So please suggest me how I resolve this issues.
– Vikas Pandey
Sep 15 '16 at 6:45
add a comment |
I have an issue that in my magento website admin panel is not logging in with correct username and password and also not showing any error message of invalid login with incorrect credentials.
So please let me know how I resolve the issues of admin login.
Thanks
magento-1.9 admin-panel
I have an issue that in my magento website admin panel is not logging in with correct username and password and also not showing any error message of invalid login with incorrect credentials.
So please let me know how I resolve the issues of admin login.
Thanks
magento-1.9 admin-panel
magento-1.9 admin-panel
edited Sep 15 '16 at 5:57
Mohit Kumar Arora
7,3815 gold badges17 silver badges36 bronze badges
7,3815 gold badges17 silver badges36 bronze badges
asked Sep 15 '16 at 5:35
Vikas PandeyVikas Pandey
12 bronze badges
12 bronze badges
You have to reset admin password from database.
– Suresh Chikani
Sep 15 '16 at 6:08
try with other browser.....
– Baby in Magento
Sep 15 '16 at 6:13
Thanks for quick reply. But nothing happen when reset password. And main thing is that its not showing any error like invalid credentials or invalid username and password. I think it may cause of sessions generate error. So please suggest me how I resolve this issues.
– Vikas Pandey
Sep 15 '16 at 6:45
add a comment |
You have to reset admin password from database.
– Suresh Chikani
Sep 15 '16 at 6:08
try with other browser.....
– Baby in Magento
Sep 15 '16 at 6:13
Thanks for quick reply. But nothing happen when reset password. And main thing is that its not showing any error like invalid credentials or invalid username and password. I think it may cause of sessions generate error. So please suggest me how I resolve this issues.
– Vikas Pandey
Sep 15 '16 at 6:45
You have to reset admin password from database.
– Suresh Chikani
Sep 15 '16 at 6:08
You have to reset admin password from database.
– Suresh Chikani
Sep 15 '16 at 6:08
try with other browser.....
– Baby in Magento
Sep 15 '16 at 6:13
try with other browser.....
– Baby in Magento
Sep 15 '16 at 6:13
Thanks for quick reply. But nothing happen when reset password. And main thing is that its not showing any error like invalid credentials or invalid username and password. I think it may cause of sessions generate error. So please suggest me how I resolve this issues.
– Vikas Pandey
Sep 15 '16 at 6:45
Thanks for quick reply. But nothing happen when reset password. And main thing is that its not showing any error like invalid credentials or invalid username and password. I think it may cause of sessions generate error. So please suggest me how I resolve this issues.
– Vikas Pandey
Sep 15 '16 at 6:45
add a comment |
3 Answers
3
active
oldest
votes
you can login to phpmyadmin, search for "admin_user" field & click on that and choose MD5 and give new password & save it.
step 1 : Login to Phpmyadmin & select proper database
step 2: : search for admin_user

step 3 : click on admin_user

step 4 : select MD5 from dropdown and type new password

step 5 : click on "Go" button

you can find detailed explaination here .
add a comment |
This types of problems occures when magento fails to get domain(mainly in case of localhost). During login magento tries to create cookie. You can wether cookies are forming or not from your web browser. If it is not forming then you have to make some changes in varien.php file.
Find the following file.
appcodelocalMageCoreModelSessionAbstractVarien.php
and overide it in local(make required folders if not there). Then find
if (isset($cookieParams['domain']))
$cookieParams['domain'] = $cookie->getDomain();
Simply change the condition to
if (isset($cookieParams['domain']) && !in_array("127.0.0.1", self::getValidatorData()))
$cookieParams['domain'] = $cookie->getDomain();
main reason of doing so is to disable domain check if running on localhost.
add a comment |
I had fixed the above issue by following these steps.
1- Go to file app/code/core/Mage/Core/Model/session/abstract/varien.php
2- Go to line number 95 and comment out the cookieParams array and define $cookieParams as an array like below
// session cookie params
/*$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);*/
$cookieParams = array();
This will allow you to log in.
3- Then go to admin panel check configuration, System->Configuration->web->session & cookie management in that the HTTP control set from Yes to No. Clear or set the proper path.
Hope this answer will help you.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f136416%2fadmin-panel-is-not-login-or-not-showing-invalid-credentials-error-in-magento-1-9%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
you can login to phpmyadmin, search for "admin_user" field & click on that and choose MD5 and give new password & save it.
step 1 : Login to Phpmyadmin & select proper database
step 2: : search for admin_user

step 3 : click on admin_user

step 4 : select MD5 from dropdown and type new password

step 5 : click on "Go" button

you can find detailed explaination here .
add a comment |
you can login to phpmyadmin, search for "admin_user" field & click on that and choose MD5 and give new password & save it.
step 1 : Login to Phpmyadmin & select proper database
step 2: : search for admin_user

step 3 : click on admin_user

step 4 : select MD5 from dropdown and type new password

step 5 : click on "Go" button

you can find detailed explaination here .
add a comment |
you can login to phpmyadmin, search for "admin_user" field & click on that and choose MD5 and give new password & save it.
step 1 : Login to Phpmyadmin & select proper database
step 2: : search for admin_user

step 3 : click on admin_user

step 4 : select MD5 from dropdown and type new password

step 5 : click on "Go" button

you can find detailed explaination here .
you can login to phpmyadmin, search for "admin_user" field & click on that and choose MD5 and give new password & save it.
step 1 : Login to Phpmyadmin & select proper database
step 2: : search for admin_user

step 3 : click on admin_user

step 4 : select MD5 from dropdown and type new password

step 5 : click on "Go" button

you can find detailed explaination here .
answered Sep 15 '16 at 6:12
Baby in MagentoBaby in Magento
95813 gold badges57 silver badges175 bronze badges
95813 gold badges57 silver badges175 bronze badges
add a comment |
add a comment |
This types of problems occures when magento fails to get domain(mainly in case of localhost). During login magento tries to create cookie. You can wether cookies are forming or not from your web browser. If it is not forming then you have to make some changes in varien.php file.
Find the following file.
appcodelocalMageCoreModelSessionAbstractVarien.php
and overide it in local(make required folders if not there). Then find
if (isset($cookieParams['domain']))
$cookieParams['domain'] = $cookie->getDomain();
Simply change the condition to
if (isset($cookieParams['domain']) && !in_array("127.0.0.1", self::getValidatorData()))
$cookieParams['domain'] = $cookie->getDomain();
main reason of doing so is to disable domain check if running on localhost.
add a comment |
This types of problems occures when magento fails to get domain(mainly in case of localhost). During login magento tries to create cookie. You can wether cookies are forming or not from your web browser. If it is not forming then you have to make some changes in varien.php file.
Find the following file.
appcodelocalMageCoreModelSessionAbstractVarien.php
and overide it in local(make required folders if not there). Then find
if (isset($cookieParams['domain']))
$cookieParams['domain'] = $cookie->getDomain();
Simply change the condition to
if (isset($cookieParams['domain']) && !in_array("127.0.0.1", self::getValidatorData()))
$cookieParams['domain'] = $cookie->getDomain();
main reason of doing so is to disable domain check if running on localhost.
add a comment |
This types of problems occures when magento fails to get domain(mainly in case of localhost). During login magento tries to create cookie. You can wether cookies are forming or not from your web browser. If it is not forming then you have to make some changes in varien.php file.
Find the following file.
appcodelocalMageCoreModelSessionAbstractVarien.php
and overide it in local(make required folders if not there). Then find
if (isset($cookieParams['domain']))
$cookieParams['domain'] = $cookie->getDomain();
Simply change the condition to
if (isset($cookieParams['domain']) && !in_array("127.0.0.1", self::getValidatorData()))
$cookieParams['domain'] = $cookie->getDomain();
main reason of doing so is to disable domain check if running on localhost.
This types of problems occures when magento fails to get domain(mainly in case of localhost). During login magento tries to create cookie. You can wether cookies are forming or not from your web browser. If it is not forming then you have to make some changes in varien.php file.
Find the following file.
appcodelocalMageCoreModelSessionAbstractVarien.php
and overide it in local(make required folders if not there). Then find
if (isset($cookieParams['domain']))
$cookieParams['domain'] = $cookie->getDomain();
Simply change the condition to
if (isset($cookieParams['domain']) && !in_array("127.0.0.1", self::getValidatorData()))
$cookieParams['domain'] = $cookie->getDomain();
main reason of doing so is to disable domain check if running on localhost.
answered Sep 15 '16 at 13:42
Nitin SrivastavaNitin Srivastava
1093 bronze badges
1093 bronze badges
add a comment |
add a comment |
I had fixed the above issue by following these steps.
1- Go to file app/code/core/Mage/Core/Model/session/abstract/varien.php
2- Go to line number 95 and comment out the cookieParams array and define $cookieParams as an array like below
// session cookie params
/*$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);*/
$cookieParams = array();
This will allow you to log in.
3- Then go to admin panel check configuration, System->Configuration->web->session & cookie management in that the HTTP control set from Yes to No. Clear or set the proper path.
Hope this answer will help you.
add a comment |
I had fixed the above issue by following these steps.
1- Go to file app/code/core/Mage/Core/Model/session/abstract/varien.php
2- Go to line number 95 and comment out the cookieParams array and define $cookieParams as an array like below
// session cookie params
/*$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);*/
$cookieParams = array();
This will allow you to log in.
3- Then go to admin panel check configuration, System->Configuration->web->session & cookie management in that the HTTP control set from Yes to No. Clear or set the proper path.
Hope this answer will help you.
add a comment |
I had fixed the above issue by following these steps.
1- Go to file app/code/core/Mage/Core/Model/session/abstract/varien.php
2- Go to line number 95 and comment out the cookieParams array and define $cookieParams as an array like below
// session cookie params
/*$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);*/
$cookieParams = array();
This will allow you to log in.
3- Then go to admin panel check configuration, System->Configuration->web->session & cookie management in that the HTTP control set from Yes to No. Clear or set the proper path.
Hope this answer will help you.
I had fixed the above issue by following these steps.
1- Go to file app/code/core/Mage/Core/Model/session/abstract/varien.php
2- Go to line number 95 and comment out the cookieParams array and define $cookieParams as an array like below
// session cookie params
/*$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);*/
$cookieParams = array();
This will allow you to log in.
3- Then go to admin panel check configuration, System->Configuration->web->session & cookie management in that the HTTP control set from Yes to No. Clear or set the proper path.
Hope this answer will help you.
answered Jul 15 at 21:02
Ahmed JehanzaibAhmed Jehanzaib
11 bronze badge
11 bronze badge
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f136416%2fadmin-panel-is-not-login-or-not-showing-invalid-credentials-error-in-magento-1-9%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You have to reset admin password from database.
– Suresh Chikani
Sep 15 '16 at 6:08
try with other browser.....
– Baby in Magento
Sep 15 '16 at 6:13
Thanks for quick reply. But nothing happen when reset password. And main thing is that its not showing any error like invalid credentials or invalid username and password. I think it may cause of sessions generate error. So please suggest me how I resolve this issues.
– Vikas Pandey
Sep 15 '16 at 6:45