I am confused...........
I have made a project . No problem in localhost but whenever I try to execute in my domain server it shows :
Warning: include_once(body/login/logIn.php) [function.include-once]: failed to open stream: No such file or directory in /mounted-storage/home36c/sub003/sc29343-BHKZ/progekt.com.utpal/helora/body.php on line 68
You can check : http://utpal.progekt.com/helora
I have used code in my project :
define("BODY",'body/');
define("LOGIN",BODY.'login/');
@$action=trim($_REQUEST['action']);
@$script=trim($_REQUEST['script']);
if(strcmp($action,"admin")==0){
switch($script){
case 'login':include_once LOGIN."logIn.php";
break;
}
}
I have set all of my files 777 permissions. But no output.
Can you fix it?????