View Single Post
Old 05-03-2009, 10:09 AM   #2 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Nevermind, I fixed it. Apparently I set the inclusion path in set_include_path wrong.

This code fixed it:
Code:
$incArgs[] = "C:/wamp/www/ZendTest/application";
$incArgs[] = "C:/wamp/www/ZendTest/library";

set_include_path(implode(PATH_SEPARATOR, $incArgs));
Apparently need the full path, and I'm on windows so..
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote