1 robin_ Jun 10, 2006 16:58
3 robin_ Jun 12, 2006 14:57
The permissions are set to 755. I tried 777 (even though it seems like 755 should work) and still get the same error.
Any ideas?
Thanks!
4 village_idiot Jun 12, 2006 16:30
I concur with what yabba says:
http://www.sofadog.net/recipes/xmlrpc.php
thats either not chmod to 755 OR you have something else (perhaps something in your .htaccess) thats restricting access.
5 azrin Nov 11, 2006 17:19
if you set your blog to sofadog.net (which is /recipes) ...then the other way about to point will be
/recipes/xmlsrv/xmlrpc.php
but you may have to allow the FOLDER to have 0777 so it can be EXECUTED. I would personally use the subdomain recipes.sofadog.net to point to /recipes/ folder instead. A .HTACCESS or subdomain control may be used
RewriteEngine on
RewriteBase /
# Fix for problems caused by missing trailing slashe (Double login, Ugly URL)
RewriteCond s%{HTTPS} ^((s)on|s.*)$
RewriteRule ^/*(.+/)?([^.]*[^/])$ http%2://%{HTTP_HOST}/$1$2/ [L,R=301]
#RewriteCond %{HTTP_HOST} ^(www\.)?([^.]+)\.
# basicly www.*.domain ...and * becomes %2 variable
RewriteCond %{HTTP_HOST} ^(www\.)?recipes\. [NC]
RewriteCond %{REQUEST_URI} !^/recipes/
RewriteRule ^(.*)$ recipes/$1 [L]
The directory /recipes/xmlsrv requires to have some of the cgi-handling enabled for the php.
That is my 2c worth
Azrin@ http://www.azrin.net [Geek's Lair]
I successfully used multisite b2E using w.bloggar at http://athira.net
Your xmlrpc.php is protected ( I got a 403 when I tried to access it directly)
¥