Recent Topics

1 Jun 10, 2006 16:58    

I'm sorry, I know this is hopelessly remedial but I've searched both here and on the w.bloggar site and haven't come up with anything.

## image removed by whoo, we dont need it :) ##

My domain is sofadog.net. I've tried both "www.sofadog.net" and just "sofadog.net" in the Host field.

The directory is recipes, and I've tried both "/recipes/xmlsrv/xmlrpc.php" and "/public_html/recipes/xmlsrv/xmlrpc.php" in the Path field. I've confirmed that that is the correct file location.

My site is here: http://www.sofadog.net/recipes/

After putting in my username and password (which I've confirmed) I get a 403 error after the next page.

Any suggestions?

Thanks in advance!

2 Jun 11, 2006 11:30

Your xmlrpc.php is protected ( I got a 403 when I tried to access it directly)

¥

3 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!

5 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


Form is loading...