Danny Kennison

Results 2 comments of Danny Kennison

Note that this error appears to occur any time the classes aren't autoloaded. Make sure the paths to the required classes are correct. In my case, path is case sensitive...

Above is autoloader.php. I have the following in the Constructor of my model that uses WhoisParser. ` require_once(dirname(__FILE__).'/../third_party/Novutec/autoloader.php'); require_once(dirname(__FILE__).'/../third_party/Novutec/DomainParser/Parser.php'); require_once(dirname(__FILE__).'/../third_party/Novutec/WhoisParser/Parser.php'); ` spl_autoload_register() takes the namespace, converts it to a path,...