Let me know if your stats start increasing again; I went and looked at my own and indeed they stopped on May 12th. I'm testing some coding changes based on their supplied one liner (be sure you only have one fclose, you may have errors printing to your error log while having two).

The proposed change (for adduser.inc.php, v7.6.0 adds similar coding to login.inc.php as well):
PHP Code
// Stop Forum Spam - EMail Validation
function PostToHost($data) {
	$fp = fsockopen("www.stopforumspam.com", 80);
	fputs($fp, "POST /add.php HTTP/1.1\n");
	fputs($fp, "Host: www.stopforumspam.com\n");
	fputs($fp, "Content-type: application/x-www-form-urlencoded\n");
	fputs($fp, "Content-length: ".strlen($data)."\n");
	fputs($fp, "Connection: close\n\n");
	fputs($fp, $data);
	$output = ""; while(!feof($fp)) { $output .= fgets($fp, 1024); }
	fclose($fp);
} 

Last edited by Gizmo; 06/27/2016 9:35 PM.

I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!