ricka99
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Images are not uploading into correct fileThe apparent image location looks like this:
https://[path]/files/2010/09/grand-prix-large-300×185.jpgBut the actual storage location is this:
https://[path]/wp-content/blogs.dir/2/files/2010/09/grand-prix-large-300×185.jpgAnd everything is now connecting up! Thanks so much.
Forum: Networking WordPress
In reply to: Images are not uploading into correct filesubdomains
Forum: Networking WordPress
In reply to: Images are not uploading into correct fileOK, I made the changes so it looks like this:
#uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]But, images are still not getting the right address.
What about this section of .htaccess?
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]Forum: Networking WordPress
In reply to: Images are not uploading into correct fileOops! I cross-stitched the threads. Disregard my second paragraph. Sorry.
Forum: Networking WordPress
In reply to: Images are not uploading into correct fileThis was an MU install from about a year ago. I recently got some renewed interest in it and upgraded it to 3.0.1
I am not using a domain mapping plugin. Not sure how to answer the question about separate MU installs. I have just one with two sites.
Forum: Networking WordPress
In reply to: Images are not uploading into correct fileI think this is the relevant part:
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]Forum: Networking WordPress
In reply to: Images are not uploading into correct fileI am aware of the correction to the .htaccess from ipstenu above. Does it apply in my case as well or do I need to edit it further? Is so, what do I use?
Forum: Networking WordPress
In reply to: Images are not uploading into correct fileI think I am experiencing a similar problem. When I add an image to the native Gallery, it places this code in the post:
<img src=”https://mywebsite.org/files/2010/09/grand-prix-large-300×185.jpg/grand-prix-large-300×185.jpg” alt=”” width=”300″ height=”185″ class=”aligncenter size-medium wp-image-383″ />
BUT, the image is not located there. It is located at this address:
<img src=”https://mywebsite.org/wp-content/blogs.dir/2/files/2010/09/grand-prix-large-300×185.jpg” alt=”” width=”300″ height=”185″ class=”aligncenter size-medium wp-image-383″ />
Perhaps to make my question clearer, let me rephrase it.
Is there a 255 gallery limit or is an unlimited number of galleries permitted?
Thanks.
I have tested your fix to Thesis Openhook and it works greats. Thanks so much.
I tried upgrading again and did so successfully after discovering that it was necessary to go to the Gallery and upgrade the database.
I had no idea that the database needed upgrading when upgrading the plugin. Most plugins don’t required it and there was no message that I saw advising me to do this. I will try to remember that this may be required the next time there is an version upgrade.
I restored NexGen to Version 1.5.5 and dropped the database tables and uploaded to a backup before the 1.6 upgrade. It’s now working again. Whew!!!
Forum: Plugins
In reply to: [Plugin: WordPress.com Stats] 400 bad request error nginxA day later it’s working OK.
Forum: Plugins
In reply to: [Plugin: WordPress.com Stats] 400 bad request error nginx[Moderated]
I just got this error for the first time in a brand new WordPress installation. It has never happened before in the previous 50-60 times that I installed WordPress and used this plugin.It has been a very useful and trouble free plugin…up till now.
No response from the authors. Time to abandon it?
Forum: Plugins
In reply to: [Plugin: Widget Logic] Negating a parent and its childrenThe correct answer appears to be:
global $post; return !(is_page(555) || ($post->post_parent==”555″));