• Greetings,

    Yesterday, I moved a 2.51 wordpress installation to a new dedicated server. The domain and URL structure is the same. Everything works ok, except two things:

    1. I now get an HTTP error when attempting to upload images
    2. I get a 404 page when saving posts (although they do save).

    I have looked up numerous solutions to both of these problems, tried them all, and none work.

    To start with the HTTP problem, I modified my .htaccess file to look like this, but it hasn’t stopped the problem. I also chmodded every folder to mode 777 to prevent permissions issues. Here’s my .htaccess (it’s exactly as suggested in numerous threads here, but to no avail):

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

  • The topic ‘HTTP Error After Moving 2.51 to new server’ is closed to new replies.