• Resolved vividwebdesigns

    (@vividwebdesigns)


    Any template I’ve installed the images are referred to as wordpress/wp-content/uploads/2013/05/shutterstock_25031392.jpg

    This is the web site https://hinterlandboxingclub.com/wordpress/

    when I click on the link in the source code I get this message: Forbidden
    You don’t have permission to access /wordpress/wp-content/uploads/2013/05/shutterstock_25031392.jpg on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    The funny thing is that when I put the same code manually in the web browser it works.

    Thanks
    Allan

Viewing 3 replies - 1 through 3 (of 3 total)
  • Might be because of permissions. Is this a fresh WordPress installation? If that’s the case then everything should work just fine, if not you can try changing permissions on your uploads folder.

    Thread Starter vividwebdesigns

    (@vividwebdesigns)

    Thanks ueharataichou yes it’s a fresh install. I changed the permissions on the upload folder to 644 but that did not work.

    Thread Starter vividwebdesigns

    (@vividwebdesigns)

    All of the problem was caused by no .htaccess file. Put this in the Root where the wp-config.php is and you should be right to go it works fine for me maybe this might help someone else.

    # 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
    =======

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No images’ is closed to new replies.