Quote:
Originally Posted by NittoMOD
Any help with this?
|
I too have the same issue as you =[
My Fix:
well, I'm using this in the root of the site for a custom html page. I feel like a dumbass because i looked at the source and it had "<html>" twice. So my "custom.php" file that I made all I included in it was:
PHP Code:
<?php
$curdir = getcwd ();
chdir('/home/bstackn/public_html/vbtest');
require_once('global.php');
chdir ($curdir);
?>
<?php
require_once('login_inc.php');
?>
That seemed to work for me and fixed my issue. Hope this helps someone else.