Magento 1.8.1.0 can't login to admin panel - htaccess/memcache suspectedSetEnv variable in .htaccess in magentoHow to restrict specfic ip address to access magento site in .htaccess file in magento?How to protect admin login with htaccess password in magento?.htaccess file in magento contains what?Magento htaccess frontend authenticationHow to write htaccess for magentocan't get rid of fancybox.gif “Add expires headers” via htaccess?I can't log into my admin panelMagento Secure Magmi from unauthorized access using htaccessmagento 1 set htaccess file to enable multiple stores on localhost

Reason why a kingside attack is not justified

Is this saw blade faulty?

How to detect sounds in IPA spelling

Extract substring according to regexp with sed or grep

Center page as a whole without centering each element individually

Recursively move files within sub directories

New Order #2: Turn My Way

What (if any) is the reason to buy in small local stores?

What properties make a magic weapon befit a Rogue more than a DEX-based Fighter?

"Marked down as someone wanting to sell shares." What does that mean?

Can you take a "free object interaction" while incapacitated?

Why is indicated airspeed rather than ground speed used during the takeoff roll?

Travelling in US for more than 90 days

Weird lines in Microsoft Word

How to preserve electronics (computers, ipads, phones) for hundreds of years?

Error in master's thesis, I do not know what to do

Air travel with refrigerated insulin

PTIJ: Which Dr. Seuss books should one obtain?

Has the laser at Magurele, Romania reached the tenth of the Sun power?

Strange behavior in TikZ draw command

Why would five hundred and five same as one?

Trouble reading roman numeral notation with flats

Why didn't Voldemort know what Grindelwald looked like?

Is divisi notation needed for brass or woodwind in an orchestra?



Magento 1.8.1.0 can't login to admin panel - htaccess/memcache suspected


SetEnv variable in .htaccess in magentoHow to restrict specfic ip address to access magento site in .htaccess file in magento?How to protect admin login with htaccess password in magento?.htaccess file in magento contains what?Magento htaccess frontend authenticationHow to write htaccess for magentocan't get rid of fancybox.gif “Add expires headers” via htaccess?I can't log into my admin panelMagento Secure Magmi from unauthorized access using htaccessmagento 1 set htaccess file to enable multiple stores on localhost













0















I have recently setup one of my client's live site to local. And was unable to run it on local instantly just after modifying core_config_data and local.xml, then I opened .htaccess and found



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

# php_value memory_limit 64M
php_value memory_limit 256M
php_value max_execution_time 18000

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>

############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary

# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
#BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
#BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
#SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

#RewriteBase /magento/

############################################
## uncomment next line to enable light API calls processing

# RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]

############################################
## rewrite API2 calls to api.php (by now it is REST only)

RewriteRule ^api/rest api.php?type=rest [QSA,L]

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## TRACE and TRACK HTTP methods disabled to prevent XSS attacks

RewriteCond %REQUEST_METHOD ^TRAC[EK]
RewriteRule .* - [L,R=405]

############################################
## redirect for mobile user agents

#RewriteCond %REQUEST_URI !^/mobiledirectoryhere/.*$
#RewriteCond %HTTP_USER_AGENT "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
#RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

#ExpiresDefault "access plus 1 year"
ExpiresActive On

# Default directive

ExpiresDefault "access plus 1 month"

# My favicon

ExpiresByType image/x-icon "access plus 1 year"

# Images

ExpiresByType image/gif "access plus 1 month"

ExpiresByType image/png "access plus 1 month"

ExpiresByType image/jpg "access plus 1 month"

ExpiresByType image/jpeg "access plus 1 month"

# CSS

ExpiresByType text/css "access 1 month"

# Javascript

ExpiresByType application/javascript "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

###########################################
## Deny access to release notes to prevent disclosure of the installed Magento version

<Files RELEASE_NOTES.txt>
order allow,deny
deny from all
</Files>

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>




And replaced it with another .htaccess from another magento project



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.html index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

php_value memory_limit 1024M

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>







############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

RewriteBase /

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

ExpiresDefault "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

## EXPIRES CACHING ##
<IfModule mod_expires.c>

ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"

</IfModule>
## EXPIRES CACHING ##


