Topic: invalid $DOM_SCRIPT
weird.. i have
$DOM_SCRIPT = $_SERVER['SERVER_NAME']; // --> mysite.com
$PATH_SERVER = $_SERVER['DOCUMENT_ROOT']; // --> /public_html (pssst.. NO ENDING SLASH!)
// example:
# $DOM_SCRIPT = 'mysite.com';
# $PATH_SERVER = '/public_html';
/* Btw, you can check this values by uncommenting this: */
echo 'DOM: '.$DOM_SCRIPT.' - PATH: '.$PATH_SERVER;note that echo is not commented and it returns:
DOM: www.image-bb.org - PATH: /home/86412/domains/image-bb.org/htmlso my settings now are...
$DOM_SCRIPT = $_SERVER['www.image-bb.org']; // --> mysite.com
$PATH_SERVER = $_SERVER['/home/86412/domains/image-bb.org/html']; // --> /public_html (pssst.. NO ENDING SLASH!)but, i get the following errors
Critital error: Invalid $DOM_SCRIPT, edit it manually in config.phpLast edited by philhxc (2010-01-16 21:08:00)
