Hello.
I know. This is not forum for user frm other countries but I have question about rewrite rules for Ligghtpd server. I want to have rules to make URLs like /blogname/owner etc. Ive made something like this:

$HTTP["remoteip"] == "127.0.0.2" {
    server.document-root = "/var/www/tc/"
    url.rewrite-once = (
        "^(thumbnail)/([0-9]+/.+)$" => "cache/$1/$2",
        "^(cache)+/+(.+[^/])\.(cache|xml|txt|log)$" => "$0",
        "^(.*[^/])$" => "$1/",
        "^(.*)$" => "rewrite.php"
    )
}

It works only when adress looks like http://127.0.0.2/grom/owner/ but dont work if I have URL like http://127.0.0.2/grom/owner so as I think problem is with "^(.*[^/])$" => "$1/" but how to correct that? Any suggestions? Any advice? If someone knows how to resolve that then please tell me ;P

Best regards, Grom.

Thanks. So I written this. Now my function return

<?xml version="1.0" encoding="UTF-8"?>
<methodResponse><params><param><value><struct><member><name>error</name><value><boolean>0</boolean></value></member><member><name>message</name><value><string>Success</string></value></member></struct></value></param></params></methodResponse>

Very thanks Creorix smile
But still TextCube cant change the trigger to on. Its always off. It uses AJAX technology so it should change in realtime but my TextCube dont turn this. Only reload page... I think I forgot about something hmm

Thx Creorix but this xml code is wrong I think. I still cant get good reposne in TextCube. Spotter is always off hmm

Hello again.
So some time ago I decided to write Eolin like service. Protocol will be the same like in Eolin so I dont change eolin implementation in blog much.

I want to use Zend_XMLRPC to XMLRPC requests but...
I have for now only sync.create implementation done.
What I need next? I think now server should send response to client, right? But how this should looks?
I found simillar to this

<?xml version="1.0" encoding="utf-8"?>
<methodResponse><params><param><value><struct><member><name>error</name><value><boolean>0</boolean></value></member><member><name>message</name><value><string>Success</string></value></member></struct></value></param></params></methodResponse>

This is response? What I need yet?
My sync.create implementation parse this only

<?xml version="1.0" encoding="UTF-8"?>
<methodResponse><params><param><value><struct><member><name>blogURL</name><value><string>http://127.0.0.1/tc2/grom</string></value></member><member><name>syncURL</name><value><string>http://127.0.0.1/tc2/grom/sync/1</string></value></member><member><name>blogTitle</name><value><string/></value></member><member><name>language</name><value><string>en</string></value></member><member><name>permalink</name><value><string>http://127.0.0.1/tc2/grom/entry/test</string></value></member><member><name>title</name><value><string>test</string></value></member><member><name>content</name><value><string>to jest test hththdfdsfds :)</string></value></member><member><name>author</name><value><string>Grom</string></value></member><member><name>tags</name><value><array><data><value><string>heh</string></value><value><string>new</string></value><value><string>sparta</string></value></data></array></value></member><member><name>location</name><value><string>/</string></value></member><member><name>written</name><value><string>Sat, 15 Sep 2007 11:03:14 +0900</string></value></member></struct></value></param></params></methodResponse>

It should make something more?

Uh I forgot. I send response like this:

        $sock = @fsockopen("http://127.0.0.1/tc2/grom/", 80, $errno, $errstr, 30);

        fwrite($sock, 'POST / HTTP/1.0'."\r\n");
        fwrite($sock, 'Host: '."http://127.0.0.1/"."\r\n");
        fwrite($sock, 'User-Agent: Mozilla/4.0 (compatible; Eolin)'."\r\n");
        fwrite($sock, 'Content-Type: text/xml'."\r\n");
        fwrite($sock, 'Content-Length: '.strlen('<?xml version="1.0" encoding="utf-8"?><methodResponse><params><param><value><struct><member><name>error</name><value><boolean>0</boolean></value></member><member><name>message</name><value><string>Success</string></value></member></struct></value></param></params></methodResponse>')."\r\n");
        fwrite($sock, 'Connection: close'."\r\n");
        fwrite($sock, "\r\n");
        fwrite($sock, '<?xml version="1.0" encoding="utf-8"?><methodResponse><params><param><value><struct><member><name>error</name><value><boolean>0</boolean></value></member><member><name>message</name><value><string>Success</string></value></member></struct></value></param></params></methodResponse>');
        fwrite($sock, "\r\n");
        fclose($sock);

Maybe this is a problem?

It work's. Thanks so much inureyes and all others smile

My Teamblog table looks like this http://img266.imageshack.us/img266/1095 … nu2jy9.png
My table configuration: http://pastebin.com/m4d199fa6
smile

Thanks for answer.

Has the account (whose name is 'grom') a privilege of administrator?

I think so... This is my first account created in installation process.  In prefix_Users I have only entry for this account. And in prefix_UserSettings I dont have any entries.

If you already signed in using the administrator account and same problem is occured, it might be a problem of a session table.
Try to delete all data of 'prefix_Sessions' table of database, and re-login. Then the problem will be solved.

I deleted all entries in Session table but still I dont have "Invite Friend" option in Admin Page.

Hello again.
So I installed your blogging software and I think its great but...
On single user installation all options work and admin panel have many features but If I installed this blog on multiuser installation list of features severely decreased. I even have Invite a Friend option. Can I activate more options somewhere? Or maybe I must write it myself?

My admin panel looks like this: http://farm2.static.flickr.com/1389/134 … d5f8_o.png
Some texts is translated. I want to make unofficial support for your software for Polish users smile

Thx for answer. It is very helpfull for me.

PS. Your english is good wink

Hello. For the beginning, I'd like to apologize you about writting here, but English forum not work hmm
Some time ago I found this engine. I think its very nice and have English translation smile I download it fast and check on my localhost but it not work. Today I downloaded version 1.5-core from dev site and installed this on my localhost. In installation process I saw something simillar to this:

Multi-user :        Discrete blogs via sub-path

Is that means that I can have many blogs? If yes than how? I select this but I have only one http://localhost/tc/grom/ . How can I create new blogs? Next question is about logging. I have blog but if I try to loggin in http://localhost/tc/grom/login?requestURI=http%3A%2F%2Flocalhost%2Ftc%2Fgrom%2Fowner%2Fentry%2Fpost using my email and password this reload page and show me the same page hmm Any suggestions?

Sorry for my poor English hmm