Phoenix EMU Error! HELP.

Timothy

Kylie Jenner
Sep 25, 2013
674
79
So I really decided again to try out WabboCMS. I got everything working other than the EMU. When I tried to start it up it says "Error in server status update task caught" In which Was after all the things loaded in on the emu. Heres a pic if your confused;
You must be registered for see images attach

I dont know what this is but the error just keeps going and going. If anyone can help me that would be great!
 

Timothy

Kylie Jenner
Sep 25, 2013
674
79
Check your error log
Not sure if this is the error log but all I got is threaderror and it repeats as this,
2/16/2014 8:07:54 PM: Error in thread Server status update task:
System.NullReferenceException: Object reference not set to an instance of an object.
at ????????.????????.????????(String ????????)
at ????????.????????.????????()

2/16/2014 8:07:59 PM: Error in thread Server status update task:
System.NullReferenceException: Object reference not set to an instance of an object.
at ????????.????????.????????(String ????????)
at ????????.????????.????????()

2/16/2014 8:08:04 PM: Error in thread Server status update task:
System.NullReferenceException: Object reference not set to an instance of an object.
at ????????.????????.????????(String ????????)
at ????????.????????.????????()

2/16/2014 8:08:09 PM: Error in thread Server status update task:
System.NullReferenceException: Object reference not set to an instance of an object.
at ????????.????????.????????(String ????????)
at ????????.????????.????????()
 

Wickd

The first member of the Knights of the Pink Table
Jan 15, 2013
1,936
612
Search for: "final public function addUser($username, $password, $email, $motto, $credits, $pixels, $figure, $gender)"
Replace it with
Code:
final public function addUser($username, $password, $email, $motto, $credits, $pixels, $figure, $gender)   

{       

        global $engine;                                   

        $sessionKey = ''.rand(9,999).'/'.substr(sha1(time()).'/'.rand(9,9999999).'/'.rand(9,9999999).'/'.rand(9,9999999),0,33);

        $engine->query("INSERT INTO users (username, password, mail, motto, credits, vip_points, activity_points, look, gender, ip_last, ip_reg, last_online, account_created, auth_ticket) VALUES('" . $username . "', '" . $password . "', '" . $email . "', '" . $motto . "', '" . $credits . "', '10', '" . $pixels . "', '" . $figure . "', '" . $gender . "', '" . $_SERVER['REMOTE_ADDR'] . "', '" . $_SERVER['REMOTE_ADDR'] . "', '" . time() . "', '" . time() . "', '" . $sessionKey . "')");   

        $user_id = mysql_insert_id();
        $engine->query("INSERT INTO user_info (user_id,reg_timestamp,login_timestamp) VALUES('" . $user_id . "', '" . time() . "', '" . time() . "')");

        $engine->query("INSERT INTO user_tags (user_id,tag) VALUES('" . $user_id . "', 'Hebbo')");

        $engine->query("INSERT INTO user_tags (user_id,tag) VALUES('" . $user_id . "', 'Hotel')");

        $engine->query("INSERT INTO cms_homes (user_id,homes_bg) VALUES('".$user_id."','bg_rain.gif')");

        unset($sessionKey);
}
If that doesn't work test it out on another CMS.
 

Users who are viewing this thread

Top