Quote:
Originally Posted by AN-net
are you actually running any queries in that file?
|
What file? The one I have the global included in?
If so, yeah...
At the top of that file (my site's global.php) is the forum's global include and I check to see if $bbuserinfo[userid] is available, and then grab their username/etc.
Further down, I do some non-related db queries and such. So my global.php looks like this...
chdir("/home/virtual/site1/fst/var/www/html/forums");
require_once("./global.php");
if ($bbuserinfo[userid] != 0) {
$userid = $bbuserinfo[userid];
$username = $bbuserinfo[username];
}
And below this I open a db connection and run some non-related queries.
But that shouldn't affect anything right? Once the forum global is called, then that user should show up in WOL?