No images in multisite
-
This is apparently a fairly standard problem to have with a new multisite install, but I have read all the past posts and I can’t seem to figure it out.
The parent install (itinerantangler.com/blog) works just fine.
The child install (itinerantangler.com/blog/podcasts) is not showing images either in the media library or on the main site page. The media library is complete and copied over all the content from my /uploads/ directory.
When I did the multisite, as instructed I created a /wp-content/blogs.dir/ directory, which has been populated with a /2/ subdirectory. You can access content directly from that directory: (https://www.itinerantangler.com/blog/wp-content/blogs.dir/2/files/2012/12/1.jpg).
I’ve asked my host and my httpd.conf file is apparently set to AllowOverride ‘All’. I can’t verify that myself.
Here’s my .htaccess file. I did the install in sub-directories, not sub-domains:
# BEGIN WordPress RewriteEngine On RewriteBase /blog/ 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] # END WordPress
I would greatly appreciate any help.
Thanks,
Zach
- The topic ‘No images in multisite’ is closed to new replies.