kja79a
Forum Replies Created
-
@mike,
No luck for me either, still the same error message with the same problem of missing slashes in the file path.Thanks Mike.
I’ll give it a try and let you know.I also realised in my previous reply that there were TWO missing slashes “/” in the invalid path, which should have read “E:/inetpub/vs239227/wp-content/uploads/2013/04/….”
Or perhaps all the forward slashes should be backslashes for the Windows path??
I’m having the same issue on a NT machine as well and thought this might help narrow down the issue…
In my case the error message is referring to the path “E:inetpubvs239227/wp-content/uploads/2013/04/….”
There is a / missing between “E:inetpub” and “vs239227”, so the correct path to my uploads should be “E:inetpub/vs239227/wp-content/uploads/2013/04/….”
Could the invalid path value be causing the plugin/API to give these errors?
The hack seems to have worked, thanks. My guess is though that it will get overridden in a future WP update.
However further investigation has found that this is a known bug in the WP core affecting all OS’s with the same scenario. (http://core.trac.ww.wp.xz.cn/ticket/23221)
So I guess we just wait for an update that resolves this issue.
Thanks @derrick_w
Is this problem/bug common to IIS, that we may need to submit a bug report?Forum: Networking WordPress
In reply to: MultiSite with Own Domain Name@ipstenu – I looked into that one too, but it only claims compatibility up to WP 3.3.*
The WPMU one has been updated recently and is working great with 3.4.* & 3.5.*
Root .htaccess contains the following:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) E:/inetpub/vs239247/ssl/$1 [L]
RewriteRule ^(.*\.php)$ E:/inetpub/vs239247/ssl/$1 [L]
RewriteRule . index.php [L]This is the exact output that WordPress provided upon enabling the network.
Forum: Networking WordPress
In reply to: MultiSite with Own Domain NameThe Multi-Domain plugin from WPMU DEV has this functionality.
http://premium.wpmudev.org/project/multi-domains/
I use it on several work & personal blogs. 🙂