abingabanger, since this topic is resolved, you should make a NEW one over in the multisite section 🙂
http://wordpress.org/support/forum/multisite
Most of us assume when a ticket’s resolved, no one needs anymore help 😉
I also have an issue, thats weak, not like something here. I uploaded images on August, it shows on folder /08. But now is september, images dont show anymore.
I checked folders manually, it created a new folder wp-content/wp-content/1/files/08 or something like this, depends on site id. I dont know why, all site setting is like as default. I havent changed upload setting.
So how to fix it? I’m using win 2008 server, iis 7.
Thanks
tkien, please make a new post for this with your specifics. At a guess, your files folder permissions aren’t correct, so it can’t make a new 09 folder. And yes, wp-content/wp-content/1/files/08 is what the folders are supposed to be.
Had this problem. Cause was not having
AllowOverride All
in the Directive for the Apache VirtualHost.
Once that was fixed, the .htaccess file started working 🙂
Here is the fix for me:
- Make sure that mod-rewrite is enabled in Apache when you first install Apache. You can enable it by
sudo a2enmod rewrite
- Then edit /etc/apache2/sites-available/default
Find the following
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
and change it to
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
-
and finally restart Apache
/etc/init.d/apache2 restart
And, you are done.
Thanks
Pretty nice, but what if I can’t edit /etc/apache2/sites-available/default ? I have the same problem with images. They upload fine, but I don’t see them in media library.