nborders
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Image upload issueFor the record the solution to my problem was that Mod_rewrite was not initiated in my Apache site config file correctly.
I needed to change
AllowOverride None
To
AllowOverride All
As soon as I did that and reloaded Apache, bang! Images now work.
~n
Forum: Networking WordPress
In reply to: Image upload issueOK, I need to start over. I believe I have done everything above and with so much info, I fear I’m missing something. So let me give you what I have.
I’m running on a LAMP environment with the latest version of 3.0
I have set up the network (multi-site) and I have set up a second-level domain using these instructions successful. (https://www.interconnectit.com/840/wordpress-3-0-multisite-with-multiple-domains-setup/)
I’m currently working with a new site off of the base installation. The site_ID is “3“.
I have created a directory wp-content/blogs.dir
Upload path is wp-content/blogs.dir/3/files
File upload URL is https://www2.mysite.com/files
Here is my .htaccess file content
RewriteRule ^index\.php$ - [L] RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^(.*/)?files/$ index.php [L] RewriteCond %{REQUEST_URI} !.*wp-content/plugins.* RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]
I have uploaded a logo image, and this URL does not work:
https://www2.mysite.com/files/2010/06/logo-402w.jpgHowever, this one does work:
https://www2.mysite.com/wp-content/blogs.dir/3/files/2010/06/logo-402w.jpgHELP! ??
~n