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
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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.