My local has <session_save><![CDATA[memcache]]></session_save>.
And I have set it up properly I think.
installed memcache on my system referring tutorial


my local.xml now has



 <session_save><![CDATA[memcache]]></session_save>
<cache>
<backend><![CDATA[memcached]]></backend>
<slow_backend><![CDATA[File]]></slow_backend>
<memcached>
<servers>
<server>
<host><![CDATA[127.0.0.1]]></host>
<port><![CDATA[11211]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
<compression><![CDATA[0]]></compression>
<hashed_directory_level><![CDATA[]]></hashed_directory_level>
<hashed_directory_umask><![CDATA[]]></hashed_directory_umask>
<file_name_prefix><![CDATA[]]></file_name_prefix>
</memcached>
<slow_backend_options>
<servers>
<server>
<host><![CDATA[/var/www/magento/var/session]]></host>
<port><![CDATA[0]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
</slow_backend_options>
</cache>
<session_save_path><![CDATA[tcp://127.0.0.1:11212?persistent=1&weight=2&timeout=10&retry_interval=10]]></session_save_path>
<session_cache_limiter><![CDATA[public,must-revalidate]]></session_cache_limiter>


But now I am unable to login to admin panel.

Removing .htaccess also didn't helped.

Also suggest the possible cause of problem if you think it's not .htaccess.

Btw I have gone through all possible solutions on magento.stackexchange & stackoverflow.

Please provide a solution so that I can login into admin panel.










share|improve this question
















bumped to the homepage by Community 17 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • is it showing any error during login in admin ?

    – Akhilesh Patel
    Oct 27 '15 at 5:19











  • @AkhileshPatel NO

    – Ashwani Shukla
    Oct 27 '15 at 5:27











  • did you try to clear cookie and check?

    – Akhilesh Patel
    Oct 27 '15 at 5:31











  • @AkhileshPatel as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow"

    – Ashwani Shukla
    Oct 27 '15 at 5:44











  • @AshwaniShukla see DirectoryIndex index.html index.php in you new htaccess code and try admin with index.php

    – Surya prakash Patel
    16 hours ago















0















I have recently setup one of my client's live site to local. And was unable to run it on local instantly just after modifying core_config_data and local.xml, then I opened .htaccess and found



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

# php_value memory_limit 64M
php_value memory_limit 256M
php_value max_execution_time 18000

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>

############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary

# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
#BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
#BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
#SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

#RewriteBase /magento/

############################################
## uncomment next line to enable light API calls processing

# RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]

############################################
## rewrite API2 calls to api.php (by now it is REST only)

RewriteRule ^api/rest api.php?type=rest [QSA,L]

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## TRACE and TRACK HTTP methods disabled to prevent XSS attacks

RewriteCond %REQUEST_METHOD ^TRAC[EK]
RewriteRule .* - [L,R=405]

############################################
## redirect for mobile user agents

#RewriteCond %REQUEST_URI !^/mobiledirectoryhere/.*$
#RewriteCond %HTTP_USER_AGENT "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
#RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

#ExpiresDefault "access plus 1 year"
ExpiresActive On

# Default directive

ExpiresDefault "access plus 1 month"

# My favicon

ExpiresByType image/x-icon "access plus 1 year"

# Images

ExpiresByType image/gif "access plus 1 month"

ExpiresByType image/png "access plus 1 month"

ExpiresByType image/jpg "access plus 1 month"

ExpiresByType image/jpeg "access plus 1 month"

# CSS

ExpiresByType text/css "access 1 month"

# Javascript

ExpiresByType application/javascript "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

###########################################
## Deny access to release notes to prevent disclosure of the installed Magento version

<Files RELEASE_NOTES.txt>
order allow,deny
deny from all
</Files>

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>




And replaced it with another .htaccess from another magento project



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.html index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

php_value memory_limit 1024M

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>







############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

RewriteBase /

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

ExpiresDefault "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

## EXPIRES CACHING ##
<IfModule mod_expires.c>

ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"

</IfModule>
## EXPIRES CACHING ##


My local has <session_save><![CDATA[memcache]]></session_save>.
And I have set it up properly I think.
installed memcache on my system referring tutorial


my local.xml now has



 <session_save><![CDATA[memcache]]></session_save>
<cache>
<backend><![CDATA[memcached]]></backend>
<slow_backend><![CDATA[File]]></slow_backend>
<memcached>
<servers>
<server>
<host><![CDATA[127.0.0.1]]></host>
<port><![CDATA[11211]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
<compression><![CDATA[0]]></compression>
<hashed_directory_level><![CDATA[]]></hashed_directory_level>
<hashed_directory_umask><![CDATA[]]></hashed_directory_umask>
<file_name_prefix><![CDATA[]]></file_name_prefix>
</memcached>
<slow_backend_options>
<servers>
<server>
<host><![CDATA[/var/www/magento/var/session]]></host>
<port><![CDATA[0]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
</slow_backend_options>
</cache>
<session_save_path><![CDATA[tcp://127.0.0.1:11212?persistent=1&weight=2&timeout=10&retry_interval=10]]></session_save_path>
<session_cache_limiter><![CDATA[public,must-revalidate]]></session_cache_limiter>


But now I am unable to login to admin panel.

Removing .htaccess also didn't helped.

Also suggest the possible cause of problem if you think it's not .htaccess.

Btw I have gone through all possible solutions on magento.stackexchange & stackoverflow.

Please provide a solution so that I can login into admin panel.










share|improve this question
















bumped to the homepage by Community 17 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • is it showing any error during login in admin ?

    – Akhilesh Patel
    Oct 27 '15 at 5:19











  • @AkhileshPatel NO

    – Ashwani Shukla
    Oct 27 '15 at 5:27











  • did you try to clear cookie and check?

    – Akhilesh Patel
    Oct 27 '15 at 5:31











  • @AkhileshPatel as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow"

    – Ashwani Shukla
    Oct 27 '15 at 5:44











  • @AshwaniShukla see DirectoryIndex index.html index.php in you new htaccess code and try admin with index.php

    – Surya prakash Patel
    16 hours ago













0












0








0








I have recently setup one of my client's live site to local. And was unable to run it on local instantly just after modifying core_config_data and local.xml, then I opened .htaccess and found



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

# php_value memory_limit 64M
php_value memory_limit 256M
php_value max_execution_time 18000

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>

############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary

# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
#BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
#BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
#SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

#RewriteBase /magento/

############################################
## uncomment next line to enable light API calls processing

# RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]

############################################
## rewrite API2 calls to api.php (by now it is REST only)

RewriteRule ^api/rest api.php?type=rest [QSA,L]

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## TRACE and TRACK HTTP methods disabled to prevent XSS attacks

RewriteCond %REQUEST_METHOD ^TRAC[EK]
RewriteRule .* - [L,R=405]

############################################
## redirect for mobile user agents

#RewriteCond %REQUEST_URI !^/mobiledirectoryhere/.*$
#RewriteCond %HTTP_USER_AGENT "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
#RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

#ExpiresDefault "access plus 1 year"
ExpiresActive On

# Default directive

ExpiresDefault "access plus 1 month"

# My favicon

ExpiresByType image/x-icon "access plus 1 year"

# Images

ExpiresByType image/gif "access plus 1 month"

ExpiresByType image/png "access plus 1 month"

ExpiresByType image/jpg "access plus 1 month"

ExpiresByType image/jpeg "access plus 1 month"

# CSS

ExpiresByType text/css "access 1 month"

# Javascript

ExpiresByType application/javascript "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

###########################################
## Deny access to release notes to prevent disclosure of the installed Magento version

<Files RELEASE_NOTES.txt>
order allow,deny
deny from all
</Files>

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>




And replaced it with another .htaccess from another magento project



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.html index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

php_value memory_limit 1024M

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>







############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

RewriteBase /

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

ExpiresDefault "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

## EXPIRES CACHING ##
<IfModule mod_expires.c>

ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"

</IfModule>
## EXPIRES CACHING ##


My local has <session_save><![CDATA[memcache]]></session_save>.
And I have set it up properly I think.
installed memcache on my system referring tutorial


my local.xml now has



 <session_save><![CDATA[memcache]]></session_save>
<cache>
<backend><![CDATA[memcached]]></backend>
<slow_backend><![CDATA[File]]></slow_backend>
<memcached>
<servers>
<server>
<host><![CDATA[127.0.0.1]]></host>
<port><![CDATA[11211]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
<compression><![CDATA[0]]></compression>
<hashed_directory_level><![CDATA[]]></hashed_directory_level>
<hashed_directory_umask><![CDATA[]]></hashed_directory_umask>
<file_name_prefix><![CDATA[]]></file_name_prefix>
</memcached>
<slow_backend_options>
<servers>
<server>
<host><![CDATA[/var/www/magento/var/session]]></host>
<port><![CDATA[0]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
</slow_backend_options>
</cache>
<session_save_path><![CDATA[tcp://127.0.0.1:11212?persistent=1&weight=2&timeout=10&retry_interval=10]]></session_save_path>
<session_cache_limiter><![CDATA[public,must-revalidate]]></session_cache_limiter>


But now I am unable to login to admin panel.

Removing .htaccess also didn't helped.

Also suggest the possible cause of problem if you think it's not .htaccess.

Btw I have gone through all possible solutions on magento.stackexchange & stackoverflow.

Please provide a solution so that I can login into admin panel.










share|improve this question
















I have recently setup one of my client's live site to local. And was unable to run it on local instantly just after modifying core_config_data and local.xml, then I opened .htaccess and found



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

# php_value memory_limit 64M
php_value memory_limit 256M
php_value max_execution_time 18000

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>

############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary

# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
#BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
#BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
#SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

#RewriteBase /magento/

############################################
## uncomment next line to enable light API calls processing

# RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]

############################################
## rewrite API2 calls to api.php (by now it is REST only)

RewriteRule ^api/rest api.php?type=rest [QSA,L]

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## TRACE and TRACK HTTP methods disabled to prevent XSS attacks

RewriteCond %REQUEST_METHOD ^TRAC[EK]
RewriteRule .* - [L,R=405]

############################################
## redirect for mobile user agents

#RewriteCond %REQUEST_URI !^/mobiledirectoryhere/.*$
#RewriteCond %HTTP_USER_AGENT "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
#RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

#ExpiresDefault "access plus 1 year"
ExpiresActive On

# Default directive

ExpiresDefault "access plus 1 month"

# My favicon

ExpiresByType image/x-icon "access plus 1 year"

# Images

ExpiresByType image/gif "access plus 1 month"

ExpiresByType image/png "access plus 1 month"

ExpiresByType image/jpg "access plus 1 month"

ExpiresByType image/jpeg "access plus 1 month"

# CSS

ExpiresByType text/css "access 1 month"

# Javascript

ExpiresByType application/javascript "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

###########################################
## Deny access to release notes to prevent disclosure of the installed Magento version

<Files RELEASE_NOTES.txt>
order allow,deny
deny from all
</Files>

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>




And replaced it with another .htaccess from another magento project



############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php

############################################
## GoDaddy specific options

# Options -MultiViews

## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php

############################################
## default index file

DirectoryIndex index.html index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

php_value memory_limit 1024M

############################################
## disable magic quotes for php request vars

php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

php_flag session.auto_start off

############################################
## enable resulting html compression

php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>







############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## you can put here your magento root folder
## path relative to web root

RewriteBase /

############################################
## workaround for HTTP authorization
## in CGI environment

RewriteRule .* - [E=HTTP_AUTHORIZATION:%HTTP:Authorization]

############################################
## always send 404 on missing files in these folders

RewriteCond %REQUEST_URI !^/(media|skin|js)/

############################################
## never rewrite for existing files, directories and links

RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-l

############################################
## rewrite everything else to index.php

RewriteRule .* index.php [L]

</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

AddDefaultCharset Off
#AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires

ExpiresDefault "access plus 1 year"

</IfModule>

############################################
## By default allow all access

Order allow,deny
Allow from all

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

#FileETag none

## EXPIRES CACHING ##
<IfModule mod_expires.c>

ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"

</IfModule>
## EXPIRES CACHING ##


My local has <session_save><![CDATA[memcache]]></session_save>.
And I have set it up properly I think.
installed memcache on my system referring tutorial


my local.xml now has



 <session_save><![CDATA[memcache]]></session_save>
<cache>
<backend><![CDATA[memcached]]></backend>
<slow_backend><![CDATA[File]]></slow_backend>
<memcached>
<servers>
<server>
<host><![CDATA[127.0.0.1]]></host>
<port><![CDATA[11211]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
<compression><![CDATA[0]]></compression>
<hashed_directory_level><![CDATA[]]></hashed_directory_level>
<hashed_directory_umask><![CDATA[]]></hashed_directory_umask>
<file_name_prefix><![CDATA[]]></file_name_prefix>
</memcached>
<slow_backend_options>
<servers>
<server>
<host><![CDATA[/var/www/magento/var/session]]></host>
<port><![CDATA[0]]></port>
<persistent><![CDATA[1]]></persistent>
<weight><![CDATA[2]]></weight>
<timeout><![CDATA[5]]></timeout>
</server>
</servers>
</slow_backend_options>
</cache>
<session_save_path><![CDATA[tcp://127.0.0.1:11212?persistent=1&weight=2&timeout=10&retry_interval=10]]></session_save_path>
<session_cache_limiter><![CDATA[public,must-revalidate]]></session_cache_limiter>


But now I am unable to login to admin panel.

Removing .htaccess also didn't helped.

Also suggest the possible cause of problem if you think it's not .htaccess.

Btw I have gone through all possible solutions on magento.stackexchange & stackoverflow.

Please provide a solution so that I can login into admin panel.







magento-1.8 htaccess .htaccess memcache






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 28 '15 at 15:43









7ochem

5,80393768




5,80393768










asked Oct 27 '15 at 5:15









Ashwani ShuklaAshwani Shukla

184215




184215





bumped to the homepage by Community 17 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 17 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • is it showing any error during login in admin ?

    – Akhilesh Patel
    Oct 27 '15 at 5:19











  • @AkhileshPatel NO

    – Ashwani Shukla
    Oct 27 '15 at 5:27











  • did you try to clear cookie and check?

    – Akhilesh Patel
    Oct 27 '15 at 5:31











  • @AkhileshPatel as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow"

    – Ashwani Shukla
    Oct 27 '15 at 5:44











  • @AshwaniShukla see DirectoryIndex index.html index.php in you new htaccess code and try admin with index.php

    – Surya prakash Patel
    16 hours ago

















  • is it showing any error during login in admin ?

    – Akhilesh Patel
    Oct 27 '15 at 5:19











  • @AkhileshPatel NO

    – Ashwani Shukla
    Oct 27 '15 at 5:27











  • did you try to clear cookie and check?

    – Akhilesh Patel
    Oct 27 '15 at 5:31











  • @AkhileshPatel as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow"

    – Ashwani Shukla
    Oct 27 '15 at 5:44











  • @AshwaniShukla see DirectoryIndex index.html index.php in you new htaccess code and try admin with index.php

    – Surya prakash Patel
    16 hours ago
















is it showing any error during login in admin ?

– Akhilesh Patel
Oct 27 '15 at 5:19





is it showing any error during login in admin ?

– Akhilesh Patel
Oct 27 '15 at 5:19













@AkhileshPatel NO

– Ashwani Shukla
Oct 27 '15 at 5:27





@AkhileshPatel NO

– Ashwani Shukla
Oct 27 '15 at 5:27













did you try to clear cookie and check?

– Akhilesh Patel
Oct 27 '15 at 5:31





did you try to clear cookie and check?

– Akhilesh Patel
Oct 27 '15 at 5:31













@AkhileshPatel as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow"

– Ashwani Shukla
Oct 27 '15 at 5:44





@AkhileshPatel as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow"

– Ashwani Shukla
Oct 27 '15 at 5:44













@AshwaniShukla see DirectoryIndex index.html index.php in you new htaccess code and try admin with index.php

– Surya prakash Patel
16 hours ago





@AshwaniShukla see DirectoryIndex index.html index.php in you new htaccess code and try admin with index.php

– Surya prakash Patel
16 hours ago










2 Answers
2






active

oldest

votes


















0














I think u have wrong Cookie domain in settings.
Under System > Configuration > Web the settings should be as follows



enter image description here



Also set "Session Lifetime (seconds)" under System > Configuration > Admin to a high value like 7200 so you don't need to login repeatedly






share|improve this answer























  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". this is one of them

    – Ashwani Shukla
    Oct 27 '15 at 9:27











  • have u tried <session_save>files</session_save>?

    – Anton Belov
    Oct 27 '15 at 9:41











  • yes, I have tried it with no success. But even if that would have worked some problems might arise at later point due to memcache/htaccess.

    – Ashwani Shukla
    Oct 27 '15 at 10:44












  • Ok, then you have just one way, setup xdebug and trace login action to find the problem.

    – Anton Belov
    Oct 27 '15 at 13:08











  • I think you didn't read the question properly. Pls read the question again to understand better.

    – Ashwani Shukla
    Oct 28 '15 at 4:30


















0














Change web/unsecure/base_url and web/secure/base_url from core_config_data to http://127.0.0.1/your-magento-dir/ instead of http://localhost/your-magento-dir/






share|improve this answer























  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". And this is already mentioned.

    – Ashwani Shukla
    Oct 27 '15 at 9:27











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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f87746%2fmagento-1-8-1-0-cant-login-to-admin-panel-htaccess-memcache-suspected%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














I think u have wrong Cookie domain in settings.
Under System > Configuration > Web the settings should be as follows



enter image description here



Also set "Session Lifetime (seconds)" under System > Configuration > Admin to a high value like 7200 so you don't need to login repeatedly






share|improve this answer























  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". this is one of them

    – Ashwani Shukla
    Oct 27 '15 at 9:27











  • have u tried <session_save>files</session_save>?

    – Anton Belov
    Oct 27 '15 at 9:41











  • yes, I have tried it with no success. But even if that would have worked some problems might arise at later point due to memcache/htaccess.

    – Ashwani Shukla
    Oct 27 '15 at 10:44












  • Ok, then you have just one way, setup xdebug and trace login action to find the problem.

    – Anton Belov
    Oct 27 '15 at 13:08











  • I think you didn't read the question properly. Pls read the question again to understand better.

    – Ashwani Shukla
    Oct 28 '15 at 4:30















0














I think u have wrong Cookie domain in settings.
Under System > Configuration > Web the settings should be as follows



enter image description here



Also set "Session Lifetime (seconds)" under System > Configuration > Admin to a high value like 7200 so you don't need to login repeatedly






share|improve this answer























  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". this is one of them

    – Ashwani Shukla
    Oct 27 '15 at 9:27











  • have u tried <session_save>files</session_save>?

    – Anton Belov
    Oct 27 '15 at 9:41











  • yes, I have tried it with no success. But even if that would have worked some problems might arise at later point due to memcache/htaccess.

    – Ashwani Shukla
    Oct 27 '15 at 10:44












  • Ok, then you have just one way, setup xdebug and trace login action to find the problem.

    – Anton Belov
    Oct 27 '15 at 13:08











  • I think you didn't read the question properly. Pls read the question again to understand better.

    – Ashwani Shukla
    Oct 28 '15 at 4:30













0












0








0







I think u have wrong Cookie domain in settings.
Under System > Configuration > Web the settings should be as follows



enter image description here



Also set "Session Lifetime (seconds)" under System > Configuration > Admin to a high value like 7200 so you don't need to login repeatedly






share|improve this answer













I think u have wrong Cookie domain in settings.
Under System > Configuration > Web the settings should be as follows



enter image description here



Also set "Session Lifetime (seconds)" under System > Configuration > Admin to a high value like 7200 so you don't need to login repeatedly







share|improve this answer












share|improve this answer



share|improve this answer










answered Oct 27 '15 at 7:58









Anton BelovAnton Belov

292




292












  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". this is one of them

    – Ashwani Shukla
    Oct 27 '15 at 9:27











  • have u tried <session_save>files</session_save>?

    – Anton Belov
    Oct 27 '15 at 9:41











  • yes, I have tried it with no success. But even if that would have worked some problems might arise at later point due to memcache/htaccess.

    – Ashwani Shukla
    Oct 27 '15 at 10:44












  • Ok, then you have just one way, setup xdebug and trace login action to find the problem.

    – Anton Belov
    Oct 27 '15 at 13:08











  • I think you didn't read the question properly. Pls read the question again to understand better.

    – Ashwani Shukla
    Oct 28 '15 at 4:30

















  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". this is one of them

    – Ashwani Shukla
    Oct 27 '15 at 9:27











  • have u tried <session_save>files</session_save>?

    – Anton Belov
    Oct 27 '15 at 9:41











  • yes, I have tried it with no success. But even if that would have worked some problems might arise at later point due to memcache/htaccess.

    – Ashwani Shukla
    Oct 27 '15 at 10:44












  • Ok, then you have just one way, setup xdebug and trace login action to find the problem.

    – Anton Belov
    Oct 27 '15 at 13:08











  • I think you didn't read the question properly. Pls read the question again to understand better.

    – Ashwani Shukla
    Oct 28 '15 at 4:30
















as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". this is one of them

– Ashwani Shukla
Oct 27 '15 at 9:27





as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". this is one of them

– Ashwani Shukla
Oct 27 '15 at 9:27













have u tried <session_save>files</session_save>?

– Anton Belov
Oct 27 '15 at 9:41





have u tried <session_save>files</session_save>?

– Anton Belov
Oct 27 '15 at 9:41













yes, I have tried it with no success. But even if that would have worked some problems might arise at later point due to memcache/htaccess.

– Ashwani Shukla
Oct 27 '15 at 10:44






yes, I have tried it with no success. But even if that would have worked some problems might arise at later point due to memcache/htaccess.

– Ashwani Shukla
Oct 27 '15 at 10:44














Ok, then you have just one way, setup xdebug and trace login action to find the problem.

– Anton Belov
Oct 27 '15 at 13:08





Ok, then you have just one way, setup xdebug and trace login action to find the problem.

– Anton Belov
Oct 27 '15 at 13:08













I think you didn't read the question properly. Pls read the question again to understand better.

– Ashwani Shukla
Oct 28 '15 at 4:30





I think you didn't read the question properly. Pls read the question again to understand better.

– Ashwani Shukla
Oct 28 '15 at 4:30













0














Change web/unsecure/base_url and web/secure/base_url from core_config_data to http://127.0.0.1/your-magento-dir/ instead of http://localhost/your-magento-dir/






share|improve this answer























  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". And this is already mentioned.

    – Ashwani Shukla
    Oct 27 '15 at 9:27
















0














Change web/unsecure/base_url and web/secure/base_url from core_config_data to http://127.0.0.1/your-magento-dir/ instead of http://localhost/your-magento-dir/






share|improve this answer























  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". And this is already mentioned.

    – Ashwani Shukla
    Oct 27 '15 at 9:27














0












0








0







Change web/unsecure/base_url and web/secure/base_url from core_config_data to http://127.0.0.1/your-magento-dir/ instead of http://localhost/your-magento-dir/






share|improve this answer













Change web/unsecure/base_url and web/secure/base_url from core_config_data to http://127.0.0.1/your-magento-dir/ instead of http://localhost/your-magento-dir/







share|improve this answer












share|improve this answer



share|improve this answer










answered Oct 27 '15 at 8:05









Pradeep SankuPradeep Sanku

7,90613157




7,90613157












  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". And this is already mentioned.

    – Ashwani Shukla
    Oct 27 '15 at 9:27


















  • as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". And this is already mentioned.

    – Ashwani Shukla
    Oct 27 '15 at 9:27

















as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". And this is already mentioned.

– Ashwani Shukla
Oct 27 '15 at 9:27






as already mentioned in the question : "I have gone through all possible solutions on magento.stackexchange & stackoverflow". And this is already mentioned.

– Ashwani Shukla
Oct 27 '15 at 9:27


















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f87746%2fmagento-1-8-1-0-cant-login-to-admin-panel-htaccess-memcache-suspected%23new-answer', 'question_page');

);

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







Popular posts from this blog

Sum ergo cogito? 1 nng

419 nièngy_Soadمي 19bal1.5o_g

Queiggey Chernihivv 9NnOo i Zw X QqKk LpB