March 2010
M T W T F S S
« Feb    
1234567
891011121314
15161718192021
22232425262728
293031  

Eclipse, XDebug, Apache and a Segmentation Fault

Or an alternative title: “Be very careful when you cut and paste from web pages”.
I’m a bit tired of doing var_dump debug on PHP, as today I debug lot of PHP lines every day and use complexer architectures as Joomla! CMS than simpler LAMP, I need to set up Eclipse to work with XDebug [...]

VirtueMart: Extra payment information not shown on purchase order confirmation email

I’ve found this problem many times in VirtueMart forums, but never solved. If you do not know that, VirtueMart is a virtual shop component for Joomla CMS. It’s a good piece of code, however it has some problems -often not very important ones-, and its customization sometimes need hacking its code a bit.
I’m building one [...]

WordPress, XMLRPC, MetaWeblog API and xmlrpc-2.2.1 library for PHP

Just an example of using xmlrpc-2.2.1 library for PHP, for creating a new post on a WordPress based blog using MetaWeblog.newPost xml/rpc function.
Of course, you’ll need xmlrpc-2.2.1 library that may be found here. MetaWeblog API documentation may be found here.

// Testing metaWeblogApi
require_once dirname(__FILE__)."/xmlrpc-2.2.1/lib/xmlrpc.inc"; // This should be changed with the place you’ve the xmlrpc.inc file [...]