hey my site runs on http but i dont know how from past few days when ever i try to open up my admin panel it auto redirects to https im not able to view my admin panel
but my site is run fine with http
hey my site runs on http but i dont know how from past few days when ever i try to open up my admin panel it auto redirects to https im not able to view my admin panel
but my site is run fine with http
Check your urls in settings -> General. What do they say?
hmm i cnt access my admin panel but i have checked it on database its http:// only :O
Is there anything in your .htaccess file?
yaa dis
php_value auto_append_file none
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPressTry using:
php_value auto_append_file none
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPresshmm no change :(
Have you tried:
- deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
- switching to the Twenty Eleven theme to rule out any theme-specific problems.
- resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
thanks dude it started working
i deleted htaccess file :p
Wow! I wonder if the server was caching the old .htaccess file?
hahaha i got it now its not because of htaccess its because of plugin :p
when i restored my plugins the same started :p
.htaccess is innocent :p :p
You must log in to post.