Support » Fixing WordPress » Media Libary 404 error

  • Hi All,

    When I try to add an image to a post from the media library I get a 404 error page.

    Could this be something to do with .htaccess or is it likely to be something else?

    Any help would be appreciated

Viewing 4 replies - 1 through 4 (of 4 total)
  • When exactly do you get the 404?

    Hi,

    Check with these options:

    – Add this code in htaccess:

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

    – Assign 755 recursive permissions to wp-content folder
    – upgrade your wordpress to the latest version

    Thanks,

    Shane G.

    Thread Starter toggy

    (@toggy)

    I get the 404 when I try to insert the image in to post

    Try re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Media Libary 404 error’ is closed to new replies.