Hi Leonardo,

Can you tell us what your PHP include_path is set to in your php config?
(normally /etc/php5/apache2/php.ini)

Also, can you paste in the values you've got in your config.php for
these variables:

  $CFG->wwwroot
  $CFG->dirroot
  $CFG->dataroot

Regarding the other problem you had with formslib not being able to
include Quickform, you could try the following.

In lib/formslib.php around line 25, change:

if (FALSE===strstr(ini_get('include_path'), $CFG->libdir.'/pear' )){
    ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR .
ini_get('include_path'));
}

to be just:

ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR .
ini_get('include_path'));


(i.e. remove the IF statement)

Cheers,
Francois

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to