I have my site's user system run completely through phpBB and this continued to function normally aside from the variables I was pulling from the whosonline.php file to display who is logged in on the site.
My code is as follows
Code: Select all
<?php
include('./forum/whosonline.php');
echo "<h3 align='center'>".$counter." Users Online</h3>";
echo "<h4 align='right'>".$list_users."</h4>";
echo "<h6 valign='bottom'>".$guest_counter." guests</h6><br />";
?>
After the upgrade, the page doesn't load from that piece of code on.
It's not a file permissions thing, I've already checked that.
If there is a way to fix this, or another method of doing the same, I'd appreciate it.