Hi Steve,
I was a bit disappointed that the dataface application which worked fine on my linux laptop could not do it on my server. Thanks to a previous post in this forum (Installation Issues by wolfe) I quickly found that the ini_set function was disabled. Google helped me find a workaround for this issue:
The ini_set call to set the include path can be replaced by set_include_path in config.inc.php:
// instead of ini_set('include_path', $include_path );
set_include_path($include_path);
I also put an @ before the next ini_set('display-errors', 'on'); to suppress the warning and it works.
Do you think I might get trouble with this work-around since I did not check for other ini_set througout the code?
Thanks again for this app. It seems to me a lot better than the DBQuery I was trying to use.
--
jean-marie pacquet