Web Hosting Talk







View Full Version : Pear on raq4


jsmit
03-15-2002, 02:59 PM
Pear is in the /php/pear directory on my unix server:

I have the following error:

Fatal error: Failed opening required '/HTML/Table.php' (include_path='') in /home/sites/home/users/jsmit/web/test.php on line 8

I have to change something in the php.ini file ?


Thanks

nozol
03-18-2002, 06:51 AM
It seems that you are including a file with a wrong path to it. You need to enter the full server path to the file you included in test.php.

That is, for example,

include ("/home/sites/home/users/jsmit/web/HTML/Table.php ");

Regards,

Ahmed