Alrighty... I am working on setting up a non-vb page but I need it to interact with vbulletin a little. With help from KirbyDE I got a loginscript to work. Now I am trying to set it up so I can use vb user permession on my non-vb page. I had asked about how to do that here at vbulletin.org and was told to "Include your global.php and use $vbulletin->$useroptions('usergroup') confitionals for permissions." Trying that out, I coded up a little code. When I load the page on my browser it returns this error:
Error Message
Quote:
Unable to add cookies, header already sent.
File: /home/user/public_html/untouched.php
Line: 6
|
I'm hoping someone after looking at the source code below could figure out why I am getting this error.
Code
PHP Code:
<html>
<head>
<title>Testing</title>
</head>
<body>
<?php
include "global.php";
include "http://www.exasko.info/loginscript.php";
?>
</body>
</html>
If anyone could help me, I'd appericate it. Thank you.