has anybody ever tried running xrms (http://xrms.sourceforge.net) on ISPConfig? installations went through smoothly but when i try to login...i got error Warning: require_once(PEAR.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/web1/web/xrms/include/classes/HTML/QuickForm.php on line 22 Fatal error: require_once() [function.require]: Failed opening required 'PEAR.php' (include_path='.:/usr/share/php:/usr/share/pear:/var/www/web1/web/xrms/include/classes') in /var/www/web1/web/xrms/include/classes/HTML/QuickForm.php on line 22 appreciate some help... thanks
Please make sure that you disable PHP safemode and install the php pear package from your linux distribution.
thanks...what are the pear packages that needs to be installed? i tried apt-get install php-pear...and it's already installed...
i found the problem....it's in the QuickForm.php.. it's looking for the PEAR.php in /var/www/web1/web/xrms/include/classes BUT the file is in /var/www/web1/web/xrms/include/classes/PEAR directory.... edited QuickForm.php in Line 22: require_once('PEAR.php'); to require_once('PEAR/PEAR.php');