eschnou / storytlr

Storytlr is an opensource lifestreaming and microblogging platform written in PHP. Note: The default branch (master) is the development branch, if you need a stable version, see the release-XX branches, tags, or downloads.
http://storytlr.org
Other
216 stars 57 forks source link

XML #82

Closed freealise closed 5 years ago

freealise commented 10 years ago

Is it possible to use plain XML instead of XML-RPC? The PHP configuration on my host does not have that module installed.

They say it could be faster as well (I don't know, I'm not an expert).

eschnou commented 10 years ago

No, xml-rpc is used for the 'pingback' between storytlr instances. If you don't need that feature, you could try to comment out the requirement. Just comment this line in the code: https://github.com/storytlr/storytlr/blob/master/protected/install/install.php#L145

That should do the trick :-)

pfefferle commented 10 years ago

Perhaps it is possible to add some fallback funktions to the code... Something like that:

https://github.com/pfefferle/mention-client/blob/master/src/IndieWeb/MentionClient.php#L289