mick e
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoYay – I have stumped the experts!
…yeah – not really yay.
🙁
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoThe test site does the same thing.
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoI’ll give it a go.
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoHowever I do remember having upload problems with that one, and needing to change some permissions or something. It’s become something of a blur.
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoBasically – the main site had been going for a while, but was a standard wordpress 3 install.
Then I switched to multisite in order to add this one.
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoregarding the define:
I stripped the “www” from the current site line. It made no difference.
Also there are/were no active plugins on the site.
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoHere is what the define in my config looks like:
*/ define ('WPLANG', ''); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'www.ctihospitality.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 ); /* That's all, stop editing! Happy blogging. */Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoBoth of those paths are set as advised. Still no worky though.
http://bella.ctihospitality.com/files/woodwork.jpg
http://bella.ctihospitality.com/wp-content/blogs.dir/2/files/woodwork.jpg
ugh.
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoSo I deleted the files folder from the blogs.dir/2/
Then I changed the upload path in superadmin to:
wp-content/blogs.dir/2/When I uploaded and image, wordpress created a new files/ directory and uploaded the image. Unfortunately, nothing has changed.
Here is the location of the image I uploaded:
blogs.dir/2/files/SHSFairfax008.jpgForum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoI miswrote that. It should have read “blogs.dir/2/files”.
Anyhoo – I had all sorts of other issues with the uploader and some of those issues got fixed through searching the archives here.
One of the things I ended up doing was to manually create the files directory and indicate the image upload path in my superadmin as: wp-content/blogs.dir/2/files/
The image Fileupload URL shown in that panel is: http://bella.ctihospitality.com/files
I’m going to delete the files and folders inside the blogs.dir directory and see what happens.
Forum: Networking WordPress
In reply to: Ye Olde Image Uploader problemoIt is subdomain.
Here is my current 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