Archive for the 'PHP' Category

How to use NuSoap with PHP 5

Thursday, February 8th, 2007

Seems by just renaming the soapclient class and constructor you can ‘patch’ NuSoap to work with PHP5.
I’ve renamed the constructor and the class to soap_client and it all works.
Thanks to Vivek Jishtu for the original tip.
http://vivekjishtu.blogspot.com
Technorati Tags: php5, nusoap, SOAP, php, web development

Read full post...

Offline / download (downloadable) / PDF Drupal API reference

Saturday, October 7th, 2006

I’ve been looking for an offline or pdf version of the Drupal API found here: http://api.drupal.org/
In the end I gave up and followed the advice of a fellow Drupal developer and created an offline copy of the Drupal docs using Httrack: http://www.httrack.com/.
Please remember to only use this occasionally as you are effectively hammering Drupal’s servers.
Technorati [...]

Read full post...

Symfony - “PHP Fatal error: Class ‘DomDocument’ not found” problem

Wednesday, August 23rd, 2006

Just stumbled across this error on my first step to setting up my Symfony environment on a CentOS 4.3 system. I’ve decided to blog about it so that google can index it and hopefully help somebody else.
PHP Fatal error: Class ‘DomDocument’ not found in /usr/share/pear/symfony/vendo
r/propel-generator/classes/propel/phing/AbstractPropelDataMo delTask.php on line
406
The solution? Make sure you have php-xml installed. [...]

Read full post...