Login failure in chrome even though you have given correct username and password?
Just follow to code to access admin page in chrome browser.
Look for the line in appcodelocalMageCoreModelSessionAbstractVarien.php
file.
<br />if (isset($cookieParams['domain'])) {<br /> $cookieParams['domain'] = $cookie->getDomain();<br />}<br />
If you have found just replace that line with the follwing code
<br />if (isset($cookieParams['domain']) && !in_array("127.0.0.1", self::getValidatorData())) {<br /> $cookieParams['domain'] = $cookie->getDomain();<br />}<br />
In this way we can fix magento admin login failing in chrome browser
Source: How to Fix Magento’s Admin Login Failing no error message on Localhost « My Silly Point of View.
hai Bro!.. It's workng Awesome!