I'm happy to use this library (simple and powerfull), and I have an improvment for you :
in phplibex.inc.php you don't need to hard-code the folder of phplibex.
On line 68, replace
$phplibex_folder = "C:/apachefriends/xampp/htdocs/phplibex";
by
$phplibex_folder = dirname(__FILE__);
and on line 74, replace
define("PHPLIBEX_ERROR_LOG","C:/apachefriends/xampp/htdocs/phplibex/phplibex-error.log");
by
define("PHPLIBEX_ERROR_LOG", dirname(__FILE__).'/phplibex-error.log');
Hopes this help to made this lib independant !
-Jerome-
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi there.
I'm happy to use this library (simple and powerfull), and I have an improvment for you :
in phplibex.inc.php you don't need to hard-code the folder of phplibex.
On line 68, replace
$phplibex_folder = "C:/apachefriends/xampp/htdocs/phplibex";
by
$phplibex_folder = dirname(__FILE__);
and on line 74, replace
define("PHPLIBEX_ERROR_LOG","C:/apachefriends/xampp/htdocs/phplibex/phplibex-error.log");
by
define("PHPLIBEX_ERROR_LOG", dirname(__FILE__).'/phplibex-error.log');
Hopes this help to made this lib independant !
-Jerome-
thx a lot. It is fixed and available in CVS :-).
Ciao,
Kai