Wow, things seem to be getting worse by the minute.
Can you confirm that the file indicated by the message actually exists?
The line in question is this:
require_once ('common.class.php')
. This line tries to include a file located in the current directory and is usually OK if the PHP include_path settings, specified in php.ini, looks something like this include_path = ".:/var/www/adodb:/usr/share/pear" . The dot ( '.' ) indicates current directory.
However, your include_path isn't very useful, as your error message indicated:
Fatal error: main(): Failed opening required 'common.class.php' (include_path='') ...
. The path is empty.
If you have access to the php installation, I would recommend at least adding the '.' to the include path. If you don't, you may be able to specify it by creating a .htaccess file, as
this link discusses.
Alternatively, or in the worse case scenario, you could modify the file dbquery.php and admin.dbquery.php, adding a line such as
ini_set ( "include_path",".:your/new/path" );
.
If you have questions about the PHP installation, you may wish to contact your hosting company and inquire about the best way to modify the include path. Feel free to forward them this message if you wish. I'll be glad to help more but can't offer advice regarding DBQ about how to customize your webserver.
just me,
tcp