Jump to content

Failed Opening Error


Warptweet

Recommended Posts

Here is my index.php code...

 

<?php
define("IN_MYBB", 1);
require './forums/global.php';

if($mybb->user['uid'] != 0)
{
echo "Hello, you are logged in! " . $mybb->user['username'] . "";
}
else
echo "You are not logged in!";


?>

 

It gives me this error...

Warning: main(./inc/init.php) [function.main]: failed to open stream: No such file or directory in /home/warp/public_html/forums/global.php on line 13

 

Fatal error: main() [function.require]: Failed opening required './inc/init.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/warp/public_html/forums/global.php on line 13

 

Does anyone know what is happening?

Link to comment
https://forums.phpfreaks.com/topic/38935-failed-opening-error/
Share on other sites

No, I get this error when I remove the .

 

Warning: main(/inc/init.php) [function.main]: failed to open stream: No such file or directory in /home/warp/public_html/forums/global.php on line 13

 

Fatal error: main() [function.require]: Failed opening required '/inc/init.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/warp/public_html/forums/global.php on line 13

Link to comment
https://forums.phpfreaks.com/topic/38935-failed-opening-error/#findComment-187290
Share on other sites

chdir

(PHP 4, PHP 5)

 

chdir — Change directory

 

Description

bool chdir ( string $directory )

 

 

heres a example they post

 

<?php

// current directory
echo getcwd() . "\n";

chdir('public_html');

// current directory
echo getcwd() . "\n";

?>

The above example will output something similar to:


/home/vincent
/home/vincent/public_html

Link to comment
https://forums.phpfreaks.com/topic/38935-failed-opening-error/#findComment-187601
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.