I use the default auto uploader: http://www.php.net/manual/en/function.spl-autoload.phpby PettyCrim - Support
I am using PHP 5.3 with namespaces and am having difficulty installing. I have in my main index page the following: spl_autoload_extensions(".php"); spl_autoload_register(); require_once 'htmlpurifier/library/HTMLPurifier.auto.php'; $purifier_config=HTMLPurifier_Config::createDefault(); $purifier_config->set('HTML.Allowed', 'p, em, b,a,i'); $purifier = new HTMLPurifier($purifier_conby PettyCrim - Support