Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter chaoticme

    (@chaoticme)

    I tried to change my avatar but still not changing my profile pic.. So I suspect .htaccess file?

    DirectoryIndex index.php
    RewriteEngine On
    RewriteBase /

    # uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    # add a trailing slash to /wp-admin
    RewriteCond %{REQUEST_URI} ^.*/wp-admin$
    RewriteRule ^(.+)$ $1/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . – [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

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

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    you need to fix this rewrite rule. The instructions were on the screen after upgrading, and are also in the post ipstenu linked to above.

    Thread Starter chaoticme

    (@chaoticme)

    okay.. thanks..

    I’ll try that..

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘HELP!… images not loading…’ is closed to new replies.