Warning: chdir(): No such file or directory (errno 2) in /home/www/humori.net/chat/index.php on line 3
Warning: main(/global.php): failed to open stream: No such file or directory in /home/www/humori.net/chat/index.php on line 5
Warning: main(/global.php): failed to open stream: No such file or directory in /home/www/humori.net/chat/index.php on line 5
Fatal error: main(): Failed opening required '/global.php' (include_path='.:/usr/local/lib/php') in /home/www/humori.net/chat/index.php on line 5
i get an errorr to any ideas why??
index.php file permissions 755 containing information as above
<?php
// ## Changes Directory so it can accesss vBulletin ##
chdir("/humori.net/forumi/");
// ## Grabs global.php ##
require("/global.php");
// ## yeap what it says ##
define('NO_REGISTER_GLOBALS', 1);
// ## defines this script as chat if you use phpinclude_start for this page at all ##
define('THIS_SCRIPT', 'chat');
// ## Removes Non Alpha Numeric charaters except for a space ##
$nonalnum = ereg_replace("[^ [:alnum:]]", "", $bbuserinfo[username]);
// ## Strips spaces from the name if any are found ##
$chatname = ereg_replace(" ", "_", $nonalnum);
// ## Strips spaces from the name if any are found ##
// $chatname = ereg_replace("__", "_", $strpdsh);
// ## prints out the chat template ##
eval('print_output("' . fetch_template('chat') . '");'); //
?>
--------------------------------------------------------------------------
also tried the following paths to the forum ("/humori.net/") , ("home/www/humori.net/") ("home/www/humori.net/forumi") etc and it still doesnt work any clues what i might have done wrong :disappointed:
|