Got a bit deeper in it. The registration on the website is what causes it. Ill just rewrite the thing. (/www/loader.php) Fix: loader.php Line 252 from: Code: mysql_query("INSERT INTO users (username, password, email) VALUES ('".beveilig($_POST['user'])."', '".beveilig($pass)."', '".beveilig($_POST['email'])."')"); to: Code: mysql_query("INSERT INTO users (username, password, email, signedup, lastactivity, club_lastupdate) VALUES ('".beveilig($_POST['user'])."', '".beveilig($pass)."', '".beveilig($_POST['email'])."', NOW(), NOW(), NOW())"); '; } ?> public function convertFigure($figure) { $start = 0; $parts = array(); $increase_start = array(0, 5, 10, 15, 20); for($x = 0; $x < 10; $x++) { $length = (in_array($start, $increase_start)) ? 3 : 2; $parts[$x] = substr($figure, $start, $length); $start = $start + $length; } return 'hr-'.$parts[0].'-'.$parts[1].'.hd-'.$parts[2].'-'.$parts[3].'.ch-'.$parts[4].'-'.$parts[5].'.lg-'.$parts[6].'-'.$parts[7].'.sh-'.$parts[8].'-'.$parts[9]; }