Reputation: 5433
I've created a site using wordpress and i moved that from localhost to new server.
The steps i've followed is just got backup of old db from localhost and uploaded them to the new server. Changed the WordPress address (URL) & Site address (URL) manually from phpmyadmin.
Moved all the files from localhost to the server
Changed the wp-config with the new server's db details.
Now i'm able to visit the admin panel of wordpress but not the site.
Its showing the following error,
The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to
accept cookies.
I think that this must some redirection problem..
My new .htaccess file under new server is
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /veejata/wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /veejata/wordpress/index.php [L]
</IfModule>
Upvotes: 1
Views: 6622
Reputation: 462
I had the same problem and found a solution - caused by bad value set in REQUEST_URI - you can find it posted here
Upvotes: 0
Reputation: 5433
Hi i found the solution myself,
It was issue in the windows server with wordpress 3.1 so i installed the Permalink fix pack @ wordpress.org/extend/plugins/… .
Now its working fine..
I've no issues linux server.. I've to dive into the thing to know that is happening in windows server...
Upvotes: 0
Reputation: 1483
Try to reset you permalink structure and then set your custom permalinks again ( via wp-admin ). It always work for me.
Upvotes: 0