another "images broken in multisite" with a wp_debug twist
-
I’ve read through half a dozen variations on this issue. The twist is that unless I enable wp_debug, my theme breaks by not being able to find .css and .js files in addition to images. (see https://samadhi.gabeherbert.com/teacher/ (wp_debug disabled at time of writing) ) None of my daughter sites are showing images, but the mama is.
here’s my .htaccess:
# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L] # END WordPress
this image
https://samadhi.gabeherbert.com/files/2012/11/rainbowcake-125×125.jpgdoesn’t show up even if I change it to
https://samadhi.gabeherbert.com/wp-includes/ms-files.php?file=2012/11/rainbowcake-125×125.jpgI’m on a dreamhost shared account, so I probably can’t look at httpd.conf. They just migrated a datacenter and a couple of quirks have popped up. This may be one!
thanks in advance.
- The topic ‘another "images broken in multisite" with a wp_debug twist’ is closed to new replies.