View Single Post
  #9 (permalink)  
Old 01-30-2008, 02:42 AM
djvirgen djvirgen is offline
Junior Member
 
Join Date: Jan 2008
Posts: 1
Default

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!
Reply With Quote