Hello,
I'm not sure if you've solved this yet, but try using the constant PATH_SEPARATOR instead of a colon in your include path.
In other words,
ini_set('include_path', ini_get('include_path') . ':../library');
should be
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . '../library');
I hope this helps!
|