• My main domain works fine, but a couple sub-sites seem to have lost their connection to the theme settings and the files directory. (I checked the server, and the files are still there. They just don’t show up for the site.)

    (I think it was the 4.5 upgrade, but I couldn’t swear to it because I hadn’t checked those sites for a while.)

    At any rate, now only the text shows up on those sites, with basic theme settings (I use Weaver II Pro), but no customized settings

    And NO graphics show up.

    Help, please!

    Main site is https://ssnet.org/

    Broken sub-sites:
    https://sabbathissues.org/
    https://bewellandprosper.net/

Viewing 3 replies - 16 through 18 (of 18 total)
  • inge12 –
    This link works – https://bewellandprosper.net/files/2015/08/peach-headerJPG.jpg

    The problem is that the image is corrupted. To me that implies a plugin is interferring with it. My guess is that one of your plugins is not compatible with WP 4.5.x

    Thread Starter inge12

    (@inge12)

    If dekooker starts his own thread, I want to know what it is, because his solution may be the same as mine.

    @jkhongusc, is it safe to post the .htaccess file in public, or is there somewhere I can send it where you can see it?

    Why do you say that https://bewellandprosper.net/files/2015/08/peach-headerJPG.jpg works, when the image doesn’t show up – at least not for me?

    This one works for me:
    https://ssnet.org/public_html/wp-content/blogs.dir/14/files/2015/08/peach-headerJPG.jpg

    The only plugins I am using on the site are network active and are working perfectly on the main site, https://ssnet.org/

    I just deactivated several that are not absolutely necessary, but I hesitate to “break” a very busy main site.

    I’ll be happy to send you the .htaccess file of the main site if I can be sure it’s safe. (This board is so public!)

    Thread Starter inge12

    (@inge12)

    Okay, I just looked at my current .htaccess file, and it’s pretty bare-bones with no state secrets, so here it is:

    RedirectMatch 301 ^/blog/([0-9]{4})/([0-9]{2})/(.*)$ https://ssnet.org/blog/$3
    RedirectMatch 301 ^/([0-9]{4})/([0-9]{2})/(.*)$ https://sabbathissues.org/$3
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^ssnet\.org$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.ssnet\.org$
    
    RewriteOptions inherit
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    
    </IfModule>
    # END WordPress
    
    # Google Analytics Integration - Added by cPanel.
    <IfModule mod_substitute.c>
    AddOutputFilterByType SUBSTITUTE text/html
    Substitute "s|(<script src='/google_analytics_auto.js'></script>)?</head>|<script src='/google_analytics_auto.js'></script></head>|i"
    </IfModule>
    # END Google Analytics Integration
    
    RewriteCond %{HTTP_HOST} ^bewellandprosper\.net$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.bewellandprosper\.net$
    RewriteRule ^/?$ "http\:\/\/ssnet\.org\/bewellandprosper" [R=301,L]
    
    # Wordfence WAF
    <IfModule mod_suphp.c>
    	suPHP_ConfigPath '/home/ssnet/public_html'
    </IfModule>
    <Files ".user.ini">
    <IfModule mod_authz_core.c>
    	Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
    	Order deny,allow
    	Deny from all
    </IfModule>
    </Files>
    
    # END Wordfence WAF

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘4.5 seems to have broken sub-sites’ is closed to new replies.