Python Community Server: Development

A weblog about programming in Python, C#, Java, Perl and C++ - and the occasional comment on PyCS development
new: discuss community servers on the CommunityServerWiki!

SunMonTueWedThuFriSat
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

[ Mar ] [ May ]

the locals
also available in XML
Copyright (c) 2002 Phillip Pearson
spread the dot

2002-4-19

phpStorageSystem

phpStorageSystem is functional and seems to work reasonably well to upload a weblog to a PHP server.  If anyone wants to test it, now is the time.

It's missing lots of features but those will come in over time, as with Python Community Server.  Most notably, it won't let you delete files yet, and none of the referrer/update/ranking pages do anything.  Those aren't necessary though :)

Comment on this post [ so far]

xmlrpcdebug

If you're doing any XMLRPC work, especially if it's in PHP, take a look at xmlrpcdebug.  It's a slightly modified version of the example proxy in the Medusa tutorial, and it will dump out whatever goes through it.

It's great for XMLRPC in PHP, because when something goes wrong in PHP it writes an error to the browser.  In this case, the 'browser' is an XML parser, which will choke horribly on the error message and give you a cryptic error message.

Using xmlrpcdebug, you can see what's actually happening.

Comment on this post [ so far]