I have PEAR setup and custom packages installed under the directory
/home/######/data/pear/php
I can ssh in and confirm the files are there, however I can not include them in my application as such
require_once "/home/######/data/pear/php/Mail/Queue.php";
I get an error
Failed to open stream: No such file or directory
I have also tried setting my php include_path to Local: /home/######/data/pear/php Master: .:/home/######/data/pear/php
and received the same error using:
require_once "/Mail/Queue.php";
Another odd thing is that the "/pear/php" directory does not appear in place over ftp, but instead in an "..mnt/######/users/.home/pear/php/" directory
Technical Support tells me that custom PEAR packages are not a supported issue. Any suggestions?