The problem you may be having is when you go into vBulletin options-> Cookies and Setting your site may be (blank) you should have a drop down that allows you to select yourdomain.com. Once I changed that it worked. That is the only thing I did different. The table code I posted above is the same... well here is the entire code:
Code:
<?php
$curdir = getcwd ();
chdir('/home/superman/public_html/forums');
require_once('/home/superman/public_html/forums/global.php');
chdir ($curdir);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<?php
require_once('../forums/login_inc.php');
?>
<?php
if ($vbulletin->userinfo['usergroupid'] == '6' )
{
echo "<table width='100%' border='0' cellspacing='0' cellpadding='0'>
<tr>
<td>NEWS</td>
<td>COMICS</td>
<td>REVIEWS</td>
<td>CHARACTERS</td>
<td>CREATORS</td>
<td>ARTICLES</td>
</tr>
<tr>
<td><a href='submit_news.php'>Submit News </a></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><a href='view_edit_news.php'>Edit News </a></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>";
} else {
echo "You do not have permission for this page"; }
?>
</body>
</html>