Users at my PHPBB site can no longer register. It's been working fine for ages, but now, for no apparent reason, it's stopped working. When a user tries to the register, it loops back to the site agreement (coppa) page and doesn't let them proceed:
http://cowtowndance.com/forum/profile.php?mode=register
I notice that the SID is not appended to the "I Agree to these terms and am over or exactly 13 years of age
" link. The PHP line for the link is as follows, so the SID should be there, shouldn't it?
- Code: Select all
"U_AGREE_OVER13" => append_sid("profile.$phpEx?mode=register&". $board_config['agreed_var'] ."=".$board_config['agreed_val']),
I also noticed that this $board_config value is no longer working. When I hover over the link, the URL is:
http://cowtowndance.com/forum/profile.p ... register&=
instead of
http://cowtowndance.com/forum/profile.p ... greed=true
I tried replace all of the $HTTP_POST_VARS with $_POST and $HTTP_GET_VARS with $_GET, but that didn't help.
I've asked my host in case they've made any changes to hosting server or DB server that might have broke my site, but no word yet.
Any suggestions or tips on what the problem is, how to diagnose it, or where to look elsewhere for help, would be appreciated.
Thanks!