XRMS on ISPConfig

Discussion in 'Installation/Configuration' started by egbringas, Aug 11, 2006.

  1. egbringas

    egbringas New Member

    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
     
    Last edited: Aug 11, 2006
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Please make sure that you disable PHP safemode and install the php pear package from your linux distribution.
     
  3. egbringas

    egbringas New Member

    thanks...what are the pear packages that needs to be installed? i tried apt-get install php-pear...and it's already installed...
     
    Last edited: Aug 11, 2006
  4. egbringas

    egbringas New Member


    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');
     

Share This Page