8
Are you sure that the absolute path is correct in mainfile.php?
Open mainfile.php and add this line:
echo "Path:" .$xoopsScriptPath;
just above this:
if ( strcasecmp( substr($xoopsScriptPath, 0, strlen(XOOPS_ROOT_PATH)), str_replace( DIRECTORY_SEPARATOR, '/', XOOPS_ROOT_PATH)) ) {
exit("XOOPS path check: Script is not inside XOOPS_ROOT_PATH and cannot run.");
}
Go to your website and see if it displays any path. Check that against what you have in:
define('XOOPS_ROOT_PATH', 'C:/wamp/www/xoops216');
If they are the same, then you have another problem and I would contact your hosts again and see if they can find the problem.
If they are different, replace the old one with the new one.
Hope that helps.