7
2 tips for your physical path :
for XOOPS_ROOT_PATH, use :
define('XOOPS_ROOT_PATH', str_replace("\\", "/",dirname ( __FILE__)) );
or to find your real physical path :
you can create a php file, and put this code in it :
print getcwd();
?>
call this page in your browser and you'll see your physical path.