Quote:
Originally Posted by Redlinemotorsports
admincp > maintenance > php info
|
Configuration File Path
in the php info page would be it I think...
Or there is
PHP Code:
<?php
if ($_SERVER['PATH_TRANSLATED'])
{
$path = $_SERVER['PATH_TRANSLATED'];
}
else if ($_SERVER['SCRIPT_FILENAME'])
{
$path = $_SERVER['SCRIPT_FILENAME'];
}
else
{
echo 'We are sorry, but this script is unable to determine your forums path.';
exit;
}
echo substr($path, 0, (strlen($path) - 14));
?>
Which you can upload to whatever location