Please please help me, im a newbie
My forum is here:
www.hiven.net/forum
My test.php file is here:
www.hiven.net/test.php
Im getting this error:
Quote:
Warning: chdir(): No such file or directory (errno 2) in /home/hiven48/public_html/test.php on line 2
Warning: main(/forum/global.php): failed to open stream: No such file or directory in /home/hiven48/public_html/test.php on line 3
Fatal error: main(): Failed opening required '/forum/global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/hiven48/public_html/test.php on line 3
|
Here is the contents of my test.php file:
Quote:
<?php
chdir('/forum');
require_once('/forum/global.php');
?>
<html>
<body>
This is a heading<br />
This is some more stuff <br />
And another line<br />
You get the idea<br />
Just place stuff as you normally would with HTML<br />
I use CSS to style and position on my site fwiw<br />
<br />
How about we put the login box right under here?<br />
<br />
<?php
require_once('/login_inc.php');
?>
</body>
</html>
|
Here is the forum path in my login_inc
Quote:
<?php
// Edit the lines below to show path to your forums
$forumpath = "http://www.hiven.net/forum/";
|
Many thanks for any help you can give!