From 32fca9b9924ef527f146dbcf9b11d1ed7cc51e0f Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 29 May 2014 16:57:30 +0300 Subject: [PATCH 01/40] Changed mail setting --- webapp/_lib/class.Mailer.php | 3 ++- webapp/config.sample.inc.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/webapp/_lib/class.Mailer.php b/webapp/_lib/class.Mailer.php index a81c299d94..36d326f1ef 100644 --- a/webapp/_lib/class.Mailer.php +++ b/webapp/_lib/class.Mailer.php @@ -170,9 +170,10 @@ public static function mailViaMandrill($to, $subject, $message) { if (Utils::isTest()) { self::setLastMail(json_encode($message)); } else { + $result = $mandrill->messages->send($message, $async, $ip_pool); //DEBUG - //print_r($result); + print_r($result); } } catch (Mandrill_Error $e) { throw new Exception('An error occurred while sending email via Mandrill. ' . get_class($e) . diff --git a/webapp/config.sample.inc.php b/webapp/config.sample.inc.php index c0f54bfce0..550be75a59 100644 --- a/webapp/config.sample.inc.php +++ b/webapp/config.sample.inc.php @@ -35,7 +35,7 @@ // Optional Mandrill API key. Set this to a valid key to send email via Mandrill instead of PHP's mail() function.. // Get key at https://mandrillapp.com/settings/ in "SMTP & API Credentials" -$THINKUP_CFG['mandrill_api_key'] = ''; +$THINKUP_CFG['mandrill_api_key'] = 'obKDerfXlAXoh4up4ByKRA'; /************************************************/ /*** DATABASE CONFIG ***/ From 453d706d83ffc204d8ff6f7c0fbee3e019e80d49 Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 29 May 2014 23:52:57 +0300 Subject: [PATCH 02/40] Added gender field. Gender field prosessing in DAO classes. --- tests/TestOfUserMySQLDAO.php | 25 +++++++++++++------ webapp/_lib/dao/class.UserMySQLDAO.php | 7 +++--- webapp/_lib/model/class.User.php | 6 +++++ .../sql/build-db_mysql-upcoming-release.sql | 1 + .../facebook/model/class.FacebookCrawler.php | 11 +++++--- 5 files changed, 36 insertions(+), 14 deletions(-) diff --git a/tests/TestOfUserMySQLDAO.php b/tests/TestOfUserMySQLDAO.php index d1690045b2..d375a8f899 100644 --- a/tests/TestOfUserMySQLDAO.php +++ b/tests/TestOfUserMySQLDAO.php @@ -43,14 +43,14 @@ public function setUp() { protected function buildData() { //Insert test data into test table $builders[] = FixtureBuilder::build('users', array('user_id'=>12, 'user_name'=>'jack', - 'full_name'=>'Jack Dorsey', 'avatar'=>'avatar.jpg', 'location'=>'San Francisco', + 'full_name'=>'Jack Dorsey', 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'San Francisco', 'is_verified'=>1, 'network'=>'twitter')); //Insert test data into test table $builders[] = FixtureBuilder::build('users', array('user_id'=>13, 'user_name'=>'zuck', - 'full_name'=>'Mark Zuckerberg', 'avatar'=>'avatar.jpg', 'location'=>'San Francisco', + 'full_name'=>'Mark Zuckerberg', 'avatar'=>'avatar.jpg', 'gender'=>'Male', 'location'=>'San Francisco', 'network'=>'facebook')); - + $this->logger = Logger::getInstance(); return $builders; } @@ -102,11 +102,13 @@ public function testGetDetailsUserExists() { $this->assertEqual($user->id, 1); $this->assertEqual($user->user_id, 12); $this->assertEqual($user->username, 'jack'); + $this->assertEqual($user->gender, ''); $this->assertEqual($user->network, 'twitter'); $user = $user_dao->getDetails(13, 'facebook'); $this->assertEqual($user->id, 2); $this->assertEqual($user->user_id, 13); $this->assertEqual($user->username, 'zuck'); + $this->assertEqual($user->gender, 'Male'); $this->assertEqual($user->network, 'facebook'); $user = $user_dao->getDetails(13, 'twitter'); @@ -129,7 +131,7 @@ public function testUpdateUser() { $user_dao = DAOFactory::getDAO('UserDAO'); $user_array = array('user_id'=>'13', 'user_name'=>'ginatrapani', 'full_name'=>'Gina Trapani', - 'avatar'=>'avatar.jpg', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter', 'last_post_id'=>'abc102'); $user = new User($user_array, 'Test Insert'); @@ -138,11 +140,12 @@ public function testUpdateUser() { $this->assertEqual($user_from_db->user_id, '13'); $this->assertEqual($user_from_db->username, 'ginatrapani'); $this->assertEqual($user_from_db->avatar, 'avatar.jpg'); + $this->assertEqual($user_from_db->gender, ''); $this->assertEqual($user_from_db->location, 'NYC'); $this->assertTrue($user_from_db->is_verified); $user_array = array('user_id'=>13, 'user_name'=>'ginatrapanichanged', 'full_name'=>'Gina Trapani ', - 'avatar'=>'avatara.jpg', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatara.jpg', 'gender'=>'', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>0, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter'); $user1 = new User($user_array, 'Test Update'); @@ -151,12 +154,13 @@ public function testUpdateUser() { $this->assertEqual($user_from_db->user_id, 13); $this->assertEqual($user_from_db->username, 'ginatrapanichanged'); $this->assertEqual($user_from_db->avatar, 'avatara.jpg'); + $this->assertEqual($user_from_db->gender, ''); $this->assertEqual($user_from_db->location, 'San Diego'); $this->assertFalse($user_from_db->is_verified); //Test no username set $user_array = array('user_id'=>13, 'user_name'=>null, 'full_name'=>'Gina Trapani ', - 'avatar'=>'avatara.jpg', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatara.jpg', 'gender'=>'', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter'); $user1 = new User($user_array, 'Test Update'); @@ -170,12 +174,12 @@ public function testUpdateUsers() { $user_dao = DAOFactory::getDAO('UserDAO'); $user_array1 = array('id'=>2, 'user_id'=>'13', 'user_name'=>'ginatrapani', 'full_name'=>'Gina Trapani', - 'avatar'=>'avatar.jpg', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter', 'last_post_id'=>'abc123'); $user1 = new User($user_array1, 'Test'); $user_array2 = array('id'=>3, 'user_id'=>'14', 'user_name'=>'anildash', 'full_name'=>'Anil Dash', - 'avatar'=>'avatar.jpg', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter', 'last_post_id'=>'abc456'); $user2 = new User($user_array2, 'Test'); @@ -196,6 +200,7 @@ public function testGetUserByNameUserExists() { $this->assertEqual($user->user_id, 12); $this->assertEqual($user->username, 'jack'); $this->assertEqual($user->full_name, 'Jack Dorsey'); + $this->assertEqual($user->gender, ''); $this->assertEqual($user->location, 'San Francisco'); } @@ -256,6 +261,7 @@ private function buildSearchData() { 'author_user_id' => '100', 'author_username' => 'ecucurella', 'author_fullname' => 'Eduard Cucurella', + 'author_gender' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => '#Messi is the best http://flic.kr/p/ http://flic.kr/a/', @@ -286,6 +292,7 @@ private function buildSearchData() { 'author_user_id' => '101', 'author_username' => 'vetcastellnou', 'author_fullname' => 'Veterans Castellnou', + 'author_gender' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => 'Post without any hashtag http://flic.kr/p/', @@ -316,6 +323,7 @@ private function buildSearchData() { 'author_user_id' => '102', 'author_username' => 'efectivament', 'author_fullname' => 'efectivament', + 'author_gender' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => 'Post with #Messi hashtag http://flic.kr/p/', @@ -346,6 +354,7 @@ private function buildSearchData() { 'author_user_id' => '102', 'author_username' => 'efectivament', 'author_fullname' => 'efectivament', + 'author_gender' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => 'Post without any hashtag 2', diff --git a/webapp/_lib/dao/class.UserMySQLDAO.php b/webapp/_lib/dao/class.UserMySQLDAO.php index d2ff24d15c..1921274d05 100644 --- a/webapp/_lib/dao/class.UserMySQLDAO.php +++ b/webapp/_lib/dao/class.UserMySQLDAO.php @@ -98,6 +98,7 @@ public function updateUser($user) { ':username'=>$user->username, ':full_name'=>$user->full_name, ':avatar'=>$user->avatar, + ':gender'=>$user->gender, ':location'=>$user->location, ':description'=>$user->description, ':url'=>$user->url, @@ -113,19 +114,19 @@ public function updateUser($user) { $is_user_in_storage = false; $is_user_in_storage = $this->isUserInDB($user->user_id, $user->network); if (!$is_user_in_storage) { - $q = "INSERT INTO #prefix#users (user_id, user_name, full_name, avatar, location, description, url, "; + $q = "INSERT INTO #prefix#users (user_id, user_name, full_name, avatar, gender, location, description, url, "; $q .= "is_verified, is_protected, follower_count, post_count, ". ($has_friend_count ? "friend_count, " : "")." ". ($has_favorites_count ? "favorites_count, " : "")." ". ($has_last_post ? "last_post, " : "")." found_in, joined, network ". ($has_last_post_id ? ", last_post_id" : "").") "; - $q .= "VALUES ( :user_id, :username, :full_name, :avatar, :location, :description, :url, :is_verified, "; + $q .= "VALUES ( :user_id, :username, :full_name, :avatar, :gender, :location, :description, :url, :is_verified, "; $q .= ":is_protected, :follower_count, :post_count, ".($has_friend_count ? ":friend_count, " : "")." ". ($has_favorites_count ? ":favorites_count, " : "")." ". ($has_last_post ? ":last_post, " : "")." :found_in, :joined, :network ". ($has_last_post_id ? ", :last_post_id " : "")." )"; } else { - $q = "UPDATE #prefix#users SET full_name = :full_name, avatar = :avatar, location = :location, "; + $q = "UPDATE #prefix#users SET full_name = :full_name, avatar = :avatar, gender = :gender, location = :location, "; $q .= "user_name = :username, description = :description, url = :url, is_verified = :is_verified, "; $q .= "is_protected = :is_protected, follower_count = :follower_count, post_count = :post_count, ". ($has_friend_count ? "friend_count= :friend_count, " : "")." ". diff --git a/webapp/_lib/model/class.User.php b/webapp/_lib/model/class.User.php index 558992cf83..714e456d0f 100644 --- a/webapp/_lib/model/class.User.php +++ b/webapp/_lib/model/class.User.php @@ -54,6 +54,11 @@ class User { * @var str */ var $avatar; + /** + * + * @var str + */ + var $gender; /** * * @var location @@ -156,6 +161,7 @@ public function __construct($val = false, $found_in = false) { $this->full_name = $val['full_name']; $this->user_id = $val['user_id']; $this->avatar = $val['avatar']; + $this->gender = $val['gender']; $this->location = $val['location']; $this->description = $val['description']; $this->url = $val['url']; diff --git a/webapp/install/sql/build-db_mysql-upcoming-release.sql b/webapp/install/sql/build-db_mysql-upcoming-release.sql index 586c580069..19f559f85d 100644 --- a/webapp/install/sql/build-db_mysql-upcoming-release.sql +++ b/webapp/install/sql/build-db_mysql-upcoming-release.sql @@ -549,6 +549,7 @@ CREATE TABLE tu_users ( user_name varchar(255) NOT NULL COMMENT 'Username on a given network, like a user''s Twitter username or Facebook user name.', full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', + gender varchar(255) DEFAULT '' COMMENT 'Gender of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', diff --git a/webapp/plugins/facebook/model/class.FacebookCrawler.php b/webapp/plugins/facebook/model/class.FacebookCrawler.php index dacbc4d9a5..01a147583f 100644 --- a/webapp/plugins/facebook/model/class.FacebookCrawler.php +++ b/webapp/plugins/facebook/model/class.FacebookCrawler.php @@ -79,7 +79,7 @@ public function fetchUser($user_id, $found_in, $force_reload_from_facebook=false $user_object = null; if ($force_reload_from_facebook || !$user_dao->isUserInDB($user_id, $network)) { // Get owner user details and save them to DB - $fields = $network!='facebook page'?'id,name,about,location,website':''; + $fields = $network!='facebook page'?'id,name,gender,about,location,website':''; $user_details = FacebookGraphAPIAccessor::apiRequest('/'.$user_id, $this->access_token, $fields); if (isset($user_details)) { $user_details->network = $network; @@ -124,6 +124,7 @@ private function parseUserDetails($details) { $user_vals["user_name"] = $details->name; $user_vals["full_name"] = $details->name; $user_vals["user_id"] = $details->id; + $user_vals["gender"] = $details->gender; $user_vals["avatar"] = 'https://graph.facebook.com/'.$details->id.'/picture'; $user_vals['url'] = isset($details->website)?$details->website:''; $user_vals["follower_count"] = 0; @@ -293,6 +294,7 @@ private function processStream($stream, $network, $page_number) { "post_id"=>$post_id, "author_username"=>$profile->username, "author_fullname"=>$profile->username, + "author_gender"=>$profile->gender, "author_avatar"=>$profile->avatar, "author_user_id"=>$p->from->id, "post_text"=>isset($p->message)?$p->message:'', @@ -364,6 +366,7 @@ private function processStream($stream, $network, $page_number) { $comment_to_process = array("post_id"=>$comment_id, "author_username"=>$c->from->name, "author_fullname"=>$c->from->name, + "author_gender"=>$c->from->gender, "author_avatar"=>'https://graph.facebook.com/'.$c->from->id.'/picture', "author_user_id"=>$c->from->id,"post_text"=>$c->message, "pub_date"=>$c->created_time, "in_reply_to_user_id"=>$profile->user_id, @@ -413,6 +416,7 @@ private function processStream($stream, $network, $page_number) { if (!isset($comment_in_storage)) { $comment_to_process = array("post_id"=>$comment_id, "author_username"=>$c->from->name, "author_fullname"=>$c->from->name, + "author_gender"=>$c->from->gender, "author_avatar"=>'https://graph.facebook.com/'. $c->from->id.'/picture', "author_user_id"=>$c->from->id, "post_text"=>$c->message, "pub_date"=>$c->created_time, @@ -470,7 +474,7 @@ private function processStream($stream, $network, $page_number) { if (isset($l->name) && isset($l->id)) { //Get users $user_to_add = array("user_name"=>$l->name, "full_name"=>$l->name, - "user_id"=>$l->id, "avatar"=>'https://graph.facebook.com/'.$l->id. + "user_id"=>$l->id, "gender"=>$l->gender, "avatar"=>'https://graph.facebook.com/'.$l->id. '/picture', "location"=>'', "description"=>'', "url"=>'', "is_protected"=>1, "follower_count"=>0, "post_count"=>0, "joined"=>'', "found_in"=>"Likes", "network"=>'facebook'); //Users are always set to network=facebook @@ -518,7 +522,7 @@ private function processStream($stream, $network, $page_number) { if (isset($l->name) && isset($l->id)) { //Get users $user_to_add = array("user_name"=>$l->name, "full_name"=>$l->name, - "user_id"=>$l->id, "avatar"=>'https://graph.facebook.com/'.$l->id. + "user_id"=>$l->id, "gender"=>$l->gender, "avatar"=>'https://graph.facebook.com/'.$l->id. '/picture', "location"=>'', "description"=>'', "url"=>'', "is_protected"=>1, "follower_count"=>0, "post_count"=>0, "joined"=>'', "found_in"=>"Likes", "network"=>'facebook'); //Users are always set to network=facebook @@ -616,6 +620,7 @@ private function storePostAndAuthor($post, $post_source){ if (isset($user_object)) { $post["author_username"] = $user_object->full_name; $post["author_fullname"] = $user_object->full_name; + $post["author_gender"] = $user_object->gender; $post["author_avatar"] = $user_object->avatar; $post["location"] = $user_object->location; } From 3359c46068bc9c34ae3e3b16ca8f49080817b7cc Mon Sep 17 00:00:00 2001 From: anna Date: Sun, 1 Jun 2014 23:24:25 +0300 Subject: [PATCH 03/40] Changes for gender field in Crawler --- webapp/_lib/model/class.User.php | 4 +++- .../install/sql/build-db_mysql-upcoming-release.sql | 2 +- webapp/install/sql/build-db_mysql.sql | 1 + .../facebook/model/class.FacebookCrawler.php | 13 ++++++------- .../model/class.FacebookGraphAPIAccessor.php | 5 +++-- .../plugins/facebook/model/class.FacebookPlugin.php | 2 +- 6 files changed, 15 insertions(+), 12 deletions(-) diff --git a/webapp/_lib/model/class.User.php b/webapp/_lib/model/class.User.php index 714e456d0f..bb108e8a9f 100644 --- a/webapp/_lib/model/class.User.php +++ b/webapp/_lib/model/class.User.php @@ -161,7 +161,9 @@ public function __construct($val = false, $found_in = false) { $this->full_name = $val['full_name']; $this->user_id = $val['user_id']; $this->avatar = $val['avatar']; - $this->gender = $val['gender']; + if (isset($val['gender'])) { + $this->gender = $val['gender']; + } $this->location = $val['location']; $this->description = $val['description']; $this->url = $val['url']; diff --git a/webapp/install/sql/build-db_mysql-upcoming-release.sql b/webapp/install/sql/build-db_mysql-upcoming-release.sql index 19f559f85d..67dde4ae10 100644 --- a/webapp/install/sql/build-db_mysql-upcoming-release.sql +++ b/webapp/install/sql/build-db_mysql-upcoming-release.sql @@ -549,7 +549,7 @@ CREATE TABLE tu_users ( user_name varchar(255) NOT NULL COMMENT 'Username on a given network, like a user''s Twitter username or Facebook user name.', full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', - gender varchar(255) DEFAULT '' COMMENT 'Gender of user', + gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', diff --git a/webapp/install/sql/build-db_mysql.sql b/webapp/install/sql/build-db_mysql.sql index ec7cc1b773..70a7a90807 100644 --- a/webapp/install/sql/build-db_mysql.sql +++ b/webapp/install/sql/build-db_mysql.sql @@ -526,6 +526,7 @@ CREATE TABLE tu_users ( user_name varchar(255) NOT NULL COMMENT 'Username on a given network, like a user''s Twitter username or Facebook user name.', full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', + gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', diff --git a/webapp/plugins/facebook/model/class.FacebookCrawler.php b/webapp/plugins/facebook/model/class.FacebookCrawler.php index 01a147583f..71a2238900 100644 --- a/webapp/plugins/facebook/model/class.FacebookCrawler.php +++ b/webapp/plugins/facebook/model/class.FacebookCrawler.php @@ -78,9 +78,9 @@ public function fetchUser($user_id, $found_in, $force_reload_from_facebook=false $user_dao = DAOFactory::getDAO('UserDAO'); $user_object = null; if ($force_reload_from_facebook || !$user_dao->isUserInDB($user_id, $network)) { - // Get owner user details and save them to DB + // Get owner user details and save them to DB $fields = $network!='facebook page'?'id,name,gender,about,location,website':''; - $user_details = FacebookGraphAPIAccessor::apiRequest('/'.$user_id, $this->access_token, $fields); + $user_details = FacebookGraphAPIAccessor::apiRequest('/'.$user_id, $this->access_token, $fields ); if (isset($user_details)) { $user_details->network = $network; } @@ -226,7 +226,7 @@ private function processStream($stream, $network, $page_number) { $post_dao = DAOFactory::getDAO('PostDAO'); - foreach ($stream->data as $index=>$p) { + foreach ($stream->data as $index=>$p) { $post_id = explode("_", $p->id); $post_id = $post_id[1]; $this->logger->logInfo("Beginning to process ".$post_id.", post ".($index+1)." of ".count($stream->data). @@ -294,7 +294,6 @@ private function processStream($stream, $network, $page_number) { "post_id"=>$post_id, "author_username"=>$profile->username, "author_fullname"=>$profile->username, - "author_gender"=>$profile->gender, "author_avatar"=>$profile->avatar, "author_user_id"=>$p->from->id, "post_text"=>isset($p->message)?$p->message:'', @@ -470,7 +469,7 @@ private function processStream($stream, $network, $page_number) { $post_likes = $p->likes->data; $post_likes_count = isset($post_likes)?sizeof($post_likes):0; if (is_array($post_likes) && sizeof($post_likes) > 0) { - foreach ($post_likes as $l) { + foreach ($post_likes as $l) { if (isset($l->name) && isset($l->id)) { //Get users $user_to_add = array("user_name"=>$l->name, "full_name"=>$l->name, @@ -516,11 +515,12 @@ private function processStream($stream, $network, $page_number) { $api_call = 'https://graph.facebook.com/'.$p->from->id.'_'.$post_id.'/likes?access_token='. $this->access_token.$offset_str; do { - $likes_stream = FacebookGraphAPIAccessor::rawApiRequest($api_call); + $likes_stream = FacebookGraphAPIAccessor::rawApiRequest($ap_call); if (isset($likes_stream) && is_array($likes_stream->data)) { foreach ($likes_stream->data as $l) { if (isset($l->name) && isset($l->id)) { //Get users + $user_to_add = array("user_name"=>$l->name, "full_name"=>$l->name, "user_id"=>$l->id, "gender"=>$l->gender, "avatar"=>'https://graph.facebook.com/'.$l->id. '/picture', "location"=>'', "description"=>'', "url"=>'', "is_protected"=>1, @@ -620,7 +620,6 @@ private function storePostAndAuthor($post, $post_source){ if (isset($user_object)) { $post["author_username"] = $user_object->full_name; $post["author_fullname"] = $user_object->full_name; - $post["author_gender"] = $user_object->gender; $post["author_avatar"] = $user_object->avatar; $post["location"] = $user_object->location; } diff --git a/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php b/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php index 3309ce5ffa..28ca1a1e09 100644 --- a/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php +++ b/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php @@ -47,7 +47,8 @@ public static function apiRequest($path, $access_token, $fields=null) { if ($fields != null ) { $url = $url.'&fields='.$fields; } - $result = Utils::getURLContents($url); + $result = Utils::getURLContents($url); + return json_decode($result); } /** @@ -61,7 +62,7 @@ public static function apiRequest($path, $access_token, $fields=null) { */ public static function rawApiRequest($path, $decode_json=true) { if ($decode_json) { - $result = Utils::getURLContents($path); + $result = Utils::getURLContents($path); return json_decode($result); } else { return Utils::getURLContents($path); diff --git a/webapp/plugins/facebook/model/class.FacebookPlugin.php b/webapp/plugins/facebook/model/class.FacebookPlugin.php index 9ce75a0b55..7b194d3d0a 100644 --- a/webapp/plugins/facebook/model/class.FacebookPlugin.php +++ b/webapp/plugins/facebook/model/class.FacebookPlugin.php @@ -81,7 +81,7 @@ public function crawl() { $tokens = $owner_instance_dao->getOAuthTokens($instance->id); $access_token = $tokens['oauth_access_token']; - + echo $access_token; $instance_dao->updateLastRun($instance->id); $facebook_crawler = new FacebookCrawler($instance, $access_token, $max_crawl_time); $dashboard_module_cacher = new DashboardModuleCacher($instance); From a56bc6fb1c9c56ac351b8e4644d684b947e7e5a5 Mon Sep 17 00:00:00 2001 From: anna Date: Wed, 4 Jun 2014 13:42:59 +0300 Subject: [PATCH 04/40] Gender field tests in TestOfFacebookCrawler --- .../facebook/model/class.FacebookCrawler.php | 4 +- .../model/class.FacebookGraphAPIAccessor.php | 5 +- .../facebook/model/class.FacebookPlugin.php | 1 - .../facebook/tests/TestOfFacebookCrawler.php | 13 +- .../classes/mock.FacebookGraphAPIAccessor.php | 3 +- .../testdata/107982202636989-metadata=true | 1 + .../facebook/tests/testdata/1316858804 | 1 + .../133954286636768_144568048938151_comments | 75 +++-- .../133954286636768_144568048938151_likes | 6 +- ...5180192497884_comments-limit=25-after=MjY= | 3 +- ...5180192497884_comments-limit=25-after=NTQ= | 76 +++-- .../tests/testdata/133954286636768_feed | 300 ++++++++++++------ .../tests/testdata/133954286636768_posts | 12 +- ...44568048938151_comments-limit=25-offset=25 | 75 +++-- ...44568048938151_comments-limit=25-offset=50 | 63 ++-- .../plugins/facebook/tests/testdata/500941232 | 1 + .../plugins/facebook/tests/testdata/606837591 | 1 + .../606837591_153956564638648_comments | 57 ++-- .../facebook/tests/testdata/606837591_feed | 102 ++++-- .../facebook/tests/testdata/606837591_friends | 3 +- .../facebook/tests/testdata/606837591_posts | 39 ++- .../plugins/facebook/tests/testdata/653790081 | 4 +- .../plugins/facebook/tests/testdata/691270740 | 3 +- .../plugins/facebook/tests/testdata/729597743 | 1 + .../facebook/tests/testdata/729597743_feed | 3 +- .../facebook/tests/testdata/729597743_friends | 3 +- .../facebook/tests/testdata/729597743_posts | 3 +- ...43_posts-limit=25-until=1313604329-since=0 | 2 +- ...1728144886356_comments-limit=25-after=Njk= | 60 ++-- .../testdata/7568536355_437612826355_comments | 42 ++- .../testdata/7568536355_437894121355_comments | 12 +- .../testdata/7568536355_437894121355_likes | 6 +- .../testdata/7568536355_437900891355_comments | 24 +- .../facebook/tests/testdata/7568536355_feed | 78 +++-- .../facebook/tests/testdata/7568536355_posts | 15 +- ...til=2010-09-29T19%3A49%3A57%2B0000-since=0 | 9 +- .../plugins/facebook/tests/testdata/833828624 | 1 + webapp/plugins/facebook/tests/testdata/me | 3 +- webapp/session/forgot.php | 2 +- 39 files changed, 739 insertions(+), 373 deletions(-) diff --git a/webapp/plugins/facebook/model/class.FacebookCrawler.php b/webapp/plugins/facebook/model/class.FacebookCrawler.php index 71a2238900..84c8162cec 100644 --- a/webapp/plugins/facebook/model/class.FacebookCrawler.php +++ b/webapp/plugins/facebook/model/class.FacebookCrawler.php @@ -81,6 +81,7 @@ public function fetchUser($user_id, $found_in, $force_reload_from_facebook=false // Get owner user details and save them to DB $fields = $network!='facebook page'?'id,name,gender,about,location,website':''; $user_details = FacebookGraphAPIAccessor::apiRequest('/'.$user_id, $this->access_token, $fields ); + if (isset($user_details)) { $user_details->network = $network; } @@ -316,6 +317,7 @@ private function processStream($stream, $network, $page_number) { if (isset($p->source) || isset($p->link)) { // there's a link to store $link_url = (isset($p->source))?$p->source:$p->link; + $link = new Link(array( "url"=>$link_url, "expanded_url"=>'', @@ -478,6 +480,7 @@ private function processStream($stream, $network, $page_number) { "follower_count"=>0, "post_count"=>0, "joined"=>'', "found_in"=>"Likes", "network"=>'facebook'); //Users are always set to network=facebook array_push($thinkup_users, $user_to_add); + $fav_to_add = array("favoriter_id"=>$l->id, "network"=>$network, "author_user_id"=>$profile->user_id, "post_id"=>$post_id); @@ -520,7 +523,6 @@ private function processStream($stream, $network, $page_number) { foreach ($likes_stream->data as $l) { if (isset($l->name) && isset($l->id)) { //Get users - $user_to_add = array("user_name"=>$l->name, "full_name"=>$l->name, "user_id"=>$l->id, "gender"=>$l->gender, "avatar"=>'https://graph.facebook.com/'.$l->id. '/picture', "location"=>'', "description"=>'', "url"=>'', "is_protected"=>1, diff --git a/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php b/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php index 28ca1a1e09..9f9534aa7c 100644 --- a/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php +++ b/webapp/plugins/facebook/model/class.FacebookGraphAPIAccessor.php @@ -47,8 +47,7 @@ public static function apiRequest($path, $access_token, $fields=null) { if ($fields != null ) { $url = $url.'&fields='.$fields; } - $result = Utils::getURLContents($url); - + $result = Utils::getURLContents($url); return json_decode($result); } /** @@ -62,7 +61,7 @@ public static function apiRequest($path, $access_token, $fields=null) { */ public static function rawApiRequest($path, $decode_json=true) { if ($decode_json) { - $result = Utils::getURLContents($path); + $result = Utils::getURLContents($path); return json_decode($result); } else { return Utils::getURLContents($path); diff --git a/webapp/plugins/facebook/model/class.FacebookPlugin.php b/webapp/plugins/facebook/model/class.FacebookPlugin.php index 7b194d3d0a..9237d042d9 100644 --- a/webapp/plugins/facebook/model/class.FacebookPlugin.php +++ b/webapp/plugins/facebook/model/class.FacebookPlugin.php @@ -81,7 +81,6 @@ public function crawl() { $tokens = $owner_instance_dao->getOAuthTokens($instance->id); $access_token = $tokens['oauth_access_token']; - echo $access_token; $instance_dao->updateLastRun($instance->id); $facebook_crawler = new FacebookCrawler($instance, $access_token, $max_crawl_time); $dashboard_module_cacher = new DashboardModuleCacher($instance); diff --git a/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php b/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php index 72c9a29b5a..58b868dcdc 100644 --- a/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php +++ b/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php @@ -136,6 +136,7 @@ public function testFetchUser() { $this->assertEqual($user->username, 'Gina Trapani'); $this->assertEqual($user->full_name, 'Gina Trapani'); $this->assertEqual($user->user_id, 606837591); + $this->assertEqual($user->gender, "female"); $this->assertEqual($user->location, "San Diego, California"); $this->assertEqual($user->description, 'Blogger and software developer. Project Director at Expert Labs. Co-host of This Week in Google.'); @@ -197,6 +198,7 @@ public function testFetchPostsAndRepliesForProfile1() { $this->assertEqual($user->user_id, '606837591'); $this->assertEqual($user->avatar, 'https://graph.facebook.com/606837591/picture'); $this->assertTrue($user->is_protected); + $this->assertEqual($user->gender, 'female'); $this->assertEqual($user->location, 'San Diego, California'); //sleep(1000); $user = $user_dao->getUserByName('Mitch Wagner', 'facebook'); @@ -204,6 +206,7 @@ public function testFetchPostsAndRepliesForProfile1() { $this->assertEqual($user->user_id, '697015835'); $this->assertEqual($user->avatar, 'https://graph.facebook.com/697015835/picture'); $this->assertTrue($user->is_protected); + $this->assertEqual($user->gender, 'male'); $this->assertEqual($user->location, 'La Mesa, California'); $user = $user_dao->getUserByName('Jeffrey McManus', 'facebook'); @@ -211,6 +214,7 @@ public function testFetchPostsAndRepliesForProfile1() { $this->assertEqual($user->user_id, '691270740'); $this->assertEqual($user->avatar, 'https://graph.facebook.com/691270740/picture'); $this->assertTrue($user->is_protected); + $this->assertEqual($user->gender, 'male'); $this->assertEqual($user->location, ''); } @@ -226,10 +230,9 @@ public function testFetchPostsAndRepliesForProfile2() { $post = $post_dao->getPost('10150328374252744', 'facebook'); $this->assertEqual($post->post_text, ''); $this->assertEqual(sizeof($post->links), 1); - $this->assertEqual($post->links[0]->url, + $this->assertEqual($post->links[0]->url, 'http://www.youtube.com/v/DC1g_Aq3dUc?feature=autoshare&version=3&autohide=1&autoplay=1'); - $this->assertEqual($post->links[0]->expanded_url, - ''); + $this->assertEqual($post->links[0]->expanded_url,''); $this->assertEqual($post->links[0]->caption, 'Liked on www.youtube.com'); $this->assertEqual($post->links[0]->description, 'A fan made trailer for the Warner Bros. production of Superman Returns. Fan trailer produced and edited by '. @@ -289,8 +292,7 @@ public function testFetchPostsAndRepliesForPage() { $this->assertEqual(sizeof($post->links), 1); $this->assertEqual($post->links[0]->url, 'http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks'); - $this->assertEqual($post->links[0]->expanded_url, - ''); + $this->assertEqual($post->links[0]->expanded_url, ''); $this->assertEqual($post->links[0]->image_src, 'http://platform.ak.fbcdn.net/www/app_full_proxy.php?app=45439413586&v=1&size=z&cksum=7de062ac249fe7caef80f66'. 'f49a38818&src=http%3A%2F%2Fcache-02.gawkerassets.com%2Fassets%2Fimages%2F17%2F2010%2F10%2F160x120_jailbreak-'. @@ -305,7 +307,6 @@ public function testFetchPostsAndRepliesForPage() { $this->assertEqual($user->full_name, 'Matthew Fleisher'); $this->assertEqual($user->network, 'facebook'); $this->assertTrue($user->is_protected); - $user = $ud->getUserByName('Matthew Fleisher', 'facebook page'); $this->assertEqual($user, null); diff --git a/webapp/plugins/facebook/tests/classes/mock.FacebookGraphAPIAccessor.php b/webapp/plugins/facebook/tests/classes/mock.FacebookGraphAPIAccessor.php index e9b0558c7f..8ac9869212 100644 --- a/webapp/plugins/facebook/tests/classes/mock.FacebookGraphAPIAccessor.php +++ b/webapp/plugins/facebook/tests/classes/mock.FacebookGraphAPIAccessor.php @@ -79,12 +79,11 @@ private static function decodeFileContents($file_path, $decode_json=true) { */ public static function rawApiRequest($path, $decode_json=true) { $url = $path; - + $FAUX_DATA_PATH = THINKUP_WEBAPP_PATH.'plugins/facebook/tests/testdata/'; $url = preg_replace('/([\?\&])access_token\=[^\?\&]+([\?\&])*/', "$1", $url); $url = preg_replace('/[\?\&]$/', '', $url); - $url = str_replace('https://graph.facebook.com/', '', $url); //$url = str_replace('?access_token=fauxaccesstoken', '', $url); $url = str_replace('/', '_', $url); diff --git a/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true b/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true index e6112015bb..dc81626b1b 100644 --- a/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true +++ b/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true @@ -1,6 +1,7 @@ { "id": "107982202636989", "name": "Sample Cause", + "gender":"", "picture": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/276798_107982202636989_4098521_s.jpg", "link": "https://www.facebook.com/pages/Sample-Cause/107982202636989", "likes": 1, diff --git a/webapp/plugins/facebook/tests/testdata/1316858804 b/webapp/plugins/facebook/tests/testdata/1316858804 index cbeacc304c..87f1748652 100644 --- a/webapp/plugins/facebook/tests/testdata/1316858804 +++ b/webapp/plugins/facebook/tests/testdata/1316858804 @@ -3,6 +3,7 @@ "name": "Zack Murtha", "first_name": "Zack", "last_name": "Murtha", + "gender": "male", "link": "http://www.facebook.com/profile.php?id=1316858804", "about": "\"Life is tough, but it's tougher if you're stupid. \"", "locale": "en_US", diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments index 4d7a932d66..4dcdffe403 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments @@ -4,7 +4,8 @@ "id": "144568048938151_1230814", "from": { "name": "Brian Poole", - "id": "510971571" + "id": "510971571", + "gender": "male" }, "message": "Congrats to all and happy hacking!", "created_time": "2011-02-06T00:06:11+0000" @@ -13,7 +14,8 @@ "id": "144568048938151_1230823", "from": { "name": "Aditya Permana", - "id": "1302210867" + "id": "1302210867", + "gender": "female" }, "message": "first", "created_time": "2011-02-06T00:07:23+0000" @@ -22,7 +24,8 @@ "id": "144568048938151_1230826", "from": { "name": "Imen En Tu Estereo", - "id": "100000576705814" + "id": "100000576705814", + "gender": "male" }, "message": "yeah\u00a1\u00a1", "created_time": "2011-02-06T00:07:32+0000" @@ -31,7 +34,8 @@ "id": "144568048938151_1230836", "from": { "name": "Jarrod Parker", - "id": "24409159" + "id": "24409159", + "gender": "male" }, "message": "lmao only 150 made it out of 1673 or whatever it was", "created_time": "2011-02-06T00:08:49+0000" @@ -40,7 +44,8 @@ "id": "144568048938151_1230837", "from": { "name": "Jarrod Parker", - "id": "24409159" + "id": "24409159", + "gender": "male" }, "message": "well, got one right", "created_time": "2011-02-06T00:09:00+0000" @@ -49,7 +54,8 @@ "id": "144568048938151_1230852", "from": { "name": "Ville Hellman", - "id": "517413587" + "id": "517413587", + "gender": "male" }, "message": "Congrats to the top 150 for correct solutions, disappointed that some problem definitions changed halfway through the competition...", "created_time": "2011-02-06T00:11:16+0000", @@ -59,7 +65,8 @@ "id": "144568048938151_1230861", "from": { "name": "Gutzsu Lyla Yusuf", - "id": "100000058303131" + "id": "100000058303131", + "gender": "female" }, "message": "prettttttt", "created_time": "2011-02-06T00:12:25+0000" @@ -68,7 +75,8 @@ "id": "144568048938151_1230878", "from": { "name": "Steve Wallis", - "id": "818460536" + "id": "818460536", + "gender": "male" }, "message": "It would be nice if they could give us the stats on how many qualified people actually participated in each round. (e.g. this round had 1,673 qualified people. How many of them actually participated during the 3-hour duration? It's obviously more than the 364 people who submitted something.)", "created_time": "2011-02-06T00:14:42+0000", @@ -78,7 +86,8 @@ "id": "144568048938151_1230880", "from": { "name": "Andre Holzner", - "id": "100000773664809" + "id": "100000773664809", + "gender": "male" }, "message": "interesting.. I see one O(N *M) solution for problem 1 which has passed...", "created_time": "2011-02-06T00:15:35+0000", @@ -88,7 +97,8 @@ "id": "144568048938151_1230886", "from": { "name": "Brian Poole", - "id": "510971571" + "id": "510971571", + "gender": "male" }, "message": "So I've got a biased idea! How about everyone who participated in round 2 gets a tshirt. I mean.. it's only 64 more tshirts than anticipated!", "created_time": "2011-02-06T00:16:09+0000", @@ -98,7 +108,8 @@ "id": "144568048938151_1230887", "from": { "name": "Audrey Pierrot", - "id": "667404345" + "id": "667404345", + "gender": "male" }, "message": "I can't :(((", "created_time": "2011-02-06T00:16:13+0000" @@ -107,7 +118,8 @@ "id": "144568048938151_1230888", "from": { "name": "Francisco Fernandez Berrocal", - "id": "1452734980" + "id": "1452734980", + "gender": "male" }, "message": "Too brutal questions!", "created_time": "2011-02-06T00:16:26+0000", @@ -117,7 +129,8 @@ "id": "144568048938151_1230890", "from": { "name": "Arnab Bose", - "id": "665721288" + "id": "665721288", + "gender": "male" }, "message": "Andre - Interesting... where?", "created_time": "2011-02-06T00:16:53+0000", @@ -127,7 +140,8 @@ "id": "144568048938151_1230891", "from": { "name": "Daniel Saunders", - "id": "1123122807" + "id": "1123122807", + "gender": "male" }, "message": "Google chrome ......your mine", "created_time": "2011-02-06T00:17:07+0000" @@ -136,7 +150,8 @@ "id": "144568048938151_1230894", "from": { "name": "Eric Alejandro Destefanis", - "id": "1123359465" + "id": "1123359465", + "gender": "male" }, "message": "Hey! somehow, my source is in the place of my output (and the output in the place of my source)... does anyone know if this is rejudgable? Or who may I email?", "created_time": "2011-02-06T00:18:09+0000" @@ -145,7 +160,8 @@ "id": "144568048938151_1230907", "from": { "name": "Hongliang Liu", - "id": "682021444" + "id": "682021444", + "gender": "female" }, "message": "\u0040Eric, just forget about it. Have fun in your weekend.", "created_time": "2011-02-06T00:20:44+0000", @@ -155,7 +171,8 @@ "id": "144568048938151_1230919", "from": { "name": "Arnab Bose", - "id": "665721288" + "id": "665721288", + "gender": "male" }, "message": "Eric, I'd say it should definitely be considered (though that's my personal opinion). Hopefully the organizers will see your post here!", "created_time": "2011-02-06T00:22:58+0000", @@ -165,7 +182,8 @@ "id": "144568048938151_1230928", "from": { "name": "Kamil Sadkowski", - "id": "100000694633914" + "id": "100000694633914", + "gender": "female" }, "message": "\u0040Andre Holzner I see even more than one.", "created_time": "2011-02-06T00:25:56+0000", @@ -175,7 +193,8 @@ "id": "144568048938151_1230935", "from": { "name": "Arnab Bose", - "id": "665721288" + "id": "665721288", + "gender": "male" }, "message": "\u0040Andre, Kamil - I wonder what computer / language they were using. In my system, which is fairly modern, running _empty_ nested loop of 250000 iterations each takes (estimated) 30-40 minutes.", "created_time": "2011-02-06T00:27:58+0000" @@ -184,7 +203,8 @@ "id": "144568048938151_1230936", "from": { "name": "Greg Knox", - "id": "510782039" + "id": "510782039", + "gender": "male" }, "message": "After looking at some of these solutions, don't feel so bad about not getting any of them right -- Well done anyone who actually got any of these things :)", "created_time": "2011-02-06T00:28:14+0000", @@ -194,7 +214,8 @@ "id": "144568048938151_1230946", "from": { "name": "Jozef Vodicka", - "id": "1240057308" + "id": "1240057308", + "gender": "male" }, "message": "Congrats guys, enjoy Palo Alto & Hacker Cup T-Shirt :)", "created_time": "2011-02-06T00:30:37+0000" @@ -203,7 +224,8 @@ "id": "144568048938151_1230952", "from": { "name": "Erik Ramsgaard Wognsen", - "id": "738668796" + "id": "738668796", + "gender": "male" }, "message": "\u0040Brian Poole: 364 is the number of people who uploaded anything; the number of participants is larger. But yeah, t-shirts ftw :-P", "created_time": "2011-02-06T00:31:20+0000" @@ -212,7 +234,8 @@ "id": "144568048938151_1230956", "from": { "name": "Robert Burke", - "id": "23917679" + "id": "23917679", + "gender": "male" }, "message": "\u0040Brian: No, a lot of people did the contest and got 0 correct answers and 0 wrong answers. 364 is only the number of people who got 1 or more answers.", "created_time": "2011-02-06T00:32:08+0000" @@ -221,7 +244,8 @@ "id": "144568048938151_1230959", "from": { "name": "Steve Wallis", - "id": "818460536" + "id": "818460536", + "gender": "male" }, "message": "\u0040Andre, Kamil, Arnab... perhaps they knew a way to download the source file without starting the timer, like in previous rounds?", "created_time": "2011-02-06T00:33:55+0000" @@ -230,7 +254,8 @@ "id": "144568048938151_1230965", "from": { "name": "Edward T. Tonai", - "id": "520613319" + "id": "520613319", + "gender": "male" }, "message": "I think that the 5 people who solved 2 problems who weren't in the top 25 should get invited to the finals anyway. I wasn't one of them, btw. Considering how many people failed at every stage, and how we weren't even close to 3000 in round 2, and only 150 are getting a T-Shirt. I think solving 2 is a major major accomplishment!", "created_time": "2011-02-06T00:37:01+0000", diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes index 2ee656a050..d147587cb3 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes @@ -2,11 +2,13 @@ "data": [ { "id": "100002586603826", - "name": "Sade Tolgahan" + "name": "Sade Tolgahan", + "gender": "male" }, { "id": "100000931059876", - "name": "Kosso Thierry" + "name": "Kosso Thierry", + "gender": "male" }, ], "paging": { diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= index cc3a53bfac..07d5677493 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= @@ -4,7 +4,8 @@ "id": "775180192497884_104932845", "from": { "name": "Ayush Shrivastava", - "id": "100005963640296" + "id": "100005963640296", + "gender": "female" }, "message": "Do you want to hack somebody's facebook account? Use this program that can steal facebook password 100% Working here http://fbhackerz.blogspot.com/", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= index af3ed972bc..9ef7051ff7 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= @@ -4,7 +4,8 @@ "id": "775180192497884_104932844", "from": { "name": "Ayush Shrivastava", - "id": "100005963640296" + "id": "100005963640296", + "gender": "female" }, "message": "Do you want to hack somebody's facebook account? Use this program that can steal facebook password 100% Working here http://fbhackerz.blogspot.com/", "can_remove": false, @@ -16,7 +17,8 @@ "id": "775180192497884_104932623", "from": { "name": "Michael Gidron", - "id": "1144454524" + "id": "1144454524", + "gender": "male" }, "message": "wow.. I over looked the single # sign as being a valid square.", "can_remove": false, @@ -28,7 +30,9 @@ "id": "775180192497884_104932083", "from": { "name": "Hafiz Ahmad", - "id": "100000987379715" + "id": "100000987379715", + "gender": "male" + }, "message": "<<<<<<<<\nHack facebook account online,You can hack facebook passwords for free with this online hacking tool. No download needed,Hack facebook account online,check this site :- http://www.hack-fb-online.com\n<<<<<<<<", "can_remove": false, @@ -40,7 +44,8 @@ "id": "775180192497884_104931489", "from": { "name": "IntērnàTïônàl Bräñðêð Bâçhíì", - "id": "100002169050570" + "id": "100002169050570", + "gender": "" }, "message": "i need help. if any know how to to hack fb page. inbox me :'(", "can_remove": false, @@ -52,7 +57,8 @@ "id": "775180192497884_104930825", "from": { "name": "Marcin Krnąbny", - "id": "100001089217022" + "id": "100001089217022", + "gender": "male" }, "message": "Download: http://www.sharfiles.com/download/2/2983000/Hack", "can_remove": false, @@ -64,7 +70,8 @@ "id": "775180192497884_104930684", "from": { "name": "Anubhav Joshi", - "id": "100000429699776" + "id": "100000429699776", + "gender": "male" }, "message": "can anybody tell what does source with a red cross signify??? Please reply..", "can_remove": false, @@ -76,7 +83,8 @@ "id": "775180192497884_104930656", "from": { "name": "Yoandry Martinez Rodriguez", - "id": "100000071074557" + "id": "100000071074557", + "gender": "male" }, "message": "I think -with all respect- you my friend did not completely understood the problem.", "can_remove": false, @@ -88,7 +96,8 @@ "id": "775180192497884_104930589", "from": { "name": "Anis Imanis", - "id": "100001420300757" + "id": "100001420300757", + "gender": "male" }, "message": "dam i forget it !", "can_remove": false, @@ -100,7 +109,8 @@ "id": "775180192497884_104930496", "from": { "name": "Narendra Yadav", - "id": "100005808700499" + "id": "100005808700499", + "gender": "female" }, "message": "Facebook Hacker Cup Pl upload input and outfull file of these problems.", "message_tags": [ @@ -121,7 +131,8 @@ "id": "775180192497884_104930475", "from": { "name": "Atul Anand", - "id": "855354123" + "id": "855354123", + "gender": "male" }, "message": "for square detection problem, i tweaked the classic algorithm of finding maximum square within a matrix with all ones i.e min(DP[i-1][j-1],DP[i-1][j] , DP[i][j-])+1 if input[i][j]==1.To make sure that we have found the max square , we just need to take care that DP[i-1][j-1],DP[i][j-1],DP[i-1][j] are equal . keep updating x-axis square boundary and y-axis square boundary.now just traverse the whole input[][] once again so that there is no more '1' (i.e #) expect the final square bounday found using DP[][].", "can_remove": false, @@ -133,7 +144,8 @@ "id": "775180192497884_104930266", "from": { "name": "Diego Arcos", - "id": "100006184567958" + "id": "100006184567958", + "gender": "male" }, "message": "Alejandro R. Arzola ya viste los problemas tipo icpc, y las soluciones!", "message_tags": [ @@ -154,7 +166,8 @@ "id": "775180192497884_104930125", "from": { "name": "Muhammad Ridwan Apriansyah", - "id": "100000075861819" + "id": "100000075861819", + "gender": "male" }, "message": "Well i prefer to use deque and do some simple simulation to attack problem 2 :v", "can_remove": false, @@ -166,7 +179,8 @@ "id": "775180192497884_104929872", "from": { "name": "Eduardo Cuesta", - "id": "100001049452062" + "id": "100001049452062", + "gender": "male" }, "message": "I have a question about the following assertion in Tennison problem:\n\n\"Luckily for Tennison, whenever he wins a set, the probability that there will be sun increases by pu with probability pw. Unfortunately, when Tennison loses a set, the probability of sun decreases by pd with probability pl.\"\n\nDoes this mean that when Tennison wins a set (that is P(win) is 1) then P(sun) += pu * pw else (that is 1 - P(win) is 0) then P(sun) -= pd * pl?\n\nIf so then the problem can be solved with less temporal and spatial complexity by a FORMULA.", "can_remove": false, @@ -178,7 +192,8 @@ "id": "775180192497884_104929781", "from": { "name": "Muhammad Shufi", - "id": "100006628740846" + "id": "100006628740846", + "gender": "male" }, "message": "Nice", "can_remove": false, @@ -190,7 +205,8 @@ "id": "775180192497884_104929756", "from": { "name": "Anubhav Joshi", - "id": "100000429699776" + "id": "100000429699776", + "gender": "male" }, "message": "why is my second question wrong it uses the same algorithm????", "can_remove": false, @@ -202,7 +218,8 @@ "id": "775180192497884_104929542", "from": { "name": "Victor Borisov", - "id": "100001024632246" + "id": "100001024632246", + "gender": "male" }, "message": "Третья задача это кабзец какой-то просто!", "can_remove": false, @@ -214,7 +231,8 @@ "id": "775180192497884_104929509", "from": { "name": "Omar Rivera", - "id": "1565831002" + "id": "1565831002", + "gender": "male" }, "message": "The order players in Basketball game result is important?", "can_remove": false, @@ -226,7 +244,8 @@ "id": "775180192497884_104929449", "from": { "name": "Baljeet Singh", - "id": "100007113308231" + "id": "100007113308231", + "gender": "male" }, "message": "My Solution for Square Detector give the same output as accepted solution but My final solution is not accepted.Correct me if I am wrong.Thanks in advance. http://ideone.com/tjcp0D", "can_remove": false, @@ -238,7 +257,8 @@ "id": "775180192497884_104929272", "from": { "name": "Durgesh Kumar", - "id": "100001847357742" + "id": "100001847357742", + "gender": "male" }, "message": "the 4th case is not cleared...... \"sixth decimal place\"... output gives Case #4: 0.999954 but Case #4: 0.999956. why??", "can_remove": false, @@ -250,7 +270,8 @@ "id": "775180192497884_104929213", "from": { "name": "Ollo Akhtom", - "id": "100003231711648" + "id": "100003231711648", + "gender": "male" }, "message": "I used the same approach stated above.But the Fourth case gives me wrong output for the sixth decimal place. My output gives Case #4: 0.999954 .It should have been Case #4: 0.999956 , I don't know why ?", "can_remove": false, @@ -262,7 +283,8 @@ "id": "775180192497884_104929196", "from": { "name": "David Machaj", - "id": "6203047" + "id": "6203047", + "gender": "male" }, "message": "I agree with the \"run out of time\" comment for Tennyson. At least half of the time I spent on that problems was optimizing and parallelizing it to handle 100 cases of 100 rounds to be sure that my program could finish in under 6 minutes (C#). In the end I only got 20 cases and it took 15 seconds to run. ", "can_remove": false, @@ -274,7 +296,8 @@ "id": "775180192497884_104929194", "from": { "name": "Zakka Fauzan Muhammad", - "id": "1177864071" + "id": "1177864071", + "gender": "male" }, "message": "can anyone explain the third answer in more detail?", "can_remove": false, @@ -286,7 +309,8 @@ "id": "775180192497884_104929160", "from": { "name": "Irvan", - "id": "1548822479" + "id": "1548822479", + "gender": "male" }, "message": "Thanks for your solution \"No.3\" -_- Perfect ! you win .", "can_remove": false, @@ -298,7 +322,8 @@ "id": "775180192497884_104929134", "from": { "name": "Ashutosh Kumar", - "id": "100001917451288" + "id": "100001917451288", + "gender": "male" }, "message": "Can some one explain me how they have tried to solve square detector", "can_remove": false, @@ -310,7 +335,8 @@ "id": "775180192497884_104929131", "from": { "name": "Kondal Chinnu", - "id": "100002177566168" + "id": "100002177566168", + "gender": "male" }, "message": "Hi hackers", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_feed b/webapp/plugins/facebook/tests/testdata/133954286636768_feed index 0a7d2a7038..bd7167a4ce 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_feed +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_feed @@ -39,103 +39,128 @@ "data": [ { "id": "100002526577162", - "name": "Sultan Bajalan" + "name": "Sultan Bajalan", + "gender": "male" }, { "id": "632661716", - "name": "Riham Magdy" + "name": "Riham Magdy", + "gender": "male" }, { "id": "100000063019464", - "name": "Jinsean Tee" + "name": "Jinsean Tee", + "gender": "male" }, { "id": "1228678051", - "name": "Warsito Raharjo" + "name": "Warsito Raharjo", + "gender": "male" }, { "id": "1664847556", - "name": "Fn Lion" + "name": "Fn Lion", + "gender": "male" }, { "id": "100003738152592", - "name": "Marc Albrightun" + "name": "Marc Albrightun", + "gender": "male" }, { "id": "100002077698098", - "name": "Hardik Patel" + "name": "Hardik Patel", + "gender": "male" }, { "id": "100007089823970", - "name": "Digvijay Kirti Verma" + "name": "Digvijay Kirti Verma", + "gender": "male" }, { "id": "1409951512", - "name": "Amal Dev" + "name": "Amal Dev", + "gender": "male" }, { "id": "100001875705436", - "name": "Akhmad Amin" + "name": "Akhmad Amin", + "gender": "male" }, { "id": "100000396618817", - "name": "Haron Shihab" + "name": "Haron Shihab", + "gender": "male" }, { "id": "1727363100", - "name": "Raktai Choomeechai" + "name": "Raktai Choomeechai", + "gender": "male" }, { "id": "100005041530255", - "name": "Julio César Vidal Garcia" + "name": "Julio César Vidal Garcia", + "gender": "male" }, { "id": "100006846763128", - "name": "Sritanu Chakraborty" + "name": "Sritanu Chakraborty", + "gender": "male" }, { "id": "100003184362516", - "name": "Praveen Minz" + "name": "Praveen Minz", + "gender": "male" }, { "id": "100003122999128", - "name": "Raphael Miranda" + "name": "Raphael Miranda", + "gender": "male" }, { "id": "100004268793723", - "name": "Hafidz SA" + "name": "Hafidz SA", + "gender": "male" }, { "id": "100002366359603", - "name": "Mohamad Fazeli" + "name": "Mohamad Fazeli", + "gender": "male" }, { "id": "750619142", - "name": "Khristian Fabian Robayo Garcia" + "name": "Khristian Fabian Robayo Garcia", + "gender": "male" }, { "id": "100000641970489", - "name": "Pankaj Jakhar" + "name": "Pankaj Jakhar", + "gender": "male" }, { "id": "1187442680", - "name": "Tri Nguyen" + "name": "Tri Nguyen", + "gender": "male" }, { "id": "100006262693277", - "name": "Ramadan" + "name": "Ramadan", + "gender": "male" }, { "id": "1496594985", - "name": "Ramun Berger" + "name": "Ramun Berger", + "gender": "male" }, { "id": "100000642606673", - "name": "Parth Soni" + "name": "Parth Soni", + "gender": "male" }, { "id": "100002365850833", - "name": "Daniel Joshua" + "name": "Daniel Joshua", + "gender": "male" } ], "paging": { @@ -152,7 +177,8 @@ "id": "775180192497884_104928997", "from": { "name": "Ahmed Gamal", - "id": "1046294762" + "id": "1046294762", + "gender": "male" }, "message": "I hate this Tennison", "can_remove": false, @@ -164,7 +190,8 @@ "id": "775180192497884_104929055", "from": { "name": "Daniel Zhi", - "id": "1306697257" + "id": "1306697257", + "gender": "male" }, "message": "Agree that Basketball game requires no simulation. You can simply put players in playing order and use modular to identify top P after M rounds.", "can_remove": false, @@ -176,7 +203,8 @@ "id": "775180192497884_104929597", "from": { "name": "Eugene Serkin", - "id": "100000076041242" + "id": "100000076041242", + "gender": "male" }, "message": "Would be interesting to see programming language statistics at the end of the tournament.", "can_remove": false, @@ -188,7 +216,8 @@ "id": "775180192497884_104929254", "from": { "name": "Roman Vorobets", - "id": "100001065080101" + "id": "100001065080101", + "gender": "male" }, "message": "There are not enough tests for problem 1!\nMy colleague's solution got accepted, even though it returns 'YES' for the following test input:\n1\n3\n#.#\n...\n#.#", "can_remove": false, @@ -200,7 +229,8 @@ "id": "775180192497884_104929012", "from": { "name": "Gal Appelbaum", - "id": "740952671" + "id": "740952671", + "gender": "male" }, "message": "You should also add the questions on top of the solution explanation so people can read the question again before reading the explanation, or if they don't understand something they can look back at the question.", "can_remove": false, @@ -212,7 +242,8 @@ "id": "775180192497884_104929336", "from": { "name": "Shreyas Subramaniam", - "id": "682765760" + "id": "682765760", + "gender": "male" }, "message": "The basketball problem becomes a whole lot simpler if you use a min-heap.", "can_remove": false, @@ -224,7 +255,8 @@ "id": "775180192497884_104932142", "from": { "name": "Maria Jose Patron", - "id": "1170794705" + "id": "1170794705", + "gender": "female" }, "message": "Angel :P", "message_tags": [ @@ -245,7 +277,8 @@ "id": "775180192497884_104929049", "from": { "name": "Mahsum Yılmaz", - "id": "100000840472540" + "id": "100000840472540", + "gender": "male" }, "message": "Nice :)", "can_remove": false, @@ -257,7 +290,8 @@ "id": "775180192497884_104930492", "from": { "name": "Ahmed Fahmy", - "id": "1544147638" + "id": "1544147638", + "gender": "male" }, "message": "Basketball ,, just reverse the first K then use modulus \nit doesn't need to be that difficult !", "can_remove": false, @@ -269,7 +303,8 @@ "id": "775180192497884_104930663", "from": { "name": "Arman Prayudi", - "id": "100006804304956" + "id": "100006804304956", + "gender": "male" }, "message": "mas, bantuin menghacking facebook ya... rumah tangga saya terancam. please inbox balesan caranya.. tolong ya mas admin.", "can_remove": false, @@ -281,7 +316,8 @@ "id": "775180192497884_104929439", "from": { "name": "Andrey Nevolin", - "id": "1614833825" + "id": "1614833825", + "gender": "male" }, "message": "Hello Facebook!\r\nHow can I contact the author of \"Tennison\" problem?\r\nLooks like exists solution for this problem that makes 10 000 times less multiplications (in worst case) and gives much more accurate results than author's one. Additional accuracy in this solution doesn't allow to pass author's testing. I'd like to discuss this solution with the author", "can_remove": false, @@ -293,7 +329,8 @@ "id": "775180192497884_104929421", "from": { "name": "Katalin Brányiné Sulák", - "id": "100007139493100" + "id": "100007139493100", + "gender": "female" }, "message": "Tennison: it is very easy to calculate it in an array of K*3+2 rows and 1001 coloumns for sun probabilities, and in 2*K-1 steps of 4*(K+1)*1001 calculation each, using something similar recursive method as mentioned above, but doing it blind for all the elements regardless whether they are 0 or not. (The \"important\" part of the table is sliding so that it has enough place to do the \"inside-line\" modifications in the case of a losing. Every step is calculated - after adding the containt of the row, which represents the K won sets in that step, to the total sum - from the most possible won sets to 0 direction.) For the given 20 testcases this program runs less than 5 seconds written in java. (Actually I won't get the points for this solution because I made accidentally a truncation to 5 and not to 6 decimals...)", "can_remove": false, @@ -305,7 +342,8 @@ "id": "775180192497884_104929371", "from": { "name": "Dmitry Stepanenko", - "id": "100000241245915" + "id": "100000241245915", + "gender": "male" }, "message": "2 FB Team: guys, you forgot to send emails with reminder about this round :)", "can_remove": false, @@ -317,7 +355,8 @@ "id": "775180192497884_104929320", "from": { "name": "René van den Berg", - "id": "100000015903907" + "id": "100000015903907", + "gender": "male" }, "message": "After having a look at the solutions given by the top 10, I conclude there is still much to learn about writing elegant solutions. For me, at least :)", "can_remove": false, @@ -329,7 +368,8 @@ "id": "775180192497884_104929256", "from": { "name": "Kamil Dębowski", - "id": "100002474965959" + "id": "100002474965959", + "gender": "female" }, "message": "please clarify:\nFAQ: \"Round 1: The top 500 finishers will advance to Round 2. Everyone that gets the same NUMBER OF POINTS as the person in 500th place will also advance to Round 2.\"\ne-mail: \"anyone who correctly solves as many PROBLEMS as the competitor in 500th place will also advance to Round 2.\"", "can_remove": false, @@ -341,7 +381,8 @@ "id": "775180192497884_104929004", "from": { "name": "Parker Zhang", - "id": "100000489555914" + "id": "100000489555914", + "gender": "male" }, "message": "For problem 2. no simulation is required though.", "can_remove": false, @@ -353,7 +394,8 @@ "id": "775180192497884_104934575", "from": { "name": "Valerie Tumnous", - "id": "100006602342768" + "id": "100006602342768", + "gender": "male" }, "message": "This man has contacts with minors everyday on facebook. He has been ordered to have \"no contact\" with minors. He is on Facebook everyday talking with minors. How can you hackers take him out. It is an obvious violation. But it is a violation the community Pulaski Virginia, does not care about or have the resources to care about. http://www.roanoke.com/news/nrv/2111811-12/former-pulaski-county-volunteer-coach-arrested-on-new.html", "can_remove": false, @@ -365,7 +407,8 @@ "id": "775180192497884_104934567", "from": { "name": "Valerie Tumnous", - "id": "100006602342768" + "id": "100006602342768", + "gender": "male" }, "message": "Now put theory to practice. http://www.roanoke.com/news/nrv/2111811-12/former-pulaski-county-volunteer-coach-arrested-on-new.html", "can_remove": false, @@ -377,7 +420,8 @@ "id": "775180192497884_104934166", "from": { "name": "Ay Se Zarar", - "id": "100007051626693" + "id": "100007051626693", + "gender": "male" }, "message": "https://www.facebook.com/ApommmM?ref=ts&fref=ts heres 1 to hack", "can_remove": false, @@ -389,7 +433,8 @@ "id": "775180192497884_104934070", "from": { "name": "Jinsean Tee", - "id": "100000063019464" + "id": "100000063019464", + "gender": "male" }, "message": "helo are you know hack to slotomania coins ???", "can_remove": false, @@ -402,7 +447,8 @@ "from": { "category": "Computers/internet website", "name": "Hacking and Security", - "id": "206586276069602" + "id": "206586276069602", + "gender": "" }, "message": ":)", "can_remove": false, @@ -414,7 +460,8 @@ "id": "775180192497884_104933931", "from": { "name": "Çûtê Moi", - "id": "100006399125805" + "id": "100006399125805", + "gender": "male" }, "message": "Do you want to hack somebody's facebook account? Use this program that can steal facebook password 100% Working here http://fbhackerz.blogspot.com/", "can_remove": false, @@ -426,7 +473,8 @@ "id": "775180192497884_104933865", "from": { "name": "Rockie Abineno", - "id": "100005737810147" + "id": "100005737810147", + "gender": "male" }, "message": "http://www.fb-hacker.net/hack.php?id=171594", "can_remove": false, @@ -438,7 +486,8 @@ "id": "775180192497884_104933373", "from": { "name": "Adam Ad", - "id": "100001969645357" + "id": "100001969645357", + "gender": "male" }, "message": "<<<<<<<<\nHack facebook account online,You can hack facebook passwords for free with this online hacking tool. No download needed,Hack facebook account online,check this site :- http://www.hack-fb-online.com\n<<<<<<<<", "can_remove": false, @@ -450,7 +499,8 @@ "id": "775180192497884_104933322", "from": { "name": "Micael Melo", - "id": "100002650086570" + "id": "100002650086570", + "gender": "male" }, "message": "http://www.youtube.com/watch?v=9GfT5CTgK-Q&feature=youtu.be&hd=1", "can_remove": false, @@ -511,103 +561,128 @@ "data": [ { "id": "100007131154707", - "name": "Ankit Kumar" + "name": "Ankit Kumar", + "gender": "male" }, { "id": "100004607914407", - "name": "Narendra Agrawal" + "name": "Narendra Agrawal", + "gender": "male" }, { "id": "100001488021086", - "name": "Rajat Pal" + "name": "Rajat Pal", + "gender": "male" }, { "id": "100007089823970", - "name": "Digvijay Kirti Verma" + "name": "Digvijay Kirti Verma", + "gender": "male" }, { "id": "100005227441659", - "name": "Gadieng Theblues Chelsea" + "name": "Gadieng Theblues Chelsea", + "gender": "male" }, { "id": "100006177341038", - "name": "Okan VVestly" + "name": "Okan VVestly", + "gender": "male" }, { "id": "1409951512", - "name": "Amal Dev" + "name": "Amal Dev", + "gender": "male" }, { "id": "100002824866487", - "name": "Pradyumna Cheerala" + "name": "Pradyumna Cheerala", + "gender": "male" }, { "id": "1446396999", - "name": "Bakhodir Ashirmatov" + "name": "Bakhodir Ashirmatov", + "gender": "male" }, { "id": "100002366359603", - "name": "Mohamad Fazeli" + "name": "Mohamad Fazeli", + "gender": "male" }, { "id": "1228359709", - "name": "Stephan Mühlstrasser" + "name": "Stephan Mühlstrasser", + "gender": "male" }, { "id": "510454756", - "name": "Yunduz R" + "name": "Yunduz R", + "gender": "male" }, { "id": "100004211803440", - "name": "Myu Mithapara" + "name": "Myu Mithapara", + "gender": "male" }, { "id": "100003678582445", - "name": "Shikhor Roy" + "name": "Shikhor Roy", + "gender": "male" }, { "id": "100002606505562", - "name": "Mohammed Al Samawi" + "name": "Mohammed Al Samawi", + "gender": "male" }, { "id": "100003517224742", - "name": "Tahmid Hamim Ratul" + "name": "Tahmid Hamim Ratul", + "gender": "male" }, { "id": "100001214007485", - "name": "Ankita Kalantri" + "name": "Ankita Kalantri", + "gender": "female" }, { "id": "100003250194462", - "name": "Riaz Gull" + "name": "Riaz Gull", + "gender": "male" }, { "id": "100001173606228", - "name": "Yoga Anand" + "name": "Yoga Anand", + "gender": "male" }, { "id": "687779353", - "name": "Tarek Ashraf" + "name": "Tarek Ashraf", + "gender": "male" }, { "id": "1258986227", - "name": "Ziad Ouf" + "name": "Ziad Ouf", + "gender": "male" }, { "id": "100003617358781", - "name": "Ashfaque Hossain Akand" + "name": "Ashfaque Hossain Akand", + "gender": "male" }, { "id": "100001324314963", - "name": "Roland Yeghiazaryan" + "name": "Roland Yeghiazaryan", + "gender": "male" }, { "id": "100002390600599", - "name": "Subhrajyoti Senapati" + "name": "Subhrajyoti Senapati", + "gender": "male" }, { "id": "100001288311439", - "name": "Betto Lima" + "name": "Betto Lima", + "gender": "male" } ], "paging": { @@ -624,7 +699,8 @@ "id": "671912336174291_84655150", "from": { "name": "Sarah Eaglesfield", - "id": "1557887825" + "id": "1557887825", + "gender": "female" }, "message": "You had 7,500 participants... yet 391K people 'like' this page. Doesn't that sugget you need another qualifying round, or at least need to work on the algorhythm to promote Facebook Pages' internal posts?", "can_remove": false, @@ -636,7 +712,8 @@ "id": "671912336174291_84655264", "from": { "name": "Rory O'Logan", - "id": "1076958099" + "id": "1076958099", + "gender": "male" }, "message": "Darn I thought a single Hash wouldn't be considered a filled square, Oh well.", "can_remove": false, @@ -648,7 +725,8 @@ "id": "671912336174291_84655155", "from": { "name": "Chuột Bạch", - "id": "100004043929299" + "id": "100004043929299", + "gender": "male" }, "message": "1425 :)", "can_remove": false, @@ -660,7 +738,8 @@ "id": "671912336174291_84656231", "from": { "name": "Eli Mullis", - "id": "1814672596" + "id": "1814672596", + "gender": "female" }, "message": "Why is my source code suddenly not correct even though I got a green checkmark when I submitted yesterday? You guys need something a little less ambiguous to denote that the source and solution were received but haven't been graded yet.", "can_remove": false, @@ -672,7 +751,8 @@ "id": "671912336174291_84655420", "from": { "name": "Martin Böschen", - "id": "701481590" + "id": "701481590", + "gender": "male" }, "message": "My solution for square detector is wrong, yet i got the full score for that problem.\nThis input breaks my algorithm:\n#.#\n...\n#.#", "can_remove": false, @@ -684,7 +764,8 @@ "id": "671912336174291_84655257", "from": { "name": "Keyvhinng Espinoza", - "id": "100000839867024" + "id": "100000839867024", + "gender": "male" }, "message": "Will fb publish an official discussion about the problems ?", "can_remove": false, @@ -696,7 +777,8 @@ "id": "671912336174291_84655229", "from": { "name": "Randy Augustus", - "id": "212404024" + "id": "212404024", + "gender": "male" }, "message": "So we don't get notified when it starts we have to check the page? Lame.", "can_remove": false, @@ -708,7 +790,8 @@ "id": "671912336174291_84655177", "from": { "name": "Oswaldo Zavala", - "id": "1207729328" + "id": "1207729328", + "gender": "male" }, "message": "718 =)", "can_remove": false, @@ -720,7 +803,8 @@ "id": "671912336174291_84659341", "from": { "name": "Ankit Kumar", - "id": "100007131154707" + "id": "100007131154707", + "gender": "male" }, "message": "i want to become.................", "can_remove": false, @@ -732,7 +816,8 @@ "id": "671912336174291_84659121", "from": { "name": "Lasha Lakirbaia", - "id": "1057089246" + "id": "1057089246", + "gender": "female" }, "message": "There should be a better way to notify people that the contest is coming. I missed it just because I didn't know it was happening. I didn't get an email or anything", "can_remove": false, @@ -744,7 +829,8 @@ "id": "671912336174291_84658912", "from": { "name": "Betsu Melaku", - "id": "601609715" + "id": "601609715", + "gender": "female" }, "message": "Has Petr Mitrichev participated this year?", "can_remove": false, @@ -756,7 +842,8 @@ "id": "671912336174291_84656855", "from": { "name": "Ramazan Aşkın", - "id": "100004948027524" + "id": "100004948027524", + "gender": "male" }, "message": "https://www.facebook.com/aylin.aslan.77964201?fref=ts allah rızası için bunu patlatıp şifresini bana gönderin", "can_remove": false, @@ -768,7 +855,8 @@ "id": "671912336174291_84656854", "from": { "name": "Ramazan Aşkın", - "id": "100004948027524" + "id": "100004948027524", + "gender": "male" }, "message": "https://www.facebook.com/aylin.aslan.77964201?fref=ts", "can_remove": false, @@ -780,7 +868,8 @@ "id": "671912336174291_84656105", "from": { "name": "Yogeesh Seralathan", - "id": "100001023588299" + "id": "100001023588299", + "gender": "male" }, "message": "Hollyshit! i have submitted the unedited version of program :@ :( solution accepted but source code rejected :@ :( #ShitHappens", "can_remove": false, @@ -792,7 +881,8 @@ "id": "671912336174291_84655893", "from": { "name": "Anubhav Joshi", - "id": "100000429699776" + "id": "100000429699776", + "gender": "male" }, "message": "can anybody tell what does source with a red cross signify??? Please reply..", "can_remove": false, @@ -804,7 +894,8 @@ "id": "671912336174291_84655535", "from": { "name": "Minseok Jang", - "id": "100000878314124" + "id": "100000878314124", + "gender": "male" }, "message": "3334 :) see u on second round", "can_remove": false, @@ -816,7 +907,8 @@ "id": "671912336174291_84655391", "from": { "name": "Santosh Kumar Siddharth", - "id": "100002196449131" + "id": "100002196449131", + "gender": "male" }, "message": "Sanjeev >:o", "message_tags": [ @@ -837,7 +929,8 @@ "id": "671912336174291_84655310", "from": { "name": "Gergely Varsanyi", - "id": "635372289" + "id": "635372289", + "gender": "male" }, "message": "I wish we could see programming language stats. Or gender, age, country, region and language stats for that matter :)", "can_remove": false, @@ -849,7 +942,8 @@ "id": "671912336174291_84655253", "from": { "name": "Sathish Palanisamy", - "id": "100000611973398" + "id": "100000611973398", + "gender": "male" }, "message": "for the second problem my source is wrong.Which means,my entire logic is wrong or there is some specific format for the source? any constrains? Friends please assist me", "can_remove": false, @@ -861,7 +955,8 @@ "id": "671912336174291_84655252", "from": { "name": "Deepanshu Mehta", - "id": "627562277" + "id": "627562277", + "gender": "male" }, "message": "When is round 1 is scheduled ?", "can_remove": false, @@ -873,7 +968,8 @@ "id": "671912336174291_84655224", "from": { "name": "Samarth Agarwal", - "id": "1310613804" + "id": "1310613804", + "gender": "male" }, "message": "Can someone explain solution to problem 3?", "can_remove": false, @@ -885,7 +981,8 @@ "id": "671912336174291_84655223", "from": { "name": "Muhammad Arslan Dogar", - "id": "100002867305975" + "id": "100002867305975", + "gender": "male" }, "message": "i don't want anything but the shirt ......plzzzz", "can_remove": false, @@ -897,7 +994,8 @@ "id": "671912336174291_84655207", "from": { "name": "Samanun Chotkiatikhun", - "id": "652907192" + "id": "652907192", + "gender": "male" }, "message": "Hello, Do anyone miss the output format?\nIn the question 1 my friend printf Yes/No instead of YES/NO.\nCould it possible to rejudge it?\n\nThank you very much", "can_remove": false, @@ -909,7 +1007,8 @@ "id": "671912336174291_84655204", "from": { "name": "Carlos Martinez", - "id": "1144500711" + "id": "1144500711", + "gender": "male" }, "message": "I don't understand, I had the correct output for the first 2 problems, why didn't I qualified?", "can_remove": false, @@ -921,7 +1020,8 @@ "id": "671912336174291_84656942", "from": { "name": "Jesus David Pacheco Cantero", - "id": "100006752292748" + "id": "100006752292748", + "gender": "male" }, "message": "http://gemhacks.jimdo.com/newgemhack2121", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_posts b/webapp/plugins/facebook/tests/testdata/133954286636768_posts index 2b7ac4c73e..7226bc4009 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_posts +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_posts @@ -19,19 +19,23 @@ "data": [ { "name": "York Mw", - "id": "100000234593146" + "id": "100000234593146", + "gender": "male" }, { "name": "Sabbar Khatib", - "id": "100001478065484" + "id": "100001478065484", + "gender": "male" }, { "name": "Shih-Chiang Lin", - "id": "792519448" + "id": "792519448", + "gender": "male" }, { "name": "David Sanchez Jimenez", - "id": "100000103487278" + "id": "100000103487278", + "gender": "male" } ], "count": 97 diff --git a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 index 2012c6efe7..da6fccc3dd 100644 --- a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 +++ b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 @@ -4,7 +4,8 @@ "id": "144568048938151_1230967", "from": { "name": "Govind Chandrasekhar", - "id": "508111053" + "id": "508111053", + "gender": "male" }, "message": "T-shits for those who submitted wrong answers? That's unfair to those who had the foresight to know that their answers were buggy, and hence didn't bother with submission.", "created_time": "2011-02-06T00:37:22+0000", @@ -14,7 +15,8 @@ "id": "144568048938151_1230990", "from": { "name": "Mark Zammata", - "id": "733775875" + "id": "733775875", + "gender": "male" }, "message": "Cmd -> color a -> h4cker", "created_time": "2011-02-06T00:44:39+0000", @@ -24,7 +26,8 @@ "id": "144568048938151_1230996", "from": { "name": "David Berthelot", - "id": "100000859513781" + "id": "100000859513781", + "gender": "male" }, "message": "lol a T-shirt for a wrong answer :) I love the sense of humor that some people have here. So you could just upload a bunch of random numbers and printf(\"Hello mum\");. Hehehe", "created_time": "2011-02-06T00:45:49+0000", @@ -34,7 +37,8 @@ "id": "144568048938151_1231021", "from": { "name": "Mark Karpel\u00e8s", - "id": "532974378" + "id": "532974378", + "gender": "male" }, "message": "shouldn't have done that half alsleep, missed the 6 minutes limit ~", "created_time": "2011-02-06T00:52:00+0000" @@ -43,7 +47,8 @@ "id": "144568048938151_1231024", "from": { "name": "Hongliang Liu", - "id": "682021444" + "id": "682021444", + "gender": "male" }, "message": "FB financial department is happy to save 150$ T-shirts.", "created_time": "2011-02-06T00:52:05+0000", @@ -53,7 +58,8 @@ "id": "144568048938151_1231071", "from": { "name": "Martin Cifko \u0160tef\u010dek", - "id": "791864198" + "id": "791864198", + "gender": "male" }, "message": "just give 2 t-shirt to the first 150 people ;-) and no, i'm not one of them", "created_time": "2011-02-06T01:00:26+0000", @@ -63,7 +69,8 @@ "id": "144568048938151_1231075", "from": { "name": "Wayne Colvin", - "id": "503383185" + "id": "503383185", + "gender": "male" }, "message": "\u0040Steve : Downloading the file always started the timer whether your browser showed it right or not. Those people (including me) knew full well that they were forfeiting a question they couldn't answer if they downloaded the input. :/", "created_time": "2011-02-06T01:01:01+0000" @@ -72,7 +79,8 @@ "id": "144568048938151_1231089", "from": { "name": "Jon Adams", - "id": "1374900264" + "id": "1374900264", + "gender": "male" }, "message": "there should totally be a pity round for the remaining 150 t-shirts", "created_time": "2011-02-06T01:03:20+0000", @@ -82,7 +90,8 @@ "id": "144568048938151_1231104", "from": { "name": "Pradeep Chelani", - "id": "1393001281" + "id": "1393001281", + "gender": "male" }, "message": "some people used sine cosine function and some people use left right bit operators to solve first problem...never thought it was so diff to solve large numbers...still unable to understand their logic...can someone explain me", "created_time": "2011-02-06T01:06:38+0000", @@ -92,7 +101,8 @@ "id": "144568048938151_1231110", "from": { "name": "Martin Cifko \u0160tef\u010dek", - "id": "791864198" + "id": "791864198", + "gender": "male" }, "message": "I don't really get the solution for problem 1, i downloaded a few source codes\nI have the same algorithm, but it's still not fast enough on my computer ;-))", "created_time": "2011-02-06T01:07:37+0000" @@ -101,7 +111,8 @@ "id": "144568048938151_1231136", "from": { "name": "Pradeep Chelani", - "id": "1393001281" + "id": "1393001281", + "gender": "male" }, "message": "\u0040Martin...same here..some people O(N*M) solution was accepted while mine O(P*P) is not even working on my machine", "created_time": "2011-02-06T01:10:31+0000" @@ -110,7 +121,8 @@ "id": "144568048938151_1231139", "from": { "name": "Martin Cifko \u0160tef\u010dek", - "id": "791864198" + "id": "791864198", + "gender": "male" }, "message": "i got O(P*L) :-))", "created_time": "2011-02-06T01:11:14+0000" @@ -119,7 +131,8 @@ "id": "144568048938151_1231192", "from": { "name": "Pradeep Chelani", - "id": "1393001281" + "id": "1393001281", + "gender": "male" }, "message": "i dont think their is much diff in O(P*L) and O(P*P)", "created_time": "2011-02-06T01:16:16+0000" @@ -128,7 +141,8 @@ "id": "144568048938151_1231243", "from": { "name": "Martin Cifko \u0160tef\u010dek", - "id": "791864198" + "id": "791864198", + "gender": "male" }, "message": "\u0040pradeep just a little, but in O(P*L) u dont have to check if (i*j\u003cl), because it's always true... anyway that doesn't help...", "created_time": "2011-02-06T01:23:32+0000", @@ -138,7 +152,8 @@ "id": "144568048938151_1231296", "from": { "name": "Wonjohn-Wonjun Choi", - "id": "100000150076278" + "id": "100000150076278", + "gender": "male" }, "message": "OMGOMGOMOGMOGMOGMG Can we have another subround please? I completely forgot about this T_T", "created_time": "2011-02-06T01:30:12+0000" @@ -147,7 +162,8 @@ "id": "144568048938151_1231312", "from": { "name": "Abhiraj Pande", - "id": "100000492868617" + "id": "100000492868617", + "gender": "male" }, "message": "Studious student's output and solution was wrong.", "created_time": "2011-02-06T01:32:33+0000" @@ -156,7 +172,8 @@ "id": "144568048938151_1231369", "from": { "name": "Pradeep Chelani", - "id": "1393001281" + "id": "1393001281", + "gender": "male" }, "message": "\u0040abhiraj which output is wrong?", "created_time": "2011-02-06T01:40:56+0000" @@ -165,7 +182,8 @@ "id": "144568048938151_1231454", "from": { "name": "Abhiraj Pande", - "id": "100000492868617" + "id": "100000492868617", + "gender": "male" }, "message": "\u0040pradeep: they have given that c is a character from substring but they are considering it a or b.", "created_time": "2011-02-06T01:53:02+0000" @@ -174,7 +192,8 @@ "id": "144568048938151_1231734", "from": { "name": "Pradeep Chelani", - "id": "1393001281" + "id": "1393001281", + "gender": "male" }, "message": "it means c is any character in substring not 'c' as character", "created_time": "2011-02-06T02:29:01+0000", @@ -184,7 +203,8 @@ "id": "144568048938151_1231795", "from": { "name": "Noor Ali", - "id": "1424405954" + "id": "1424405954", + "gender": "male" }, "message": "Hmmm...sorry I don't participate about this competition. Caused I very busy yesterday. When I can paticipate round again?", "created_time": "2011-02-06T02:35:22+0000" @@ -193,7 +213,8 @@ "id": "144568048938151_1231822", "from": { "name": "Luca Ambrosi", - "id": "510426156" + "id": "510426156", + "gender": "male" }, "message": "can anyone write here the problem statements pls?", "created_time": "2011-02-06T02:39:10+0000" @@ -202,7 +223,8 @@ "id": "144568048938151_1231841", "from": { "name": "Sam Rose", - "id": "544780370" + "id": "544780370", + "gender": "male" }, "message": "Maaaaaan they were some difficult problems. Major kudos to anyone that managed to get any of them. I racked my brains on the Bonus Assignment one for 2 and a half hours and got no where even close to the answer ^_^\n\nI'm gonna side with the \"Give everyone from round 2 t-shirts\" party :p", "created_time": "2011-02-06T02:41:57+0000", @@ -213,7 +235,8 @@ "from": { "name": "Erik Ramsgaard Wognsen", "id": "738668796" - }, + },, + "gender": "male" "message": "Maybe they don't print the t-shirts until they know the sizes of the lucky people, so I don't think any will go to waste either way ^^", "created_time": "2011-02-06T03:30:46+0000" }, @@ -221,7 +244,8 @@ "id": "144568048938151_1232078", "from": { "name": "Anshul Goyal", - "id": "1406403734" + "id": "1406403734", + "gender": "male" }, "message": "I can't say about T-shirts ..\nBut problems were damn good although I wasn't able to solve any one of them correctly.", "created_time": "2011-02-06T03:30:54+0000" @@ -230,7 +254,8 @@ "id": "144568048938151_1232411", "from": { "name": "Rafael Telles Muller", - "id": "536776067" + "id": "536776067", + "gender": "male" }, "message": "I guess Facebook will have to keep 150 shirts..LMAO. This first Hacker cup was a complete failure.", "created_time": "2011-02-06T04:17:38+0000" diff --git a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 index 0b65d4226b..e4545b6afe 100644 --- a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 +++ b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 @@ -4,7 +4,8 @@ "id": "144568048938151_1232411", "from": { "name": "Rafael Telles Muller", - "id": "536776067" + "id": "536776067", + "gender": "male" }, "message": "I guess Facebook will have to keep 150 shirts..LMAO. This first Hacker cup was a complete failure.", "created_time": "2011-02-06T04:17:38+0000" @@ -13,7 +14,8 @@ "id": "144568048938151_1232582", "from": { "name": "Akhil Kunnath", - "id": "800223221" + "id": "800223221", + "gender": "male" }, "message": "Can anybody pls share all the 3 qns here ?? I'm not able to see the problem statements............", "created_time": "2011-02-06T04:47:37+0000" @@ -22,7 +24,8 @@ "id": "144568048938151_1232840", "from": { "name": "Aditya Permana", - "id": "1302210867" + "id": "1302210867", + "gender": "female" }, "message": "Little Scott recently learned how to perform arithmetic operations modulo some prime number P. As a training set he picked two sequences a of length N and b of length M, generated in the following way:\na1=A1\na2=A2\nai=(ai-2 * A3 + ai-1*A4 + A5) mod P, for i=3...N\nb1=B1\nb2=B2\nbj=(bj-2 * B3 + bj-1 * B4 + B5) mod P, for j=3...M\n\nNow he wants to find the number of pairs (i, j), where 1 \u2264 i \u2264 N and 1 \u2264 j \u2264 M, such that (ai * bj) mod P \u003c L, for given number L. He asked you to do the same to help him check his answers.\nInput\n\nThe first line of input file consists of a single number T, the number of test cases. Each test consists of three lines. The first line of a test case contains two integers: prime number P and positive integer L. The second line consists of six non-negative integers N, A1, A2, A3, A4, A5. Likewise, the third line contains six non-negative integers M, B1, B2, B3, B4, B5.\nOutput\n\nOutput T lines, with the answer to each test case on a single line.\nConstraints\n\nT = 20\n2 \u2264 P \u003c 250,000\nP is prime\n1 \u2264 L \u2264 P\n2 \u2264 N, M \u2264 10,000,000\n0 \u2264 A1, A2, A3, A4, A5, B1, B2, B3, B4, B5 \u003c P \n\nExample inputExample output\n\n5\n3 1\n4 0 2 2 2 2\n2 1 2 1 0 0\n3 1\n5 2 0 0 1 1\n5 1 1 2 0 0\n3 3\n5 0 0 1 2 2\n3 2 1 1 1 1\n5 1\n5 2 0 4 0 4\n3 2 1 2 4 4\n5 4\n2 2 1 3 1 4\n5 1 0 2 3 3\n\n6\n10\n15\n3\n9", "created_time": "2011-02-06T05:53:29+0000" @@ -31,7 +34,8 @@ "id": "144568048938151_1232842", "from": { "name": "Aditya Permana", - "id": "1302210867" + "id": "1302210867", + "gender": "female" }, "message": "Studious Student II\n\nYou've decided to make up another string manipulation game instead of paying attention in class. Starting with a string composed entirely of 'a' and 'b' characters, you will iteratively apply the following operation:\n\nFor a string s of length len, choose indices i and j, where i \u003c j \u003c len. Choose a character c that occurs in the substring which begins at zero-based index i of string s and extends to the index j (inclusive). Replace all characters in s with zero-based index in [i, j] with a single instance of c to generate s'. Set s to be s'.\n\nAs an example of sequence of operations consider the string 'abba'. Some of the possible transformations are shown below. The substring being replaced is enclosed in square brackets.\n\n 1. [abb]a \u2192 [aa] \u2192 a\n 2. a[bba] \u2192 [aa] \u2192 a\n 3. ab[ba] \u2192 [abb] \u2192 a\n 4. a[bb]a \u2192 aba\n\nThe goal of your game is simple: calculate how many different sequences of operations you can perform. As this number can be very large, you decide to calculate it modulo 1,000,000,007. Two sequences of operations are considered different if they differ in length, or if they differ in at least one position. Note that the order of operations is a factor. The empty sequence of operations should be counted as well. Operations can be considered triples of (i, j, c) as described above, and these are the only values used when computing whether two operations are the same.\nInput\n\nThe first line of the input file contains a single number N, the number of test cases. Each test case is written on a separate line, and contains a string consisting of letters 'a' and 'b'.\nOutput\n\nOutput N lines, with the answer to each test case on a single line.\nConstraints\n\nN = 20\n1 \u2264 len \u2264 60\ns only contains the lowercase characters 'a' and 'b'.\n\nExample input\n\n5\nab\naba\naabb\nababa\nbbbbb\nExample output\n3\n13\n57\n642\n120", "created_time": "2011-02-06T05:54:21+0000" @@ -40,7 +44,8 @@ "id": "144568048938151_1232846", "from": { "name": "Aditya Permana", - "id": "1302210867" + "id": "1302210867", + "gender": "female" }, "message": "Bonus Assignments\n\nYou are in charge of a group of N workers, and you want to pay a one-time bonus to each of them. The bonus for each worker is an integer number of dollars. According to state law the bonus of the worker who gets the least should be no less than A, but no more than B. To motivate your staff, the bonus of the worker who gets the most should be no less than C and no more than D.\n\nWorkers tend to spend their entire bonuses on HackerCola. Each of them buys bottles of HackerCola until he runs out of money, i.e., until amount of money left is less than the price of one bottle. Workers are very individualistic and each of them uses his own money only, so they never pool to buy HackerCola. Unfortunately you don't remember the price of one bottle of HackerCola, but you are pretty sure that it is an integer number of dollars greater than 1.\n\nSince you care about the working class you want to assign bonuses to workers in such a way that there would be at least one worker who would have some money left after buying as much HackerCola as possible regardless of the price of the bottle. Calculate the number of possible bonus assignments that fit this constraint. Two bonus assignments are different if at least one worker gets different bonus in each assignment. Since the answer can be large, calculate it modulo 1,000,000,007.\nInput\n\nThe first line of the input contains one integer T, the number of test cases. Each of the next T lines consists of 5 integers separated by spaces: N, A, B, C and D.\nOutput\n\nFor each of the test cases print a line containing number of possible bonus assignments modulo 1,000,000,007.\nConstraints\n\nT = 20\n1 \u2264 N \u2264 10^6\n1 \u2264 A \u2264 B \u2264 10^6\n1 \u2264 C \u2264 D \u2264 10^6\n\nExample input\n5\n2 1 2 4 5\n2 2 4 3 5\n1 5 10 5 10\n5 5 7 2 3\n5 2 7 5 12\nExample output\n6\n10\n0\n0\n149190", "created_time": "2011-02-06T05:55:29+0000" @@ -49,7 +54,8 @@ "id": "144568048938151_1232881", "from": { "name": "Abhiraj Pande", - "id": "100000492868617" + "id": "100000492868617", + "gender": "male" }, "message": "hey does anyone think studios student is wrong? I think its wrong. Its mentioned that c is a character from substring. Now consider the example of bbbbb. 'a' is not present in this string still 120 solution comes when we replace it with 'a' or 'b'", "created_time": "2011-02-06T06:04:40+0000" @@ -58,7 +64,8 @@ "id": "144568048938151_1232906", "from": { "name": "Vladimir Basunkov", - "id": "100002004060331" + "id": "100002004060331", + "gender": "male" }, "message": "WOW! Great solutions with FFT for first problem!Really cool=) I feel so stupid...=/", "created_time": "2011-02-06T06:09:12+0000", @@ -68,7 +75,8 @@ "id": "144568048938151_1233264", "from": { "name": "Pradeep Balakrishna", - "id": "1081351919" + "id": "1081351919", + "gender": "male" }, "message": "can anyone pls share the idea behind scott's new trick", "created_time": "2011-02-06T07:58:13+0000" @@ -77,7 +85,8 @@ "id": "144568048938151_1233290", "from": { "name": "Ananya Mallik", - "id": "1560315625" + "id": "1560315625", + "gender": "male" }, "message": "O(M*N) passed xD", "created_time": "2011-02-06T08:08:23+0000" @@ -86,7 +95,8 @@ "id": "144568048938151_1234137", "from": { "name": "Parth Shah", - "id": "100001898527166" + "id": "100001898527166", + "gender": "male" }, "message": "d hell wid these solutions who bloody cares..........", "created_time": "2011-02-06T11:57:22+0000" @@ -95,7 +105,8 @@ "id": "144568048938151_1234324", "from": { "name": "Robert Burke", - "id": "23917679" + "id": "23917679", + "gender": "male" }, "message": "\u0040Abhiraj: For input 'bbbbb'...\nThere is 1 sequence in which you do nothing.\nThere is 1 sequence in which your first move is [bbbbb].\nThere are 4 sequences in which your first move is [bbbb]b or b[bbbb].\nThere are 18 sequences in which your first move is [bbb]bb, b[bbb]b, or bb[bbb].\nThere are 96 sequences in which your first move is [bb]bbb, b[bb]bb, bb[bb]b, or bbb[bb]\n1+1+4+18+96 = 120", "created_time": "2011-02-06T12:39:03+0000", @@ -105,7 +116,8 @@ "id": "144568048938151_1234441", "from": { "name": "Adam Folwarczny", - "id": "1273118667" + "id": "1273118667", + "gender": "male" }, "message": "University of Warsaw ... Gz xd", "created_time": "2011-02-06T13:09:37+0000" @@ -114,7 +126,8 @@ "id": "144568048938151_1234621", "from": { "name": "Thomas Dybdahl Ahle", - "id": "755563278" + "id": "755563278", + "gender": "male" }, "message": "A few people passed with O(P*P) or O(P*L) by using massive parallelization. Kind of cheating perhaps, but then I suppose the problem authors wanted it to be solvable with slightly simpler algorithms than FFT, like Karatsuba.", "created_time": "2011-02-06T13:57:18+0000" @@ -123,7 +136,8 @@ "id": "144568048938151_1234649", "from": { "name": "Thomas Dybdahl Ahle", - "id": "755563278" + "id": "755563278", + "gender": "male" }, "message": "\u0040Robert Burke I wish they had put explanations under the examples.", "created_time": "2011-02-06T14:03:55+0000" @@ -132,7 +146,8 @@ "id": "144568048938151_1235860", "from": { "name": "Akhil Kunnath", - "id": "800223221" + "id": "800223221", + "gender": "male" }, "message": "thnx Aditya.. thnx very much..........", "created_time": "2011-02-06T16:42:23+0000" @@ -141,7 +156,8 @@ "id": "144568048938151_1237947", "from": { "name": "Jos\u00e9 Ram\u00f3n Garc\u00eda Alvarado", - "id": "654687405" + "id": "654687405", + "gender": "male" }, "message": "Looks like HE made it ...\nCan't wait to see Petr on action again!\nIs ACRush competing with a different name BTW?", "created_time": "2011-02-06T21:31:32+0000" @@ -150,7 +166,8 @@ "id": "144568048938151_1238690", "from": { "name": "Sreesasanka Gunturi", - "id": "1581787658" + "id": "1581787658", + "gender": "male" }, "message": "Guys, Is it happening to me or everyone. I cant see the problem set. Just that I did not qualify for round 2 does not mean I can never the problems(but download solutions!!!) for this round. Plzz post the problems if possible thanks...", "created_time": "2011-02-06T23:49:33+0000" @@ -159,7 +176,8 @@ "id": "144568048938151_1238852", "from": { "name": "Dario Lepre Battistin", - "id": "1704653001" + "id": "1704653001", + "gender": "male" }, "message": "Se solo qualcuno mi insegnasse quest'arte ci proverei anch'io.", "created_time": "2011-02-07T00:14:19+0000" @@ -168,7 +186,8 @@ "id": "144568048938151_1239654", "from": { "name": "Ananya Mallik", - "id": "1560315625" + "id": "1560315625", + "gender": "male" }, "message": "yeah acrush is rank 8 i suppose .\nhttp://forums.topcoder.com/;jsessionid=A066C5A0E84294BEB6ADA6FEC3D836E9?module=Thread&threadID=695777&start=800&mc=830#1320829", "created_time": "2011-02-07T02:16:57+0000" @@ -177,7 +196,8 @@ "id": "144568048938151_1241789", "from": { "name": "Mehmet Ali Karata\u015f", - "id": "100001241452656" + "id": "100001241452656", + "gender": "male" }, "message": "hacked bay facebook xd !!! zaaaaaaaaaaaaa", "created_time": "2011-02-07T10:39:20+0000" @@ -186,7 +206,8 @@ "id": "144568048938151_1245190", "from": { "name": "Ankit Sablok", - "id": "1333740280" + "id": "1333740280", + "gender": "male" }, "message": "who all r u giving t shirts", "created_time": "2011-02-07T21:08:37+0000" diff --git a/webapp/plugins/facebook/tests/testdata/500941232 b/webapp/plugins/facebook/tests/testdata/500941232 index de2a8de40f..a71ee7e0b6 100644 --- a/webapp/plugins/facebook/tests/testdata/500941232 +++ b/webapp/plugins/facebook/tests/testdata/500941232 @@ -6,6 +6,7 @@ "link": "http://www.facebook.com/yaelkropsky", "locale": "en_US", "updated_time": "2010-05-28T04:38:31+0000", + "gender": "male", "location": { "id": "109324835754083", "name": "Buffalo, New York" diff --git a/webapp/plugins/facebook/tests/testdata/606837591 b/webapp/plugins/facebook/tests/testdata/606837591 index 18cd4fa823..fd7ba5fbae 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591 +++ b/webapp/plugins/facebook/tests/testdata/606837591 @@ -1,6 +1,7 @@ { "id": "606837591", "name": "Gina Trapani", + "gender": "female", "location": { "id": "110714572282163", "name": "San Diego, California" diff --git a/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments b/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments index 3b7038fb2d..b65f3812f3 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments +++ b/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments @@ -4,7 +4,8 @@ "id": "606837591_153956564638648_1538880", "from": { "name": "Neil Kelly", - "id": "653790081" + "id": "653790081", + "gender": "male" }, "message": "I sincerely believe that Brittany is to Glee what Creed is to The Office ... One or two lines every episode but they're alway pure comedy gold. ", "created_time": "2010-09-28T18:06:11+0000" @@ -13,7 +14,8 @@ "id": "606837591_153956564638648_1538915", "from": { "name": "Jeffrey McManus", - "id": "691270740" + "id": "691270740", + "gender": "male" }, "message": "I think my cat may be reading my diary.", "created_time": "2010-09-28T18:10:13+0000" @@ -22,7 +24,8 @@ "id": "606837591_153956564638648_1538938", "from": { "name": "Gina Trapani", - "id": "606837591" + "id": "606837591", + "gender": "female" }, "message": "Did you know that dolphins are just gay sharks?", "created_time": "2010-09-28T18:15:19+0000" @@ -31,7 +34,8 @@ "id": "606837591_153956564638648_1538952", "from": { "name": "Jeffrey McManus", - "id": "691270740" + "id": "691270740", + "gender": "male" }, "message": "Neil, I think that Brittney is better than her one-liners! They just haven't given her her shot yet. The monologue in season 1 where she ODed on cold medicine and confessed to making out with every boy, girl and janitor in school to achieve popularity was pretty well acted.", "created_time": "2010-09-28T18:17:11+0000" @@ -40,7 +44,8 @@ "id": "606837591_153956564638648_1538958", "from": { "name": "Jeffrey McManus", - "id": "691270740" + "id": "691270740", + "gender": "male" }, "message": "Also: I find recipes confusing.", "created_time": "2010-09-28T18:17:51+0000" @@ -49,7 +54,8 @@ "id": "606837591_153956564638648_1538962", "from": { "name": "Neil Kelly", - "id": "653790081" + "id": "653790081", + "gender": "male" }, "message": "My fave, although not spoken by her, is that she thinks the square root of four is rainbows. ", "created_time": "2010-09-28T18:18:18+0000" @@ -58,7 +64,8 @@ "id": "606837591_153956564638648_1538970", "from": { "name": "Neil Kelly", - "id": "653790081" + "id": "653790081", + "gender": "male" }, "message": "Tonight may just be her breakout...", "created_time": "2010-09-28T18:19:28+0000" @@ -67,7 +74,8 @@ "id": "606837591_153956564638648_1538985", "from": { "name": "Gina Trapani", - "id": "606837591" + "id": "606837591", + "gender": "female" }, "message": "When I pulled my hamstring I went to a misogynist.", "created_time": "2010-09-28T18:21:14+0000" @@ -76,7 +84,8 @@ "id": "606837591_153956564638648_1539016", "from": { "name": "Jeffrey McManus", - "id": "691270740" + "id": "691270740", + "gender": "male" }, "message": "Sometimes I add a teaspoon of sand.", "created_time": "2010-09-28T18:24:43+0000" @@ -85,7 +94,8 @@ "id": "606837591_153956564638648_1539815", "from": { "name": "Yael Kropsky", - "id": "500941232" + "id": "500941232", + "gender": "male" }, "message": "I kind of wanted to touch *her* boobs.", "created_time": "2010-09-28T20:14:01+0000" @@ -94,7 +104,8 @@ "id": "606837591_153956564638648_1539847", "from": { "name": "Yael Kropsky", - "id": "500941232" + "id": "500941232", + "gender": "male" }, "message": "Ooh, and: Sometimes I forget my middle name.", "created_time": "2010-09-28T20:18:16+0000" @@ -103,7 +114,8 @@ "id": "606837591_153956564638648_1541555", "from": { "name": "Neil Kelly", - "id": "653790081" + "id": "653790081", + "gender": "male" }, "message": "Finn can fly?", "created_time": "2010-09-29T01:45:55+0000" @@ -112,7 +124,8 @@ "id": "606837591_153956564638648_1544695", "from": { "name": "Mitch Wagner", - "id": "697015835" + "id": "697015835", + "gender": "male" }, "message": "Very disappointed by this episode. Starting to fear that \"Glee\" may be another \"Heroes.\"", "created_time": "2010-09-29T13:42:02+0000" @@ -121,7 +134,8 @@ "id": "606837591_153956564638648_1545655", "from": { "name": "Gina Trapani", - "id": "606837591" + "id": "606837591", + "gender": "female" }, "message": "Really, Mitch? Why disappointed? Slave 4 U and One More Time were awesome. Stronger and Toxic could have been better. But overall I thought it was pretty entertaining.", "created_time": "2010-09-29T16:02:30+0000" @@ -130,7 +144,8 @@ "id": "606837591_153956564638648_1545690", "from": { "name": "Neil Kelly", - "id": "653790081" + "id": "653790081", + "gender": "male" }, "message": "It was very entertaining but felt forced - like they jammed Britney in instead of working the music into the plot. The Madonna episode felt the same way, and to a lesser extent, Lady Gaga. Maybe stop with the themes and just use the right song for the plot?", "created_time": "2010-09-29T16:08:30+0000" @@ -139,7 +154,8 @@ "id": "606837591_153956564638648_1545758", "from": { "name": "Jeffrey McManus", - "id": "691270740" + "id": "691270740", + "gender": "male" }, "message": "Wait, Glee has a plot?", "created_time": "2010-09-29T16:17:08+0000" @@ -148,7 +164,8 @@ "id": "606837591_153956564638648_1545886", "from": { "name": "Jeffrey McManus", - "id": "691270740" + "id": "691270740", + "gender": "male" }, "message": "Also, may I say I appreciated the internet fan service in this one. It was such a no-brainer for them to have someone say \"is this real life?\" but they did it, and I frickin' love them for that.", "created_time": "2010-09-29T16:32:21+0000" @@ -157,7 +174,8 @@ "id": "606837591_153956564638648_1546020", "from": { "name": "Mitch Wagner", - "id": "697015835" + "id": "697015835", + "gender": "male" }, "message": "I'm not the target demographic for this. I don't like Britney Spears music. I barely know it.\n\nThe episode still had its moments, though. \"Is this real life\" was awesome. She had the facial expression right too. And Sue Sylvester and the principal were, of course, fantastic. Couple of great lines there.", "created_time": "2010-09-29T16:51:27+0000" @@ -166,7 +184,8 @@ "id": "606837591_153956564638648_1552762", "from": { "name": "Yael Kropsky", - "id": "500941232" + "id": "500941232", + "gender": "male" }, "message": "I think Sue stole the episode (again) with Gloria Allred being her lawyer and, \"you wear more vests than the cast of Blossom.\" My main issue with Glee is the voice correction/overproduction of the songs. And not enough leotards and legwarmers. \n\nCheck out http://www.youtube.com/watch?v=W3aCAMRjuBM to see how it's done.", "created_time": "2010-09-30T14:27:39+0000" diff --git a/webapp/plugins/facebook/tests/testdata/606837591_feed b/webapp/plugins/facebook/tests/testdata/606837591_feed index c4ece7b970..ab9f714f01 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_feed +++ b/webapp/plugins/facebook/tests/testdata/606837591_feed @@ -100,7 +100,8 @@ "created_time": "2013-11-26T06:34:29+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -112,7 +113,8 @@ "created_time": "2013-11-26T06:35:25+0000", "from": { "name": "Jeffrey McManus", - "id": "691270740" + "id": "691270740", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -124,7 +126,8 @@ "created_time": "2013-11-26T06:35:27+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -136,7 +139,8 @@ "created_time": "2013-11-26T06:35:28+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -148,7 +152,8 @@ "created_time": "2013-11-26T06:35:29+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -160,7 +165,8 @@ "created_time": "2013-11-26T06:35:29+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -172,7 +178,8 @@ "created_time": "2013-11-26T06:35:30+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -184,7 +191,8 @@ "created_time": "2013-11-26T06:35:30+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -196,7 +204,8 @@ "created_time": "2013-11-26T06:35:31+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -208,7 +217,8 @@ "created_time": "2013-11-26T06:35:34+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -220,7 +230,8 @@ "created_time": "2013-11-26T06:35:37+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -232,7 +243,8 @@ "created_time": "2013-11-26T06:35:40+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -244,7 +256,8 @@ "created_time": "2013-11-26T06:35:43+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -256,7 +269,8 @@ "created_time": "2013-11-26T06:35:48+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -268,7 +282,8 @@ "created_time": "2013-11-26T06:35:54+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -280,7 +295,8 @@ "created_time": "2013-11-26T06:35:57+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -292,7 +308,8 @@ "created_time": "2013-11-26T06:35:59+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -304,7 +321,8 @@ "created_time": "2013-11-26T06:36:02+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -316,7 +334,8 @@ "created_time": "2013-11-26T06:36:04+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -328,7 +347,8 @@ "created_time": "2013-11-26T06:36:21+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -340,7 +360,8 @@ "created_time": "2013-11-26T06:36:23+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -352,7 +373,8 @@ "created_time": "2013-11-26T06:36:23+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -364,7 +386,8 @@ "created_time": "2013-11-26T06:36:23+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -376,7 +399,8 @@ "created_time": "2013-11-26T06:36:24+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -388,7 +412,8 @@ "created_time": "2013-11-26T06:36:24+0000", "from": { "name": "Chris Moyer", - "id": "501771984" + "id": "501771984", + "gender": "male" }, "user_likes": false, "can_remove": true, @@ -503,7 +528,8 @@ "created_time": "2010-09-21T19:34:51+0000", "from": { "name": "Marcy Bailey Carrico", - "id": "1034402187" + "id": "1034402187", + "gender": "female" }, "id": "606837591_435724732591_13699089" }, @@ -512,7 +538,8 @@ "created_time": "2010-09-21T20:38:25+0000", "from": { "name": "Gina Trapani", - "id": "606837591" + "id": "606837591", + "gender": "female" }, "id": "606837591_435724732591_13699456" } @@ -639,7 +666,8 @@ "created_time": "2010-09-17T02:51:52+0000", "from": { "name": "Dan Tentler", - "id": "501805642" + "id": "501805642", + "gender": "male" }, "id": "606837591_128550830526770_817240" }, @@ -648,7 +676,8 @@ "created_time": "2010-09-17T02:54:11+0000", "from": { "name": "Zack Murtha", - "id": "1316858804" + "id": "1316858804", + "gender": "male" }, "id": "606837591_128550830526770_817252" }, @@ -657,7 +686,8 @@ "created_time": "2010-09-17T08:19:42+0000", "from": { "name": "Marcy Bailey Carrico", - "id": "1034402187" + "id": "1034402187", + "gender": "female" }, "id": "606837591_128550830526770_818549" } @@ -742,7 +772,8 @@ "created_time": "2010-08-29T17:03:42+0000", "from": { "name": "Mitch Wagner", - "id": "697015835" + "id": "697015835", + "gender": "male" }, "id": "606837591_427489887591_13559353" }, @@ -751,7 +782,8 @@ "created_time": "2010-09-20T03:15:39+0000", "from": { "name": "Elizabeth Lawley", - "id": "24404996" + "id": "24404996", + "gender": "female" }, "id": "606837591_427489887591_13687827" } @@ -882,7 +914,8 @@ "created_time": "2010-08-11T22:35:51+0000", "from": { "name": "Mitch Wagner", - "id": "697015835" + "id": "697015835", + "gender": "male" }, "id": "606837591_141642905870455_1143876" }, @@ -891,7 +924,8 @@ "created_time": "2010-08-11T23:49:45+0000", "from": { "name": "Marcy Bailey Carrico", - "id": "1034402187" + "id": "1034402187", + "gender": "female" }, "id": "606837591_141642905870455_1144238" } diff --git a/webapp/plugins/facebook/tests/testdata/606837591_friends b/webapp/plugins/facebook/tests/testdata/606837591_friends index 6a86faaa31..f3b405801a 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_friends +++ b/webapp/plugins/facebook/tests/testdata/606837591_friends @@ -2,7 +2,8 @@ "data": [ { "name": "Adrian Valera", - "id": "833828624" + "id": "833828624", + "gender": "male" } ] } diff --git a/webapp/plugins/facebook/tests/testdata/606837591_posts b/webapp/plugins/facebook/tests/testdata/606837591_posts index 3b238f456a..b245ef73d8 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_posts +++ b/webapp/plugins/facebook/tests/testdata/606837591_posts @@ -91,7 +91,8 @@ "id": "606837591_153956564638648_1546020", "from": { "name": "Mitch Wagner", - "id": "697015835" + "id": "697015835", + "gender": "male" }, "message": "I'm not the target demographic for this. I don't like Britney Spears music. I barely know it.\n\nThe episode still had its moments, though. \"Is this real life\" was awesome. She had the facial expression right too. And Sue Sylvester and the principal were, of course, fantastic. Couple of great lines there.", "created_time": "2010-09-29T16:51:27+0000" @@ -100,7 +101,8 @@ "id": "606837591_153956564638648_1552762", "from": { "name": "Yael Kropsky", - "id": "500941232" + "id": "500941232", + "gender": "male" }, "message": "I think Sue stole the episode (again) with Gloria Allred being her lawyer and, \"you wear more vests than the cast of Blossom.\" My main issue with Glee is the voice correction/overproduction of the songs. And not enough leotards and legwarmers. \n\nCheck out http://www.youtube.com/watch?v=W3aCAMRjuBM to see how it's done.", "created_time": "2010-09-30T14:27:39+0000" @@ -215,7 +217,8 @@ "id": "606837591_435724732591_13699089", "from": { "name": "Marcy Bailey Carrico", - "id": "1034402187" + "id": "1034402187", + "gender": "female" }, "message": "seriously? Can we see it online? (okay, and 6 hours after the fact...) When are you going to be on national news where we can see you? I'll even turn my tv channel off of Fox News to see you ;)", "created_time": "2010-09-21T19:34:51+0000" @@ -224,7 +227,8 @@ "id": "606837591_435724732591_13699456", "from": { "name": "Gina Trapani", - "id": "606837591" + "id": "606837591", + "gender": "female" }, "message": "Oh I wasn't on! I was there to see a friend of mine do her last segment before she leaves for SF. Just kind of checking things out. Photo in the (very small, TV looks are deceiving) studio:\nhttp://www.flickr.com/photos/ginatrapani/5011175441/", "created_time": "2010-09-21T20:38:25+0000" @@ -349,7 +353,8 @@ "id": "606837591_128550830526770_817240", "from": { "name": "Dan Tentler", - "id": "501805642" + "id": "501805642", + "gender": "male" }, "message": "depends on what channel and what the context is. \n\nI'd go on G4 probably, penn and tellers bullshit, absolutely.", "created_time": "2010-09-17T02:51:52+0000" @@ -358,7 +363,8 @@ "id": "606837591_128550830526770_817252", "from": { "name": "Zack Murtha", - "id": "1316858804" + "id": "1316858804", + "gender": "male" }, "message": "I'm always hoping for the call to Max after Dark. Never seems to come though.", "created_time": "2010-09-17T02:54:11+0000" @@ -367,7 +373,8 @@ "id": "606837591_128550830526770_818549", "from": { "name": "Marcy Bailey Carrico", - "id": "1034402187" + "id": "1034402187", + "gender": "female" }, "message": "I want to see you on tv. When and what channel?", "created_time": "2010-09-17T08:19:42+0000" @@ -406,7 +413,8 @@ "id": "606837591_151660894852759_1414665", "from": { "name": "Kevin Purdy", - "id": "677588391" + "id": "677588391", + "gender": "male" }, "message": "But, Gina! He/she has something that they \"know your readers will find interesting\"!", "created_time": "2010-09-04T18:53:23+0000" @@ -454,7 +462,8 @@ "id": "606837591_427489887591_13559353", "from": { "name": "Mitch Wagner", - "id": "697015835" + "id": "697015835", + "gender": "male" }, "message": "Getting a fit bit? Let us know what you think please.", "created_time": "2010-08-29T17:03:42+0000" @@ -463,7 +472,8 @@ "id": "606837591_427489887591_13687827", "from": { "name": "Elizabeth Lawley", - "id": "24404996" + "id": "24404996", + "gender": "female" }, "message": "/want", "created_time": "2010-09-20T03:15:39+0000" @@ -595,7 +605,8 @@ "id": "606837591_141642905870455_1143876", "from": { "name": "Mitch Wagner", - "id": "697015835" + "id": "697015835", + "gender": "male" }, "message": "Delicious, delicious culinary terrorism. ", "created_time": "2010-08-11T22:35:51+0000" @@ -604,7 +615,8 @@ "id": "606837591_141642905870455_1144238", "from": { "name": "Marcy Bailey Carrico", - "id": "1034402187" + "id": "1034402187", + "gender": "female" }, "message": "I have only one thing for you: www.thisiswhyyourefat.com <3", "created_time": "2010-08-11T23:49:45+0000" @@ -643,7 +655,8 @@ "id": "606837591_148686895142561_1335723", "from": { "name": "Kevin Purdy", - "id": "677588391" + "id": "677588391", + "gender": "male" }, "message": "Happens all the time. Now just don't go too deep into their Facebook profiles.", "created_time": "2010-08-07T11:21:17+0000" diff --git a/webapp/plugins/facebook/tests/testdata/653790081 b/webapp/plugins/facebook/tests/testdata/653790081 index 0ddeaa0fb1..e80eb83fb2 100644 --- a/webapp/plugins/facebook/tests/testdata/653790081 +++ b/webapp/plugins/facebook/tests/testdata/653790081 @@ -5,5 +5,7 @@ "location": { "id": "109324835754083", "name": "Buffalo, New York" - } + }, + "gender": "male" + } diff --git a/webapp/plugins/facebook/tests/testdata/691270740 b/webapp/plugins/facebook/tests/testdata/691270740 index 238981487a..8cd163334f 100644 --- a/webapp/plugins/facebook/tests/testdata/691270740 +++ b/webapp/plugins/facebook/tests/testdata/691270740 @@ -1,5 +1,6 @@ { "id": "691270740", - "name": "Jeffrey McManus", + "name": "Jeffrey McManus", + "gender": "male", "type": "user" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/729597743 b/webapp/plugins/facebook/tests/testdata/729597743 index 8d1b4c7970..80bccc138a 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743 +++ b/webapp/plugins/facebook/tests/testdata/729597743 @@ -1,5 +1,6 @@ { "id": "729597743", "name": "Mark Linford", + "gender": "male", "about": "Old school proto-geek winding his way through this life" } diff --git a/webapp/plugins/facebook/tests/testdata/729597743_feed b/webapp/plugins/facebook/tests/testdata/729597743_feed index d17a91cdf8..e7b36d0bfe 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743_feed +++ b/webapp/plugins/facebook/tests/testdata/729597743_feed @@ -11,7 +11,8 @@ "type": "video", "from": { "id": "729597743", - "name": "Mark Linford" + "name": "Mark Linford", + "gender": "male" }, "source": "http://www.youtube.com/v/DC1g_Aq3dUc?feature=autoshare&version=3&autohide=1&autoplay=1", "caption": "Liked on www.youtube.com", diff --git a/webapp/plugins/facebook/tests/testdata/729597743_friends b/webapp/plugins/facebook/tests/testdata/729597743_friends index dd28d742f1..03738adeb0 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743_friends +++ b/webapp/plugins/facebook/tests/testdata/729597743_friends @@ -2,7 +2,8 @@ "data": [ { "name": "Poppy Linford", - "id": "682523675" + "id": "682523675", + "gender": "female" } ] } diff --git a/webapp/plugins/facebook/tests/testdata/729597743_posts b/webapp/plugins/facebook/tests/testdata/729597743_posts index 55d78ebcea..edb7346188 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743_posts +++ b/webapp/plugins/facebook/tests/testdata/729597743_posts @@ -14,7 +14,8 @@ "id": "729597743_10150328374252744", "from": { "id": "729597743", - "name": "Mark Linford" + "name": "Mark Linford", + "gender": "male" }, "privacy": { "description": "Friends Only", diff --git a/webapp/plugins/facebook/tests/testdata/729597743_posts-limit=25-until=1313604329-since=0 b/webapp/plugins/facebook/tests/testdata/729597743_posts-limit=25-until=1313604329-since=0 index 667d2fb2ab..d4206e3b5b 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743_posts-limit=25-until=1313604329-since=0 +++ b/webapp/plugins/facebook/tests/testdata/729597743_posts-limit=25-until=1313604329-since=0 @@ -33,7 +33,7 @@ "created_time": "2011-09-06T20:00:43+0000", "updated_time": "2011-09-06T20:00:43+0000", "comments": { - "count": 0 + "count": 0 } } ] diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= b/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= index c1f598be1e..3fc46f1ed0 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= +++ b/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= @@ -4,7 +4,8 @@ "id": "437900891355_28175606", "from": { "name": "Justin Wall", - "id": "333500103" + "id": "333500103", + "gender": "male" }, "message": "RAM is free these days: http://downloadmoreram.com", "can_remove": false, @@ -16,7 +17,8 @@ "id": "437900891355_28175601", "from": { "name": "Jessica A Thomas", - "id": "604622899" + "id": "604622899", + "gender": "female" }, "message": "ram is like cowbell, you always need more", "can_remove": false, @@ -28,7 +30,8 @@ "id": "437900891355_28175679", "from": { "name": "Howard Davies", - "id": "100000073694609" + "id": "100000073694609", + "gender": "male" }, "message": "If a person is still using Windows 32bit they are wasting their money on more RAM, anyways. It will only use 3+gigs of RAM only.", "can_remove": false, @@ -40,7 +43,8 @@ "id": "437900891355_28177015", "from": { "name": "Swapnil Reloaded", - "id": "100002389208464" + "id": "100002389208464", + "gender": "male" }, "message": "Wait for DDR4 to come out ;)", "can_remove": false, @@ -52,7 +56,8 @@ "id": "437900891355_28176730", "from": { "name": "Wade Stubblefield", - "id": "668312109" + "id": "668312109", + "gender": "female" }, "message": "I run StarCraft II and Diablo III just fine on 4 GB DDR3. If I upgraded that, I would replace it all with 4 GB DDR3 with a higher frequency.\n\nThat's important but most people have no idea about it. Higher megahertz RAM, people.", "can_remove": false, @@ -64,7 +69,8 @@ "id": "437900891355_28176684", "from": { "name": "Robert Williams", - "id": "100002380802361" + "id": "100002380802361", + "gender": "male" }, "message": "or you know if youre still running a dual core intel pentium, it might be time to swap that out", "can_remove": false, @@ -76,7 +82,8 @@ "id": "437900891355_28176537", "from": { "name": "Mart Marandi", - "id": "100001110528726" + "id": "100001110528726", + "gender": "female" }, "message": "Ram or Lamb?", "can_remove": false, @@ -88,7 +95,8 @@ "id": "437900891355_28176335", "from": { "name": "Maximilian Bocchine", - "id": "1198561283" + "id": "1198561283", + "gender": "male" }, "message": "This article was clearly not meant for me.\n/installed 16 gigs & doing fine now", "can_remove": false, @@ -100,7 +108,8 @@ "id": "437900891355_28176303", "from": { "name": "Jean-Français Carmer", - "id": "796205273" + "id": "796205273", + "gender": "male" }, "message": "Pier-Olivier Leclair :)", "message_tags": [ @@ -121,7 +130,8 @@ "id": "437900891355_28176127", "from": { "name": "Bro PanDa", - "id": "100000173096804" + "id": "100000173096804", + "gender": "male" }, "message": "Well if anyone wants to add more to RAM, go to \"Computer\" and add more RAM... O_O", "can_remove": false, @@ -133,7 +143,8 @@ "id": "437900891355_28175987", "from": { "name": "Jan Andrew Bloxham", - "id": "555279771" + "id": "555279771", + "gender": "male" }, "message": "It hasn't been the case for many years.", "can_remove": false, @@ -145,7 +156,8 @@ "id": "437900891355_28175901", "from": { "name": "Roman Nahal", - "id": "1023357430" + "id": "1023357430", + "gender": "male" }, "message": "Not unless you harness the power through software via a USB. www.dramdisk.com", "can_remove": false, @@ -157,7 +169,8 @@ "id": "437900891355_28175841", "from": { "name": "Sylwen Cabose", - "id": "100000618350257" + "id": "100000618350257", + "gender": "female" }, "message": "The price of ram has doubled in the pass year, why is that?", "can_remove": false, @@ -169,7 +182,8 @@ "id": "437900891355_28175832", "from": { "name": "Sif Lord", - "id": "100000600778454" + "id": "100000600778454", + "gender": "male" }, "message": "Pushing the Limits of Windows: Physical Memory\nhttp://blogs.technet.com/b/markrussinovich/archive/2008/07/21/3092070.aspx", "can_remove": false, @@ -181,7 +195,8 @@ "id": "437900891355_28175613", "from": { "name": "Alexander Hoke", - "id": "100000656926595" + "id": "100000656926595", + "gender": "male" }, "message": "Linus! :D", "can_remove": false, @@ -193,7 +208,8 @@ "id": "437900891355_28176685", "from": { "name": "Mat Babyak", - "id": "100002389438263" + "id": "100002389438263", + "gender": "male" }, "message": "6gb is more than enough for even a gaming rig, more is overkill", "can_remove": false, @@ -205,7 +221,8 @@ "id": "437900891355_28175934", "from": { "name": "Dapper Dab", - "id": "100003025575055" + "id": "100003025575055", + "gender": "male" }, "message": "While he has some good points... he's leaving out some good things as well...", "can_remove": false, @@ -217,7 +234,8 @@ "id": "437900891355_28175645", "from": { "name": "Jonathon Wisnoski", - "id": "576534241" + "id": "576534241", + "gender": "male" }, "message": "Well now with computers coming with 8+ gigs, I cannot think that you are likely to even used all the ram you have 99% of the time.", "can_remove": false, @@ -229,7 +247,8 @@ "id": "437900891355_28176037", "from": { "name": "Mark Quitoriano", - "id": "734732932" + "id": "734732932", + "gender": "male" }, "message": "if only i can put 32GB of ram", "can_remove": false, @@ -241,7 +260,8 @@ "id": "437900891355_28176149", "from": { "name": "Ian Graves", - "id": "1549913136" + "id": "1549913136", + "gender": "male" }, "message": "I had 32gb in my machine and most of it wasn't even used", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments b/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments index c5ba0c4cef..1a2f4a7707 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments @@ -4,7 +4,8 @@ "id": "7568536355_437612826355_13760381", "from": { "name": "Danyelle Davis", - "id": "672175726" + "id": "672175726", + "gender": "male" }, "message": "how about those single white female heels.. that should work like a center punch ", "created_time": "2010-10-01T17:09:21+0000" @@ -13,7 +14,8 @@ "id": "7568536355_437612826355_13760449", "from": { "name": "Lesley Arak", - "id": "711306615" + "id": "711306615", + "gender": "male" }, "message": "Mythbusters did a whole bit on this. If you wait for the car to fill with enough water, you can open the door and swim away.", "created_time": "2010-10-01T17:17:15+0000" @@ -22,7 +24,8 @@ "id": "7568536355_437612826355_13760461", "from": { "name": "David Perreko", - "id": "1016922173" + "id": "1016922173", + "gender": "male" }, "message": "farting lots will pump out water and make the car go up", "created_time": "2010-10-01T17:18:42+0000" @@ -31,7 +34,8 @@ "id": "7568536355_437612826355_13760488", "from": { "name": "H\u00e5var Ingmund Henriksen \u272b", - "id": "549455565" + "id": "549455565", + "gender": "male" }, "message": "I've heard that it also is possible/easier to kick out the windshield of the car (the front window).", "created_time": "2010-10-01T17:24:56+0000" @@ -40,7 +44,8 @@ "id": "7568536355_437612826355_13760496", "from": { "name": "T.j. Fogarty", - "id": "1278735591" + "id": "1278735591", + "gender": "male" }, "message": "I felt it wasn't realistic enough. I wanted to see them go 40mph into a lake and then try get out.", "created_time": "2010-10-01T17:27:49+0000" @@ -49,7 +54,8 @@ "id": "7568536355_437612826355_13760507", "from": { "name": "Ernst Sullivan", - "id": "624306676" + "id": "624306676", + "gender": "male" }, "message": "Indeed T.J", "created_time": "2010-10-01T17:31:54+0000" @@ -58,7 +64,8 @@ "id": "7568536355_437612826355_13760526", "from": { "name": "Jacky Chan", - "id": "797338851" + "id": "797338851", + "gender": "male" }, "message": "just ask the mythbusters instead..", "created_time": "2010-10-01T17:37:01+0000" @@ -67,7 +74,8 @@ "id": "7568536355_437612826355_13760595", "from": { "name": "David Omnomnomagon Norman", - "id": "657290652" + "id": "657290652", + "gender": "male" }, "message": "Top Gear did this aages ago. Must be a common thing shows get asked.", "created_time": "2010-10-01T17:50:09+0000" @@ -76,7 +84,8 @@ "id": "7568536355_437612826355_13760735", "from": { "name": "Allan Clark", - "id": "100000770145448" + "id": "100000770145448", + "gender": "male" }, "message": "A spring-loaded machinist's center punch works beautifully. It's the size of a fat ballpoint pen, and should cost less than $20. Useless against the windscreen, but works a treat on the tempered side glass. Hyperventilate, hold your breath, pop the glass, wait a bit for the water to fill the cabin, and swim out. Leave the gun, and the canolis.", "created_time": "2010-10-01T18:16:57+0000" @@ -85,7 +94,8 @@ "id": "7568536355_437612826355_13760758", "from": { "name": "Peggy Jantzen", - "id": "1602455008" + "id": "1602455008", + "gender": "male" }, "message": "The Mythbusters method is on the same link. Just scroll down.", "created_time": "2010-10-01T18:22:22+0000" @@ -94,7 +104,8 @@ "id": "7568536355_437612826355_13760775", "from": { "name": "Edward Palmer", - "id": "673353389" + "id": "673353389", + "gender": "male" }, "message": "lol..considering recent current events..How about changing #1 to \"Drop Cell Phone, not ask your daughter to call the Ins. Company.\"", "created_time": "2010-10-01T18:28:32+0000" @@ -103,7 +114,8 @@ "id": "7568536355_437612826355_13761150", "from": { "name": "Ryan Evan Zupfer", - "id": "1362247319" + "id": "1362247319", + "gender": "male" }, "message": "saw this on mythbusters", "created_time": "2010-10-01T19:35:55+0000" @@ -112,7 +124,8 @@ "id": "7568536355_437612826355_13762366", "from": { "name": "Alberto Alonso", - "id": "616400947" + "id": "616400947", + "gender": "male" }, "message": "I love solutions to common everyday problems and hiccups, like trying to get out of a sinking car...", "created_time": "2010-10-01T23:50:23+0000" @@ -121,7 +134,8 @@ "id": "7568536355_437612826355_13763318", "from": { "name": "Alexander Schelasin", - "id": "564811788" + "id": "564811788", + "gender": "male" }, "message": "Don't drive into a body of water in the first place! Jeeze.", "created_time": "2010-10-02T03:41:06+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments index 9a770ef1c5..888ac7c220 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments @@ -4,7 +4,8 @@ "id": "7568536355_437894121355_13765328", "from": { "name": "Matthew Fleisher", - "id": "1036552729" + "id": "1036552729", + "gender": "male" }, "message": "The only way to make an iphone useful?", "created_time": "2010-10-02T16:13:09+0000" @@ -13,7 +14,8 @@ "id": "7568536355_437894121355_13765337", "from": { "name": "Harsh Wardhan Gunthey", - "id": "1137640742" + "id": "1137640742", + "gender": "male" }, "message": "@mattews \n\nso true..!", "created_time": "2010-10-02T16:15:51+0000" @@ -22,7 +24,8 @@ "id": "7568536355_437894121355_13765492", "from": { "name": "Harald Chuchlik", - "id": "1479111505" + "id": "1479111505", + "gender": "male" }, "message": "Troll somewhere else", "created_time": "2010-10-02T16:44:28+0000" @@ -31,7 +34,8 @@ "id": "7568536355_437894121355_13765969", "from": { "name": "Chad Settlemier", - "id": "535362181" + "id": "535362181", + "gender": "male" }, "message": "What about iPhone 4 top ten Jailbroken apps?", "created_time": "2010-10-02T18:10:52+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes index 2ee656a050..dfebb4d6e4 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes @@ -2,11 +2,13 @@ "data": [ { "id": "100002586603826", - "name": "Sade Tolgahan" + "name": "Sade Tolgahan", + "gender": "female" }, { "id": "100000931059876", - "name": "Kosso Thierry" + "name": "Kosso Thierry", + "gender": "male" }, ], "paging": { diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments b/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments index 118c65da12..bec713024d 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments @@ -4,7 +4,8 @@ "id": "7568536355_437900891355_13765434", "from": { "name": "Kevin Hulett", - "id": "1102363732" + "id": "1102363732", + "gender": "male" }, "message": "SBRotator and LSRotator are both great, allowing you to use your iPhone/iPod in landscape all the time! ", "created_time": "2010-10-02T16:33:35+0000" @@ -13,7 +14,8 @@ "id": "7568536355_437900891355_13765453", "from": { "name": "Alex Smith", - "id": "667992894" + "id": "667992894", + "gender": "male" }, "message": "Been wondering I this is what I want to do?", "created_time": "2010-10-02T16:37:14+0000" @@ -22,7 +24,8 @@ "id": "7568536355_437900891355_13765543", "from": { "name": "Mohsin Saleem", - "id": "1297248120" + "id": "1297248120", + "gender": "male" }, "message": "Blackrain was the only jailbreak which was all time best.", "created_time": "2010-10-02T16:54:03+0000" @@ -31,7 +34,8 @@ "id": "7568536355_437900891355_13765693", "from": { "name": "Jocelyn Martina Hood", - "id": "535531069" + "id": "535531069", + "gender": "female" }, "message": "I admit it. My phone is not jailbroken. But that's only because I'm too chicken. What are some benefits?... Drawbacks?", "created_time": "2010-10-02T17:20:44+0000" @@ -40,7 +44,8 @@ "id": "7568536355_437900891355_13765986", "from": { "name": "Bj Melo", - "id": "1402383719" + "id": "1402383719", + "gender": "male" }, "message": "Can't believe you mention My3G, but not the superior 3G Unrestrictor.", "created_time": "2010-10-02T18:13:16+0000" @@ -49,7 +54,8 @@ "id": "7568536355_437900891355_13766497", "from": { "name": "Max Kurmayev", - "id": "1605905218" + "id": "1605905218", + "gender": "male" }, "message": "I think the LockInfo has more options than Element LockScreen Cydget by teehan and lax and it's much faster.\n\nCheck out this LockInfo install and tutorial\n\nhttp://tinyurl.com/LockInfo-iPhoneTechie", "created_time": "2010-10-02T20:05:18+0000" @@ -58,7 +64,8 @@ "id": "7568536355_437900891355_13767800", "from": { "name": "Adrian Valera", - "id": "833828624" + "id": "833828624", + "gender": "male" }, "message": "Cool Top 10", "created_time": "2010-10-03T01:58:01+0000" @@ -67,7 +74,8 @@ "id": "7568536355_437900891355_13768553", "from": { "name": "Rahul Narasimha Akmol", - "id": "625158327" + "id": "625158327", + "gender": "male" }, "message": "Really a good post which showed me the better amplified iphone ", "created_time": "2010-10-03T04:58:05+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_feed b/webapp/plugins/facebook/tests/testdata/7568536355_feed index cb21e93633..baf1ce1c5e 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_feed +++ b/webapp/plugins/facebook/tests/testdata/7568536355_feed @@ -49,7 +49,8 @@ "id": "10151728144886356_28166223", "from": { "name": "Paul Cassidy", - "id": "100000028811048" + "id": "100000028811048", + "gender": "male" }, "message": "Maybe you should have added a 6th box labelled \"Safe from spying by your own government\". That one would go unticked for all of them, I'd say.", "can_remove": false, @@ -61,7 +62,8 @@ "id": "10151728144886356_28166189", "from": { "name": "Dave Myers", - "id": "44100633" + "id": "44100633", + "gender": "male" }, "message": "Protect from everyone but the government, of course.", "can_remove": false, @@ -73,7 +75,8 @@ "id": "10151728144886356_28166962", "from": { "name": "Dave F. Samuel", - "id": "18417420" + "id": "18417420", + "gender": "male" }, "message": "This is missing a 6th box... \"Hands data over to the NSA\"", "can_remove": false, @@ -85,7 +88,8 @@ "id": "10151728144886356_28166229", "from": { "name": "Alex Wright", - "id": "518042907" + "id": "518042907", + "gender": "male" }, "message": "Well good thing the NSA doesn't give a crap and vacuums up all the data anyway.\n\nDon't think for a SECOND that large scale corporate and government forces don't use your data against you and have been since the early 1960's. \n\nEven implying that NSA doesn't already hold all of the crypto keys to unlock ALL of the encryption standards.\n\nWhat the HELL do you think they're building this for:\n\nhttp://en.wikipedia.org/wiki/Utah_Data_Center", "can_remove": false, @@ -97,7 +101,8 @@ "id": "10151728144886356_28166207", "from": { "name": "Ben Stanley", - "id": "1046979495" + "id": "1046979495", + "gender": "male" }, "message": "Doesn't really matter if they keep 'improving' my privacy settings, though.", "can_remove": false, @@ -109,7 +114,8 @@ "id": "10151728144886356_28168085", "from": { "name": "Christina Rockwood", - "id": "1064132204" + "id": "1064132204", + "gender": "female" }, "message": "\"Protecting\" my data? LOL!....interesting that i browse products on other websites only to find those exact same products appearing in the ads on my FB page later.... i wonder how FB could POSSIBLY have known the exact products i was browsing for on completely different websites.... coincidence? Doubtful... ", "can_remove": false, @@ -121,7 +127,8 @@ "id": "10151728144886356_28167048", "from": { "name": "Sean Lancaster", - "id": "22419216" + "id": "22419216", + "gender": "male" }, "message": "\"everyone else, not so much\" as you proceed to show a chart showing Google and a few others with green nearly all across or all across. Are they not part of \"everyone else\"?", "can_remove": false, @@ -133,7 +140,8 @@ "id": "10151728144886356_28166298", "from": { "name": "Jan Gvdp", - "id": "61309586" + "id": "61309586", + "gender": "male" }, "message": "of course you protect it, when you can sell it", "can_remove": false, @@ -145,7 +153,8 @@ "id": "10151728144886356_28168089", "from": { "name": "Leonardo Dutra", - "id": "100000047561578" + "id": "100000047561578", + "gender": "male" }, "message": "Why is Facebook on the title if Google, and others, are one step ahead?", "can_remove": false, @@ -157,7 +166,8 @@ "id": "10151728144886356_28166548", "from": { "name": "Leo Gharapetian", - "id": "1280168112" + "id": "1280168112", + "gender": "male" }, "message": "In progress and pending should not have a green box!", "can_remove": false, @@ -169,7 +179,8 @@ "id": "10151728144886356_28166372", "from": { "name": "Damon Freinik", - "id": "1655356726" + "id": "1655356726", + "gender": "male" }, "message": "If you put it on the internets kiss it goodbye...", "can_remove": false, @@ -181,7 +192,8 @@ "id": "10151728144886356_28166201", "from": { "name": "Joe McLaughlin", - "id": "100001277313216" + "id": "100001277313216", + "gender": "male" }, "message": "The difference is, Amazon dont catalog every bit of your being for evil. They just keep a log of what you bought so you can see it later..", "can_remove": false, @@ -193,7 +205,8 @@ "id": "10151728144886356_28175126", "from": { "name": "Joe Pepersack", - "id": "556987515" + "id": "556987515", + "gender": "male" }, "message": "Of course they protect it. Your data is their product. If they let someone steal it, they can't sell it.", "can_remove": false, @@ -205,7 +218,8 @@ "id": "10151728144886356_28166457", "from": { "name": "Eric Tiberius Blue", - "id": "560992307" + "id": "560992307", + "gender": "male" }, "message": "Of course they protect it. They want to make as much money off of it as possible.... and keep it safe for the NSA to review.", "can_remove": false, @@ -217,7 +231,8 @@ "id": "10151728144886356_28174387", "from": { "name": "Matt Stratton", - "id": "500557137" + "id": "500557137", + "gender": "male" }, "message": "As mentioned, by some others, the whole \"I was looking at honda.com and then Facebook showed me ads for Hondas\" is not because Facebook is spying out you. \n\nIt's because Facebook and Honda participate in a data exchange where Honda sets a cookie that Facebook (or anyone else who is part of that exchange) can read/use. \n\nIs it morally right? Dunno. Is Facebook \"tracking you without your knowledge\"? Sorta. But not the way you think it is.", "can_remove": false, @@ -229,7 +244,8 @@ "id": "10151728144886356_28175518", "from": { "name": "Jarek Niskiewicz", - "id": "100000641653272" + "id": "100000641653272", + "gender": "male" }, "message": "Sure they do, makes it so much more valuable to their clients :D", "can_remove": false, @@ -241,7 +257,8 @@ "id": "10151728144886356_28170157", "from": { "name": "Banlu Anumart", - "id": "100003784651128" + "id": "100003784651128", + "gender": "male" }, "message": "Good guy Dropbox.", "can_remove": false, @@ -253,7 +270,8 @@ "id": "10151728144886356_28166302", "from": { "name": "Daniel Fugisawa", - "id": "564295957" + "id": "564295957", + "gender": "male" }, "message": "Yeah, right. Just to sell it to the highest bidder for a higher price. And to give it away to all P5 + Israel intelligence services.", "can_remove": false, @@ -265,7 +283,8 @@ "id": "10151728144886356_28166245", "from": { "name": "Meghan Carnowski", - "id": "100000290596817" + "id": "100000290596817", + "gender": "female" }, "message": "Richard?", "message_tags": [ @@ -286,7 +305,8 @@ "id": "10151728144886356_28176143", "from": { "name": "Chris Whitman", - "id": "100000891619230" + "id": "100000891619230", + "gender": "male" }, "message": "It doesn't really matter how secure their databases are if hackers just get all of the data from all of them for hacking the nsa", "can_remove": false, @@ -298,7 +318,8 @@ "id": "10151728144886356_28173597", "from": { "name": "Michelle Genée", - "id": "888230692" + "id": "888230692", + "gender": "female" }, "message": "Jonathan FYI", "message_tags": [ @@ -319,7 +340,8 @@ "id": "10151728144886356_28173177", "from": { "name": "Ma Sheila A Magboo", - "id": "1291663317" + "id": "1291663317", + "gender": "female" }, "message": "Really?", "can_remove": false, @@ -331,7 +353,8 @@ "id": "10151728144886356_28171786", "from": { "name": "Diane Thomas", - "id": "1302225487" + "id": "1302225487", + "gender": "female" }, "message": "Thank you, Brian Thomas, and Facebook crew!!! :)", "message_tags": [ @@ -352,7 +375,8 @@ "id": "10151728144886356_28171258", "from": { "name": "Marcus Randall", - "id": "1049255840" + "id": "1049255840", + "gender": "male" }, "message": "Similar to comparing amored trucks vs pizza delivery drivers. Regardless, individuals are independant varriables when it comes to their privacy", "can_remove": false, @@ -416,7 +440,8 @@ "id": "7568536355_437894121355_13765492", "from": { "name": "Harald Chuchlik", - "id": "1479111505" + "id": "1479111505", + "gender": "male" }, "message": "Troll somewhere else", "created_time": "2010-10-02T16:44:28+0000" @@ -425,7 +450,8 @@ "id": "7568536355_437894121355_13765969", "from": { "name": "Chad Settlemier", - "id": "535362181" + "id": "535362181", + "gender": "male" }, "message": "What about iPhone 4 top ten Jailbroken apps?", "created_time": "2010-10-02T18:10:52+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_posts b/webapp/plugins/facebook/tests/testdata/7568536355_posts index 351664d2e5..cfed03a333 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_posts +++ b/webapp/plugins/facebook/tests/testdata/7568536355_posts @@ -37,7 +37,8 @@ "id": "7568536355_437900891355_13767800", "from": { "name": "Adrian Valera", - "id": "833828624" + "id": "833828624", + "gender": "male" }, "message": "Cool Top 10", "created_time": "2010-10-03T01:58:01+0000" @@ -46,7 +47,8 @@ "id": "7568536355_437900891355_13768553", "from": { "name": "Rahul Narasimha Akmol", - "id": "625158327" + "id": "625158327", + "gender": "male" }, "message": "Really a good post which showed me the better amplified iphone ", "created_time": "2010-10-03T04:58:05+0000" @@ -90,7 +92,8 @@ "data": [ { "name": "Tigger Pike", - "id": "641265671" + "id": "641265671", + "gender": "male" } ], "count": 12 @@ -101,7 +104,8 @@ "id": "7568536355_437894121355_13765492", "from": { "name": "Harald Chuchlik", - "id": "1479111505" + "id": "1479111505", + "gender": "male" }, "message": "Troll somewhere else", "created_time": "2010-10-02T16:44:28+0000" @@ -110,7 +114,8 @@ "id": "7568536355_437894121355_13765969", "from": { "name": "Chad Settlemier", - "id": "535362181" + "id": "535362181", + "gender": "male" }, "message": "What about iPhone 4 top ten Jailbroken apps?", "created_time": "2010-10-02T18:10:52+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 b/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 index 68c622df43..b2b9cd3e56 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 +++ b/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 @@ -37,7 +37,8 @@ "id": "7568536355_437660146355_13761242", "from": { "name": "Christene Snively", - "id": "100001078428730" + "id": "100001078428730", + "gender": "female" }, "message": "Five things every girl does before she meets her boyfriend - LOL!\n\nhttp://www.facebook.com/profile.php?id=164464470231080", "created_time": "2010-10-01T19:54:26+0000" @@ -46,7 +47,8 @@ "id": "7568536355_437660146355_13761476", "from": { "name": "Bill Goodman", - "id": "1184584231" + "id": "1184584231", + "gender": "male" }, "message": "^^^^^^^^^^^^^^^^\nspammer", "created_time": "2010-10-01T20:35:35+0000" @@ -55,7 +57,8 @@ "id": "7568536355_437660146355_13763960", "from": { "name": "Kenneth Lam", - "id": "533302090" + "id": "533302090", + "gender": "male" }, "message": "I use SUPER (freeware)\nhttp://www.erightsoft.com/SUPER.html", "created_time": "2010-10-02T08:19:38+0000" diff --git a/webapp/plugins/facebook/tests/testdata/833828624 b/webapp/plugins/facebook/tests/testdata/833828624 index 13759b4bbd..6fe58b6cb7 100644 --- a/webapp/plugins/facebook/tests/testdata/833828624 +++ b/webapp/plugins/facebook/tests/testdata/833828624 @@ -4,6 +4,7 @@ "first_name": "Adrian", "last_name": "Valera", "link": "http://www.facebook.com/avo77", + "gender": "male", "locale": "es_LA", "updated_time": "2010-06-13T00:37:21+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/me b/webapp/plugins/facebook/tests/testdata/me index 18cd4fa823..cd4308caae 100644 --- a/webapp/plugins/facebook/tests/testdata/me +++ b/webapp/plugins/facebook/tests/testdata/me @@ -3,7 +3,8 @@ "name": "Gina Trapani", "location": { "id": "110714572282163", - "name": "San Diego, California" + "name": "San Diego, California", + "gender": "female" }, "about": "Blogger and software developer. Project Director at Expert Labs. Co-host of This Week in Google." } \ No newline at end of file diff --git a/webapp/session/forgot.php b/webapp/session/forgot.php index 2cd5e4e88f..c974aeac63 100644 --- a/webapp/session/forgot.php +++ b/webapp/session/forgot.php @@ -30,4 +30,4 @@ require_once 'init.php'; $controller = new ForgotPasswordController(); -echo $controller->go(); + From a4eded9875ce9166809f80c106cd32ad997b9f32 Mon Sep 17 00:00:00 2001 From: anna Date: Mon, 9 Jun 2014 02:52:47 +0300 Subject: [PATCH 05/40] Getting data from DB for gender analysis --- .../_lib/dao/class.FavoritePostMySQLDAO.php | 849 +-- webapp/_lib/dao/class.PostMySQLDAO.php | 5478 +++++++++-------- webapp/_lib/dao/interface.FavoritePostDAO.php | 4 + webapp/_lib/dao/interface.PostDAO.php | 3 + 4 files changed, 3330 insertions(+), 3004 deletions(-) diff --git a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php index 29999b7920..b8206da83c 100755 --- a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php +++ b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php @@ -33,373 +33,498 @@ * @author Amy Unruh * */ -class FavoritePostMySQLDAO extends PostMySQLDAO implements FavoritePostDAO { - - public function addFavorite($favoriter_id, array $vals, $entities = null, $user_array = null) { - if (!$favoriter_id) { - throw new Exception("Error: favoriter/author user ID not set"); - } - // first add the post (if need be-- this post may have already been inserted). - $post = $this->getPost($vals['post_id'], $vals['network']); - if (!$post) { - $added_post = $this->addPostAndAssociatedInfo($vals, $entities, $user_array); - if (!$added_post) { - throw new Exception("Error: favorited post ID ". $vals['post_id'] . - " is not in storage and could not be inserted."); - } - } - - $q = "INSERT IGNORE INTO #prefix#favorites (post_id, author_user_id, fav_of_user_id, network) "; - $q .= "VALUES ( :post_id, :user_id, :fav_of_user_id, :network) "; - $vars = array( - ':post_id' => (string) $vals['post_id'], - ':user_id' => (string) $vals['author_user_id'], - ':fav_of_user_id' => (string) $favoriter_id, - ':network' => $vals['network'] - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $res = $this->execute($q, $vars); - return $this->getUpdateCount($res); - } - - public function unFavorite($post_id, $user_id, $network = 'twitter') { - $q = "DELETE FROM #prefix#favorites WHERE post_id = :post_id "; - $q .= "AND fav_of_user_id = :user_id AND network = :network"; - $vars = array( - ':post_id' => (string) $post_id, - ':user_id' => (string) $user_id, - ':network' => $network, - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $res = $this->execute($q, $vars); - return $this->getUpdateCount($res); - } - public function getAllFavoritePosts($owner_id, $network, $count, $page=1, $is_public = false) { - return $this->getAllFavoritePostsByUserID($owner_id, $network, $count, "pub_date", "DESC", null, - $page, false, $is_public); - } - public function getAllFavoritePostsUpperBound($owner_id, $network, $count, $ub) { - return $this->getAllFavoritePostsByUserID($owner_id, $network, $count, "pub_date", "DESC", $ub); - } - public function getAllFavoritePostsByUsername($username, $network, $count) { - return $this->getAllFavoritePostsByUsernameOrderedBy($username, $network, $count, "pub_date"); - } - - /** - * Get all favorited posts by a given user id, with configurable order by field and direction. - * Returns either an iterator or an array, as specified by $iterator. Supports pagination. - * @param int $owner_id - * @param str $network - * @param int $count - * @param str $order_by field name - * @param str $direction either "DESC" or "ASC - * @param int $ubound - * @param int $page - * @param bool $iterator - * @return array Posts with link object set or PostIterator - */ - private function getAllFavoritePostsByUserID($owner_id, $network, $count, $order_by="pub_date", $direction="DESC", - $ubound = null, $page=1, $iterator = false, $is_public = false) { - $direction = $direction=="DESC" ? "DESC": "ASC"; - $start_on_record = ($page - 1) * $count; - if ( !in_array($order_by, $this->REQUIRED_FIELDS) && !in_array($order_by, $this->OPTIONAL_FIELDS )) { - $order_by="pub_date"; - } - if ($is_public) { - $protected = ' AND p.is_protected = 0 '; - } else { - $protected = ''; - } - $q = "SELECT p.*, pub_date - interval #gmt_offset# hour AS adj_pub_date +class FavoritePostMySQLDAO extends PostMySQLDAO implements FavoritePostDAO { + public function addFavorite($favoriter_id, array $vals, $entities = null, $user_array = null) { + if (! $favoriter_id) { + throw new Exception ( "Error: favoriter/author user ID not set" ); + } + // first add the post (if need be-- this post may have already been inserted). + $post = $this->getPost ( $vals ['post_id'], $vals ['network'] ); + if (! $post) { + $added_post = $this->addPostAndAssociatedInfo ( $vals, $entities, $user_array ); + if (! $added_post) { + throw new Exception ( "Error: favorited post ID " . $vals ['post_id'] . " is not in storage and could not be inserted." ); + } + } + + $q = "INSERT IGNORE INTO #prefix#favorites (post_id, author_user_id, fav_of_user_id, network) "; + $q .= "VALUES ( :post_id, :user_id, :fav_of_user_id, :network) "; + $vars = array ( + ':post_id' => ( string ) $vals ['post_id'], + ':user_id' => ( string ) $vals ['author_user_id'], + ':fav_of_user_id' => ( string ) $favoriter_id, + ':network' => $vals ['network'] + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $res = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $res ); + } + public function unFavorite($post_id, $user_id, $network = 'twitter') { + $q = "DELETE FROM #prefix#favorites WHERE post_id = :post_id "; + $q .= "AND fav_of_user_id = :user_id AND network = :network"; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':user_id' => ( string ) $user_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $res = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $res ); + } + public function getAllFavoritePosts($owner_id, $network, $count, $page = 1, $is_public = false) { + return $this->getAllFavoritePostsByUserID ( $owner_id, $network, $count, "pub_date", "DESC", null, $page, false, $is_public ); + } + public function getAllFavoritePostsUpperBound($owner_id, $network, $count, $ub) { + return $this->getAllFavoritePostsByUserID ( $owner_id, $network, $count, "pub_date", "DESC", $ub ); + } + public function getAllFavoritePostsByUsername($username, $network, $count) { + return $this->getAllFavoritePostsByUsernameOrderedBy ( $username, $network, $count, "pub_date" ); + } + + /** + * Get all favorited posts by a given user id, with configurable order by field and direction. + * Returns either an iterator or an array, as specified by $iterator. Supports pagination. + * + * @param int $owner_id + * @param str $network + * @param int $count + * @param str $order_by + * field name + * @param str $direction + * either "DESC" or "ASC + * @param int $ubound + * @param int $page + * @param bool $iterator + * @return array Posts with link object set or PostIterator + */ + private function getAllFavoritePostsByUserID($owner_id, $network, $count, $order_by = "pub_date", $direction = "DESC", $ubound = null, $page = 1, $iterator = false, $is_public = false) { + $direction = $direction == "DESC" ? "DESC" : "ASC"; + $start_on_record = ($page - 1) * $count; + if (! in_array ( $order_by, $this->REQUIRED_FIELDS ) && ! in_array ( $order_by, $this->OPTIONAL_FIELDS )) { + $order_by = "pub_date"; + } + if ($is_public) { + $protected = ' AND p.is_protected = 0 '; + } else { + $protected = ''; + } + $q = "SELECT p.*, pub_date - interval #gmt_offset# hour AS adj_pub_date FROM (#prefix#posts p INNER JOIN #prefix#favorites f on f.post_id = p.post_id) WHERE f.fav_of_user_id = :owner_id AND p.network=:network "; - $q .= $protected; - if ($order_by == 'reply_count_cache') { - $q .= "AND reply_count_cache > 0 "; - } - if ($order_by == 'retweet_count_cache') { - $q .= "AND retweet_count_cache > 0 "; - } - if ($ubound > 0) { - $q .= "AND p.post_id < :ubound "; - } - $q .= " ORDER BY ".$order_by." ".$direction." "; - if ($count > 0) { - $q .= "LIMIT :start_on_record, :limit"; - } - $vars = array( - ':owner_id'=>$owner_id, - ':network'=>$network, - ':limit'=>$count, - ':start_on_record'=>(int)$start_on_record - ); - if ($ubound > 0) { - $vars[':ubound'] = $ubound; - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - /** - * Get favorited posts by the given username. - * Returns either an iterator or an array, as specified by $iterator. - * @param str $author_username - * @param str $network - * @param int $count - * @param str $order_by - * @param int $in_last_x_days - * @param bool $iterator - * @return array Posts with link object set or PostIterator - */ - private function getAllFavoritePostsByUsernameOrderedBy($author_username, $network="twitter", $count=0, - $order_by="pub_date", $in_last_x_days = 0, $iterator = false) { - if ( !in_array($order_by, $this->REQUIRED_FIELDS) && !in_array($order_by, $this->OPTIONAL_FIELDS )) { - $order_by="pub_date"; - } - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network - ); - $q = "SELECT p.*, pub_date - interval #gmt_offset# hour as adj_pub_date FROM + $q .= $protected; + if ($order_by == 'reply_count_cache') { + $q .= "AND reply_count_cache > 0 "; + } + if ($order_by == 'retweet_count_cache') { + $q .= "AND retweet_count_cache > 0 "; + } + if ($ubound > 0) { + $q .= "AND p.post_id < :ubound "; + } + $q .= " ORDER BY " . $order_by . " " . $direction . " "; + if ($count > 0) { + $q .= "LIMIT :start_on_record, :limit"; + } + $vars = array ( + ':owner_id' => $owner_id, + ':network' => $network, + ':limit' => $count, + ':start_on_record' => ( int ) $start_on_record + ); + if ($ubound > 0) { + $vars [':ubound'] = $ubound; + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + + /** + * Get favorited posts by the given username. + * Returns either an iterator or an array, as specified by $iterator. + * + * @param str $author_username + * @param str $network + * @param int $count + * @param str $order_by + * @param int $in_last_x_days + * @param bool $iterator + * @return array Posts with link object set or PostIterator + */ + private function getAllFavoritePostsByUsernameOrderedBy($author_username, $network = "twitter", $count = 0, $order_by = "pub_date", $in_last_x_days = 0, $iterator = false) { + if (! in_array ( $order_by, $this->REQUIRED_FIELDS ) && ! in_array ( $order_by, $this->OPTIONAL_FIELDS )) { + $order_by = "pub_date"; + } + $vars = array ( + ':author_username' => $author_username, + ':network' => $network + ); + $q = "SELECT p.*, pub_date - interval #gmt_offset# hour as adj_pub_date FROM (#prefix#posts p INNER JOIN #prefix#favorites f on f.post_id = p.post_id) LEFT JOIN #prefix#users u on u.user_id = f.fav_of_user_id WHERE u.user_name = :author_username AND p.network=:network "; - - if ($in_last_x_days > 0) { - $q .= "AND pub_date >= DATE_SUB(CURDATE(), INTERVAL :in_last_x_days DAY) "; - $vars[':in_last_x_days'] = (int)$in_last_x_days; - } - if ($order_by == 'reply_count_cache') { - $q .= "AND reply_count_cache > 0 "; - } - if ($order_by == 'retweet_count_cache') { - $q .= "AND retweet_count_cache > 0 "; - } - $q .= " ORDER BY ".$order_by." DESC "; - if ($count) { - $q .= " LIMIT :limit"; - $vars[':limit'] = (int)$count; - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getAllFavoritePostsByUsernameIterator($username, $network, $count = 0) { - return $this->getAllFavoritePostsByUsernameOrderedBy($username, $network, $count, null, null, true); - } - - public function getAllFavoritePostsIterator($user_id, $network, $count) { - return $this->getAllFavoritePostsByUserID($user_id, $network, $count, "pub_date", "DESC", null, 1, true); - } - - public function getAllFavoritedPosts($author_user_id, $network, $count, $page=1) { - return $this->getAllFavoritedPostsForUserID($author_user_id, $network, $count, $order_by="pub_date", $page); - } - - /** - * Get all the favorited posts of a user. - * @TODO Use $order_by parameter to customize sort order. - * @param int $author_user_id - * @param str $network - * @param int $count - * @param str $order_by - * @param int $page - * @param bool $iterator Whether or not to return an iterator - * @returns array Post objects - */ - private function getAllFavoritedPostsForUserID($author_user_id, $network, $count, $order_by="pub_date", - $page=1, $iterator = false) { - // $direction = $direction=="DESC" ? "DESC": "ASC"; - $start_on_record = ($page - 1) * $count; - // order-by information currently hardwired; this will probably change - // if ( !in_array($order_by, $this->REQUIRED_FIELDS) && !in_array($orderaa_by, $this->OPTIONAL_FIELDS )) { - // $order_by="pub_date"; - // } - $q = "SELECT p.*, pub_date - interval #gmt_offset# hour AS adj_pub_date, "; - //TODO: Store favlike_count_cache during Twitter crawl so we don't do this dynamic GROUP BY fakeout - $q .= "count(*) AS favlike_count_cache "; - $q .= "FROM (#prefix#posts p INNER JOIN #prefix#favorites f on f.post_id = p.post_id) "; - $q .= "WHERE p.author_user_id = :author_user_id AND p.network = :network "; - $q .= "GROUP BY p.post_text ORDER BY YEARWEEK(p.pub_date) DESC, favlike_count_cache DESC, p.pub_date DESC "; - $q .= "LIMIT :start_on_record, :limit"; - $vars = array( - ':author_user_id'=>(string) $author_user_id, - ':network'=>$network, - ':limit'=>$count, - ':start_on_record'=>(int)$start_on_record - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getUsersWhoFavedPost($post_id, $network='twitter', $is_public = false) { - $q = "SELECT u.* FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#favorites as f on f.post_id = p.post_id "; - $q .= "INNER JOIN #prefix#users u on f.fav_of_user_id = u.user_id "; - $q .= "WHERE p.network=:network AND f.post_id=:post_id "; - if ($is_public) { - $q .= "AND p.is_protected = 0 "; - } - // could potentially order by follower count instead - $q .= " ORDER BY fav_timestamp desc "; - $vars = array( - ':post_id'=>(string) $post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - return $all_rows; - } - - public function getFavoritesFromOneYearAgo($fav_of_user_id, $network, $from_date=null) { - $q = "SELECT p.*, pub_date - interval #gmt_offset# hour AS adj_pub_date "; - $q .= "FROM #prefix#posts p INNER JOIN #prefix#favorites f on f.post_id = p.post_id + + if ($in_last_x_days > 0) { + $q .= "AND pub_date >= DATE_SUB(CURDATE(), INTERVAL :in_last_x_days DAY) "; + $vars [':in_last_x_days'] = ( int ) $in_last_x_days; + } + if ($order_by == 'reply_count_cache') { + $q .= "AND reply_count_cache > 0 "; + } + if ($order_by == 'retweet_count_cache') { + $q .= "AND retweet_count_cache > 0 "; + } + $q .= " ORDER BY " . $order_by . " DESC "; + if ($count) { + $q .= " LIMIT :limit"; + $vars [':limit'] = ( int ) $count; + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getAllFavoritePostsByUsernameIterator($username, $network, $count = 0) { + return $this->getAllFavoritePostsByUsernameOrderedBy ( $username, $network, $count, null, null, true ); + } + public function getAllFavoritePostsIterator($user_id, $network, $count) { + return $this->getAllFavoritePostsByUserID ( $user_id, $network, $count, "pub_date", "DESC", null, 1, true ); + } + public function getAllFavoritedPosts($author_user_id, $network, $count, $page = 1) { + return $this->getAllFavoritedPostsForUserID ( $author_user_id, $network, $count, $order_by = "pub_date", $page ); + } + + /** + * Get all the favorited posts of a user. + * @TODO Use $order_by parameter to customize sort order. + * + * @param int $author_user_id + * @param str $network + * @param int $count + * @param str $order_by + * @param int $page + * @param bool $iterator + * Whether or not to return an iterator + * @return s array Post objects + */ + private function getAllFavoritedPostsForUserID($author_user_id, $network, $count, $order_by = "pub_date", $page = 1, $iterator = false) { + // $direction = $direction=="DESC" ? "DESC": "ASC"; + $start_on_record = ($page - 1) * $count; + // order-by information currently hardwired; this will probably change + // if ( !in_array($order_by, $this->REQUIRED_FIELDS) && !in_array($orderaa_by, $this->OPTIONAL_FIELDS )) { + // $order_by="pub_date"; + // } + $q = "SELECT p.*, pub_date - interval #gmt_offset# hour AS adj_pub_date, "; + // TODO: Store favlike_count_cache during Twitter crawl so we don't do this dynamic GROUP BY fakeout + $q .= "count(*) AS favlike_count_cache "; + $q .= "FROM (#prefix#posts p INNER JOIN #prefix#favorites f on f.post_id = p.post_id) "; + $q .= "WHERE p.author_user_id = :author_user_id AND p.network = :network "; + $q .= "GROUP BY p.post_text ORDER BY YEARWEEK(p.pub_date) DESC, favlike_count_cache DESC, p.pub_date DESC "; + $q .= "LIMIT :start_on_record, :limit"; + $vars = array ( + ':author_user_id' => ( string ) $author_user_id, + ':network' => $network, + ':limit' => $count, + ':start_on_record' => ( int ) $start_on_record + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getUsersWhoFavedPost($post_id, $network = 'twitter', $is_public = false) { + $q = "SELECT u.* FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#favorites as f on f.post_id = p.post_id "; + $q .= "INNER JOIN #prefix#users u on f.fav_of_user_id = u.user_id "; + $q .= "WHERE p.network=:network AND f.post_id=:post_id "; + if ($is_public) { + $q .= "AND p.is_protected = 0 "; + } + // could potentially order by follower count instead + $q .= " ORDER BY fav_timestamp desc "; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + return $all_rows; + } + public function getFavoritesFromOneYearAgo($fav_of_user_id, $network, $from_date = null) { + $q = "SELECT p.*, pub_date - interval #gmt_offset# hour AS adj_pub_date "; + $q .= "FROM #prefix#posts p INNER JOIN #prefix#favorites f on f.post_id = p.post_id WHERE f.fav_of_user_id = :fav_of_user_id AND p.network=:network AND p.is_protected = 0 "; - - $vars = array( - ':fav_of_user_id'=> $fav_of_user_id, - ':network'=>$network - ); - if (!isset($from_date)) { - $from_date = 'CURRENT_DATE()'; - } else { - $from_date = "'$from_date'"; - } - $q .= "AND (YEAR(pub_date)!=YEAR(CURRENT_DATE())) "; - $q .= "AND (DAYOFMONTH(pub_date)=DAYOFMONTH($from_date)) AND (MONTH(pub_date)=MONTH($from_date)) "; - $q .= "ORDER BY pub_date DESC LIMIT 5 "; - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - $ps = $this->execute($q, $vars); - $rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - foreach ($rows as $row) { - $posts[] = new Post($row); - } - return $posts; - } - - public function getUsersWhoFavoritedMostOfYourPosts($author_user_id, $network, $last_x_days) { - //$q = "SELECT u.user_name, fav_of_user_id, count(f.post_id) AS total_likes from tu_favorites f "; - $q = "SELECT * FROM ( "; - $q .= "SELECT u.*, count(f.post_id) AS total_likes from #prefix#favorites f "; - $q .= "INNER JOIN #prefix#users u ON u.user_id = f.fav_of_user_id "; - $q .= "INNER JOIN #prefix#posts p ON f.post_id = p.post_id "; - $q .= "WHERE f.author_user_id = :author_user_id and f.network=:network "; - $q .= "AND p.pub_date >= date_sub(current_date, INTERVAL :last_x_days day) "; - $q .= "GROUP BY f.fav_of_user_id ORDER BY total_likes DESC"; - $q .= ") favs WHERE favs.total_likes > 1 LIMIT 3"; - - $vars = array( - ':author_user_id'=> $author_user_id, - ':network'=>$network, - ':last_x_days'=>$last_x_days - ); - - //echo Utils::mergeSQLVars($q, $vars); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - $ps = $this->execute($q, $vars); - $rows = $this->getDataRowsAsArrays($ps); - $users = array(); - foreach ($rows as $row) { - $user = new User($row); - $user->total_likes = $row['total_likes']; - $users[] = $user; - } - return $users; - } + + $vars = array ( + ':fav_of_user_id' => $fav_of_user_id, + ':network' => $network + ); + if (! isset ( $from_date )) { + $from_date = 'CURRENT_DATE()'; + } else { + $from_date = "'$from_date'"; + } + $q .= "AND (YEAR(pub_date)!=YEAR(CURRENT_DATE())) "; + $q .= "AND (DAYOFMONTH(pub_date)=DAYOFMONTH($from_date)) AND (MONTH(pub_date)=MONTH($from_date)) "; + $q .= "ORDER BY pub_date DESC LIMIT 5 "; + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + foreach ( $rows as $row ) { + $posts [] = new Post ( $row ); + } + return $posts; + } + public function getUsersWhoFavoritedMostOfYourPosts($author_user_id, $network, $last_x_days) { + // $q = "SELECT u.user_name, fav_of_user_id, count(f.post_id) AS total_likes from tu_favorites f "; + $q = "SELECT * FROM ( "; + $q .= "SELECT u.*, count(f.post_id) AS total_likes from #prefix#favorites f "; + $q .= "INNER JOIN #prefix#users u ON u.user_id = f.fav_of_user_id "; + $q .= "INNER JOIN #prefix#posts p ON f.post_id = p.post_id "; + $q .= "WHERE f.author_user_id = :author_user_id and f.network=:network "; + $q .= "AND p.pub_date >= date_sub(current_date, INTERVAL :last_x_days day) "; + $q .= "GROUP BY f.fav_of_user_id ORDER BY total_likes DESC"; + $q .= ") favs WHERE favs.total_likes > 1 LIMIT 3"; + + $vars = array ( + ':author_user_id' => $author_user_id, + ':network' => $network, + ':last_x_days' => $last_x_days + ); + + // echo Utils::mergeSQLVars($q, $vars); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + $users = array (); + foreach ( $rows as $row ) { + $user = new User ( $row ); + $user->total_likes = $row ['total_likes']; + $users [] = $user; + } + return $users; + } + public function getGenderOfFavoriters($post_id) { + $q = "SELECT #prefix#users.gender, COUNT(*) as count_gender FROM #prefix#favorites, #prefix#users "; + $q .= "WHERE #prefix#favorites.post_id = :post_id "; + $q .= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; + $q .= "GROUP BY #prefix#users.gender"; + + $vars = array ( + ':post_id' => $post_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + // echo "res=" . Utils::varDumpToString($rows) . "\n"; + $gender = array (); + foreach ( $rows as $row ) { + if ($row ['gender'] == "female") + $gender ['female_likes_count'] = $row ['count_gender']; + if ($row ['gender'] == "male") + $gender ['male_likes_count'] = $row ['count_gender']; + } + return $gender; + } + public function getGenderOfCommenters($post_id) { + $q = "SELECT #prefix#users.gender, COUNT(*) as count_gender FROM #prefix#posts, #prefix#users "; + $q .= "WHERE #prefix#posts.in_reply_to_post_id = :post_id "; + $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; + $q .= "GROUP BY #prefix#users.gender"; + + $vars = array ( + ':post_id' => $post_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + // echo "res=" . Utils::varDumpToString($rows) . "\n"; + $gender = array (); + foreach ( $rows as $row ) { + if ($row ['gender'] == "female") + $gender ['female_comm_count'] = $row ['count_gender']; + if ($row ['gender'] == "male") + $gender ['male_comm_count'] = $row ['count_gender']; + } + return $gender; + } + + // public function getFavoritedToday($author_user_id, $network) { + // echo "getFavoritedToday"; + // $q = "SELECT * FROM #prefix#posts "; + // $q .= "WHERE author_user_id = :author_user_id AND network = :network "; + // $q .= "AND DATE(pub_date - interval #gmt_offset# hour) = CURRENT_DATE() "; + // $q .= "AND reply_count_cache + favlike_count_cache = "; + // $q .= "(SELECT MAX(reply_count_cache + favlike_count_cache) FROM #prefix#posts "; + // $q .= "WHERE author_user_id = :author_user_id AND network = :network "; + // $q .= "AND DATE(pub_date - interval #gmt_offset# hour) = CURRENT_DATE()) "; + + // $vars = array( + // ':author_user_id'=> $author_user_id, + // ':network'=>$network + // ); + // if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } + + // $ps = $this->execute($q, $vars); + // $rows = $this->getDataRowsAsArrays($ps); + // $posts = array(); + // foreach ($rows as $row) { + // Post $post = new Post($row); + // $q = "SELECT #prefix#users.gender, COUNT(*) as count_gender FROM #prefix#favorites, #prefix#users "; + // $q .= "WHERE #prefix#favorites.post_id = ".$post->post_id." "; + // $q.= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; + // $q .= "GROUP BY #prefix#users.gender"; + + // if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } + + // $ps_likes = $this->execute($q); + // $rows_likes = $this->getDataRowsAsArrays($ps_likes); + + // foreach ($rows_likes as $row_likes) { + // if ($row_likes['gender'] == "female") + // $post->female_likes_count = $row_likes['count_gender']; + // if ($row_likes['gender'] == "male") + // $post->male_likes_count = $row_likes['count_gender']; + // } + + // $q = "SELECT #prefix#users.gender, COUNT(*) as count_gender FROM #prefix#posts, #prefix#users "; + // $q .= "WHERE #prefix#posts.in_reply_to_post_id = ".$post->post_id." "; + // $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; + // $q .= "GROUP BY #prefix#users.gender"; + + // if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } + + // $ps_comm = $this->execute($q); + // $rows_comm = $this->getDataRowsAsArrays($ps_comm); + + // foreach ($rows_comm as $row_comm) { + // if ($row_comm['gender'] == "female") + // $post->female_comm_count = $row_comm['count_gender']; + // if ($row_comm['gender'] == "male") + // $post->male_comm_count = $row_comm['count_gender']; + // } + // $posts[] = $post; + // } + + // return $posts; + // } } diff --git a/webapp/_lib/dao/class.PostMySQLDAO.php b/webapp/_lib/dao/class.PostMySQLDAO.php index c25f9b8ee8..c2e5d32471 100644 --- a/webapp/_lib/dao/class.PostMySQLDAO.php +++ b/webapp/_lib/dao/class.PostMySQLDAO.php @@ -29,2652 +29,2846 @@ * @copyright 2009-2013 Gina Trapani, Mark Wilkie * @author Gina Trapani */ -class PostMySQLDAO extends PDODAO implements PostDAO { - - /** - * The minimum number of characters required for fulltext queries. - * @var int - */ - const FULLTEXT_CHAR_MINIMUM = 4; - - /** - * Fields required for a post. - * @var array - */ - var $REQUIRED_FIELDS = array('post_id', 'author_username','author_fullname','author_avatar','author_user_id', - 'post_text','is_protected', 'pub_date','source','network'); - - /** - * Optional fields in a post - * @var array - */ - var $OPTIONAL_FIELDS = array('in_reply_to_user_id', 'in_reply_to_post_id','in_retweet_of_post_id', - 'in_rt_of_user_id', 'location', 'place', 'place_id', 'geo', 'retweet_count_cache', - 'retweet_count_api', 'old_retweet_count_cache', 'favlike_count_cache', - 'reply_count_cache', 'is_reply_by_friend', 'is_retweet_by_friend', - 'reply_retweet_distance', 'is_geo_encoded', 'author_follower_count', 'permalink'); - - /** - * Sanitizes an order_by argument to avoid SQL injection and ensure that the table you're ordering by is valid. - * @param string $order_by Column to order on. - * @return string Sanitized column name. If the column was invalid, "pub_date" is returned. - */ - public function sanitizeOrderBy($order_by) { - // some order_by clauses have a table attached to the front of them, remove this for checking. - $sans_table = preg_replace('/^[A-Za-z]\./', '', $order_by); - - // 'retweets' is a add'l query term (it represents a sum of two fields) that is not in the posts table and - // is used in retweet queries for fetching and ordering the retweets. - // If this is the term, just return it, otherwise process normally by checking the fields lists. - if ($order_by == "retweets") { - return $order_by; - } - if ( !in_array($sans_table, $this->REQUIRED_FIELDS) && !in_array($sans_table, $this->OPTIONAL_FIELDS )) { - $order_by="pub_date"; - } - - return $order_by; - } - - public function getPost($post_id, $network, $is_public = false) { - $q = "SELECT u.*, p.*, p.id as post_key, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "LEFT JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = p.network "; - $q .= "WHERE p.post_id=:post_id AND p.network=:network "; - if ($is_public) { - $q .= 'AND p.is_protected = 0 '; - } - $q .= ';'; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $post_row = $this->getDataRowAsArray($ps); - - if ($post_row) { - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".$post_row['id'].")"; - //echo Utils::mergeSQLVars($q, $vars); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine post and links - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $post->author = new User($post_row); - return $post; - } else { - return null; - } - } - - /** - * Add author object to post - * @param array $row - * @return Post post with author member variable set - */ - private function setPostWithAuthor($row) { - $user = new User($row, ''); - $post = new Post($row); - $post->author = $user; - return $post; - } - - public function getRepliesToPost($post_id, $network, $order_by = 'default', $unit = 'km', $is_public = false, - $count= 350, $page = 1) { - $start_on_record = ($page - 1) * $count; - - $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; - $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = :user_network "; - $q .= "WHERE p.network=:network AND in_reply_to_post_id=:post_id "; - if ($is_public) { - $q .= "AND u.is_protected = 0 "; - } - - $class_name = ucfirst($network) . 'Plugin'; - $ordering = @call_user_func($class_name.'::repliesOrdering', $order_by); - if (empty($ordering)) { - $ordering = "pub_date ASC "; - } else { - $ordering .= ", pub_date ASC "; - } - $q .= "ORDER BY " . $ordering. " "; - - if ($count > 0) { - $q .= "LIMIT :start_on_record, :limit;"; - } else { - $q .= ';'; - } - - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network, - ':user_network'=>($network == 'facebook page') ? 'facebook' : $network - ); - - if ($count > 0) { - $vars[':limit'] = (int)$count; - $vars['start_on_record'] = (int)$start_on_record; - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_post_rows = $this->getDataRowsAsArrays($ps); - - $replies = array(); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $location = array(); - foreach ($all_post_rows as $post_row) { - if ($post_row['is_geo_encoded'] == 1) { - $post_row['short_location'] = $this->processLocationRows($post_row['location']); - if ($unit == 'mi') { - $post_row['reply_retweet_distance'] = - $this->calculateDistanceInMiles($post_row['reply_retweet_distance']); - } - } - - $post = new Post($post_row); - $user = new User($post_row, ''); - $post->author = $user; - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $replies[] = $post; - } - } - return $replies; - } - - public function getRepliesToPostInRange($post_id, $network, $from, $until, $order_by = 'default', $unit = 'km', - $is_public = false, $count = 350, $page = 1) { - $start_on_record = ($page - 1) * $count; - - $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; - $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = :user_network "; - $q .= "WHERE p.network=:network AND in_reply_to_post_id=:post_id AND pub_date BETWEEN :from AND :until "; - if ($is_public) { - $q .= "AND u.is_protected = 0 "; - } - - $class_name = ucfirst($network) . 'Plugin'; - $ordering = @call_user_func($class_name.'::repliesOrdering', $order_by); - if (empty($ordering)) { - $ordering = 'pub_date ASC '; - } else { - $ordering .= ', pub_date ASC '; - } - $q .= 'ORDER BY ' . $ordering. ';'; - - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network, - ':user_network'=>($network == 'facebook page') ? 'facebook' : $network, - ':from' => $from, - ':until' => $until - ); - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_post_rows = $this->getDataRowsAsArrays($ps); - - $replies = array(); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $location = array(); - foreach ($all_post_rows as $post_row) { - if ($post_row['is_geo_encoded'] == 1) { - $post_row['short_location'] = $this->processLocationRows($post_row['location']); - if ($unit == 'mi') { - $post_row['reply_retweet_distance'] = - $this->calculateDistanceInMiles($post_row['reply_retweet_distance']); - } - } - - $post = new Post($post_row); - $user = new User($post_row, ''); - $post->author = $user; - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $replies[] = $post; - } - } - return $replies; - } - - public function getRepliesToPostIterator($post_id, $network, $order_by = 'default', $unit = 'km', - $is_public = false, $count = 350, $page = 1) { - $start_on_record = ($page - 1) * $count; - - $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; - $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = :user_network "; - $q .= "WHERE p.network=:network AND in_reply_to_post_id=:post_id "; - if ($is_public) { - $q .= "AND p.is_protected = 0 "; - } - if ($order_by == 'location') { - $q .= "ORDER BY geo_status, reply_retweet_distance, is_reply_by_friend DESC, follower_count DESC "; - } else { - $q .= "ORDER BY is_reply_by_friend DESC, follower_count DESC "; - } - $q .= "LIMIT :start_on_record, :limit;"; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network, - ':limit'=>(int)$count, - ':user_network'=>($network=='facebook page')?'facebook':$network, - ':start_on_record'=>(int)$start_on_record - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return new PostIterator($ps); - } - - public function getRetweetsOfPost($post_id, $network='twitter', $order_by = 'default', $unit = 'km', - $is_public = false, $count = null, $page = 1) { - $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; - $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users u on p.author_user_id = u.user_id "; - $q .= "WHERE p.network=:network AND in_retweet_of_post_id=:post_id "; - if ($is_public) { - $q .= "AND p.is_protected = 0 "; - } - if ($order_by == 'location') { - $q .= "ORDER BY geo_status, reply_retweet_distance, is_reply_by_friend DESC, follower_count desc "; - } else if ($order_by != 'default') { - $order_by = $this->sanitizeOrderBy($order_by); - $q .= "ORDER BY $order_by DESC "; - } else { - $q .= "ORDER BY is_reply_by_friend DESC, follower_count DESC, p.id DESC "; - } - - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - - if ($count != null && $count > 0) { - $start_on_record = ($page - 1) * $count; - $q .= 'LIMIT :start_on_record, :limit'; - $vars[':limit'] = (int)$count; - $vars[':start_on_record'] = (int)$start_on_record; - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - $retweets = array(); - $location = array(); - foreach ($all_rows as $row) { - if ($row['is_geo_encoded'] == 1) { - $row['short_location'] = $this->processLocationRows($row['location']); - if ($unit == 'mi') { - $row['reply_retweet_distance'] = $this->calculateDistanceInMiles($row['reply_retweet_distance']); - } - } - $retweets[] = $this->setPostWithAuthor($row); - } - return $retweets; - } - - public function getRelatedPostsArray($post_id, $network='twitter', $is_public = false, $count = 350, $page = 1, - $geo_encoded_only = true, $include_original_post = true) { - $start_on_record = ($page - 1) * $count; - $q = "SELECT * FROM ( +class PostMySQLDAO extends PDODAO implements PostDAO { + + /** + * The minimum number of characters required for fulltext queries. + * + * @var int + */ + const FULLTEXT_CHAR_MINIMUM = 4; + + /** + * Fields required for a post. + * + * @var array + */ + var $REQUIRED_FIELDS = array ( + 'post_id', + 'author_username', + 'author_fullname', + 'author_avatar', + 'author_user_id', + 'post_text', + 'is_protected', + 'pub_date', + 'source', + 'network' + ); + + /** + * Optional fields in a post + * + * @var array + */ + var $OPTIONAL_FIELDS = array ( + 'in_reply_to_user_id', + 'in_reply_to_post_id', + 'in_retweet_of_post_id', + 'in_rt_of_user_id', + 'location', + 'place', + 'place_id', + 'geo', + 'retweet_count_cache', + 'retweet_count_api', + 'old_retweet_count_cache', + 'favlike_count_cache', + 'reply_count_cache', + 'is_reply_by_friend', + 'is_retweet_by_friend', + 'reply_retweet_distance', + 'is_geo_encoded', + 'author_follower_count', + 'permalink' + ); + + /** + * Sanitizes an order_by argument to avoid SQL injection and ensure that the table you're ordering by is valid. + * + * @param string $order_by + * Column to order on. + * @return string Sanitized column name. If the column was invalid, "pub_date" is returned. + */ + public function sanitizeOrderBy($order_by) { + // some order_by clauses have a table attached to the front of them, remove this for checking. + $sans_table = preg_replace ( '/^[A-Za-z]\./', '', $order_by ); + + // 'retweets' is a add'l query term (it represents a sum of two fields) that is not in the posts table and + // is used in retweet queries for fetching and ordering the retweets. + // If this is the term, just return it, otherwise process normally by checking the fields lists. + if ($order_by == "retweets") { + return $order_by; + } + if (! in_array ( $sans_table, $this->REQUIRED_FIELDS ) && ! in_array ( $sans_table, $this->OPTIONAL_FIELDS )) { + $order_by = "pub_date"; + } + + return $order_by; + } + public function getPost($post_id, $network, $is_public = false) { + $q = "SELECT u.*, p.*, p.id as post_key, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "LEFT JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = p.network "; + $q .= "WHERE p.post_id=:post_id AND p.network=:network "; + if ($is_public) { + $q .= 'AND p.is_protected = 0 '; + } + $q .= ';'; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $post_row = $this->getDataRowAsArray ( $ps ); + + if ($post_row) { + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . $post_row ['id'] . ")"; + // echo Utils::mergeSQLVars($q, $vars); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine post and links + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $post->author = new User ( $post_row ); + return $post; + } else { + return null; + } + } + + /** + * Add author object to post + * + * @param array $row + * @return Post post with author member variable set + */ + private function setPostWithAuthor($row) { + $user = new User ( $row, '' ); + $post = new Post ( $row ); + $post->author = $user; + return $post; + } + public function getRepliesToPost($post_id, $network, $order_by = 'default', $unit = 'km', $is_public = false, $count = 350, $page = 1) { + $start_on_record = ($page - 1) * $count; + + $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; + $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = :user_network "; + $q .= "WHERE p.network=:network AND in_reply_to_post_id=:post_id "; + if ($is_public) { + $q .= "AND u.is_protected = 0 "; + } + + $class_name = ucfirst ( $network ) . 'Plugin'; + $ordering = @call_user_func ( $class_name . '::repliesOrdering', $order_by ); + if (empty ( $ordering )) { + $ordering = "pub_date ASC "; + } else { + $ordering .= ", pub_date ASC "; + } + $q .= "ORDER BY " . $ordering . " "; + + if ($count > 0) { + $q .= "LIMIT :start_on_record, :limit;"; + } else { + $q .= ';'; + } + + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network, + ':user_network' => ($network == 'facebook page') ? 'facebook' : $network + ); + + if ($count > 0) { + $vars [':limit'] = ( int ) $count; + $vars ['start_on_record'] = ( int ) $start_on_record; + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + + $replies = array (); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $location = array (); + foreach ( $all_post_rows as $post_row ) { + if ($post_row ['is_geo_encoded'] == 1) { + $post_row ['short_location'] = $this->processLocationRows ( $post_row ['location'] ); + if ($unit == 'mi') { + $post_row ['reply_retweet_distance'] = $this->calculateDistanceInMiles ( $post_row ['reply_retweet_distance'] ); + } + } + + $post = new Post ( $post_row ); + $user = new User ( $post_row, '' ); + $post->author = $user; + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $replies [] = $post; + } + } + return $replies; + } + public function getRepliesToPostInRange($post_id, $network, $from, $until, $order_by = 'default', $unit = 'km', $is_public = false, $count = 350, $page = 1) { + $start_on_record = ($page - 1) * $count; + + $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; + $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = :user_network "; + $q .= "WHERE p.network=:network AND in_reply_to_post_id=:post_id AND pub_date BETWEEN :from AND :until "; + if ($is_public) { + $q .= "AND u.is_protected = 0 "; + } + + $class_name = ucfirst ( $network ) . 'Plugin'; + $ordering = @call_user_func ( $class_name . '::repliesOrdering', $order_by ); + if (empty ( $ordering )) { + $ordering = 'pub_date ASC '; + } else { + $ordering .= ', pub_date ASC '; + } + $q .= 'ORDER BY ' . $ordering . ';'; + + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network, + ':user_network' => ($network == 'facebook page') ? 'facebook' : $network, + ':from' => $from, + ':until' => $until + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + + $replies = array (); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $location = array (); + foreach ( $all_post_rows as $post_row ) { + if ($post_row ['is_geo_encoded'] == 1) { + $post_row ['short_location'] = $this->processLocationRows ( $post_row ['location'] ); + if ($unit == 'mi') { + $post_row ['reply_retweet_distance'] = $this->calculateDistanceInMiles ( $post_row ['reply_retweet_distance'] ); + } + } + + $post = new Post ( $post_row ); + $user = new User ( $post_row, '' ); + $post->author = $user; + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $replies [] = $post; + } + } + return $replies; + } + public function getRepliesToPostIterator($post_id, $network, $order_by = 'default', $unit = 'km', $is_public = false, $count = 350, $page = 1) { + $start_on_record = ($page - 1) * $count; + + $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; + $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id AND u.network = :user_network "; + $q .= "WHERE p.network=:network AND in_reply_to_post_id=:post_id "; + if ($is_public) { + $q .= "AND p.is_protected = 0 "; + } + if ($order_by == 'location') { + $q .= "ORDER BY geo_status, reply_retweet_distance, is_reply_by_friend DESC, follower_count DESC "; + } else { + $q .= "ORDER BY is_reply_by_friend DESC, follower_count DESC "; + } + $q .= "LIMIT :start_on_record, :limit;"; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network, + ':limit' => ( int ) $count, + ':user_network' => ($network == 'facebook page') ? 'facebook' : $network, + ':start_on_record' => ( int ) $start_on_record + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return new PostIterator ( $ps ); + } + public function getRetweetsOfPost($post_id, $network = 'twitter', $order_by = 'default', $unit = 'km', $is_public = false, $count = null, $page = 1) { + $q = "SELECT u.*, p.*, (CASE p.is_geo_encoded WHEN 0 THEN 9 ELSE p.is_geo_encoded END) AS geo_status, "; + $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users u on p.author_user_id = u.user_id "; + $q .= "WHERE p.network=:network AND in_retweet_of_post_id=:post_id "; + if ($is_public) { + $q .= "AND p.is_protected = 0 "; + } + if ($order_by == 'location') { + $q .= "ORDER BY geo_status, reply_retweet_distance, is_reply_by_friend DESC, follower_count desc "; + } else if ($order_by != 'default') { + $order_by = $this->sanitizeOrderBy ( $order_by ); + $q .= "ORDER BY $order_by DESC "; + } else { + $q .= "ORDER BY is_reply_by_friend DESC, follower_count DESC, p.id DESC "; + } + + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + + if ($count != null && $count > 0) { + $start_on_record = ($page - 1) * $count; + $q .= 'LIMIT :start_on_record, :limit'; + $vars [':limit'] = ( int ) $count; + $vars [':start_on_record'] = ( int ) $start_on_record; + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + $retweets = array (); + $location = array (); + foreach ( $all_rows as $row ) { + if ($row ['is_geo_encoded'] == 1) { + $row ['short_location'] = $this->processLocationRows ( $row ['location'] ); + if ($unit == 'mi') { + $row ['reply_retweet_distance'] = $this->calculateDistanceInMiles ( $row ['reply_retweet_distance'] ); + } + } + $retweets [] = $this->setPostWithAuthor ( $row ); + } + return $retweets; + } + public function getRelatedPostsArray($post_id, $network = 'twitter', $is_public = false, $count = 350, $page = 1, $geo_encoded_only = true, $include_original_post = true) { + $start_on_record = ($page - 1) * $count; + $q = "SELECT * FROM ( SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date FROM #prefix#posts p WHERE (in_retweet_of_post_id=:post_id OR in_reply_to_post_id=:post_id) "; - - if ($include_original_post) { - $q .= "UNION + + if ($include_original_post) { + $q .= "UNION SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date FROM #prefix#posts p WHERE p.post_id=:post_id "; - } - $q .= ") s "; - if ($geo_encoded_only) { - $q .= "WHERE is_geo_encoded='1' "; - } - if ($is_public) { - if (!$geo_encoded_only) { - $q .= "WHERE "; - } else { - $q .= "AND "; - } - $q .= "is_protected = '0' "; - } - $q .= "ORDER BY reply_retweet_distance, location, id LIMIT :start_on_record, :limit;"; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network, - ':limit'=>(int)$count, - ':start_on_record'=>(int)$start_on_record - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getDataRowsAsArrays($ps); - } - - public function getRelatedPosts($post_id, $network='twitter', $is_public = false, $count = 350, $page = 1, - $geo_encoded_only = true, $include_original_post = true) { - $all_rows = $this->getRelatedPostsArray($post_id, $network, $is_public, $count, $page, $geo_encoded_only, - $include_original_post); - $responses = array(); - $location = array(); - foreach ($all_rows as $row) { - if ($row['is_geo_encoded'] == 1) { - $row['short_location'] = $this->processLocationRows($row['location']); - } - $responses[] = new Post($row); - } - return $responses; - } - - /** - * @TODO: Figure out a better way to do this, only returns 1-1 exchanges, not back-and-forth threads - */ - public function getPostsAuthorHasRepliedTo($author_id, $count, $network = 'twitter', $page=1, $public_only=true) { - $start_on_record = ($page - 1) * $count; - - $q = "SELECT p1.author_username as questioner_username, p1.author_avatar as questioner_avatar, "; - $q .= "p2.follower_count as answerer_follower_count, p1.post_id as question_post_id, "; - $q .= "p1.post_text as question, p1.pub_date + interval #gmt_offset# hour as question_adj_pub_date, "; - $q .= "p.post_id as answer_post_id, p.author_username as answerer_username, "; - $q .= "p1.is_protected as question_is_protected, p.is_protected as answer_is_protected, "; - $q .= "p.author_avatar as answerer_avatar, p3.follower_count as questioner_follower_count, "; - $q .= "p.post_text as answer, p.network, p.pub_date + interval #gmt_offset# hour as answer_adj_pub_date "; - $q .= "FROM #prefix#posts p INNER JOIN #prefix#posts p1 on p1.post_id = p.in_reply_to_post_id "; - $q .= "JOIN #prefix#users p2 on p2.user_id = :author_id "; - $q .= "JOIN #prefix#users p3 on p3.user_id = p.in_reply_to_user_id "; - $q .= "WHERE p.author_user_id = :author_id AND p.network=:network AND p.in_reply_to_post_id IS NOT null "; - if ($public_only) { - $q .= "AND p.is_protected = 0 AND p1.is_protected = 0 "; - } - $q .= "ORDER BY p.pub_date desc LIMIT :start_on_record, :limit;"; - $vars = array( - ':author_id'=>(string)$author_id, - ':network'=>$network, - ':start_on_record'=>(int)$start_on_record, - ':limit'=>(int)$count - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - $posts_replied_to = array(); - foreach ($all_rows as $row) { - $posts_replied_to[] = $row; - } - return $posts_replied_to; - } - - public function getExchangesBetweenUsers($author_id, $other_user_id, $network='twitter') { - $q = "SELECT p1.author_username as questioner_username, p1.author_avatar as questioner_avatar, "; - $q .= "p2.follower_count as questioner_follower_count, p1.post_id as question_post_id, "; - $q .= "p1.post_text as question, p1.pub_date + interval #gmt_offset# hour as question_adj_pub_date, "; - $q .= "p.post_id as answer_post_id, p.author_username as answerer_username, "; - $q .= "p.author_avatar as answerer_avatar, p3.follower_count as answerer_follower_count, "; - $q .= "p.post_text as answer, p.network, p.pub_date + interval #gmt_offset# hour as answer_adj_pub_date "; - $q .= "FROM #prefix#posts p INNER JOIN #prefix#posts p1 on p1.post_id = p.in_reply_to_post_id "; - $q .= "JOIN #prefix#users p2 on p2.user_id = :author_id "; - $q .= "JOIN #prefix#users p3 on p3.user_id = :other_user_id "; - $q .= "WHERE p.in_reply_to_post_id is not null AND p.network=:network AND "; - $q .= "(p.author_user_id = :author_id AND p1.author_user_id = :other_user_id) "; - $q .= "OR (p1.author_user_id = :author_id AND p.author_user_id = :other_user_id) "; - $q .= "ORDER BY answer_adj_pub_date DESC, question_adj_pub_date ASC "; - $vars = array( - ':author_id'=>(string)$author_id, - ':other_user_id'=>(string)$other_user_id, - ':network'=>$network - ); - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - - $all_rows = $this->getDataRowsAsArrays($ps); - $posts_replied_to = array(); - foreach ($all_rows as $row) { - $posts_replied_to[] = $row; - } - return $posts_replied_to; - } - - public function isPostInDB($post_id, $network) { - $q = "SELECT post_id FROM #prefix#posts "; - $q .= "WHERE post_id = :post_id AND network=:network;"; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getDataIsReturned($ps); - } - - public function isReplyInDB($post_id, $network) { - return $this->isPostInDB($post_id, $network); - } - - /** - * Increment reply cache count - * @param int $post_id - * @param str $network - * @return int Number of updated rows (1 if successful, 0 if not) - */ - private function incrementReplyCountCache($post_id, $network) { - return $this->incrementCacheCount($post_id, $network, "reply"); - } - - /** - * Update retweet count value from the Twitter API for 'new-style' retweets. - * @param int $post_id - * @param int $retweet_count_api - * @param str $network - * @return int Number of affected rows - */ - private function updateAPIRetweetCount($post_id, $retweet_count_api, $network) { - $q = "UPDATE #prefix#posts SET retweet_count_api = :count "; - $q .= "WHERE post_id = :post_id AND network=:network"; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network, - ':count' => $retweet_count_api - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - /** - * Update the 'in_retweet_of_post_id' field for an existing post. This will be done only if - * this field is not already set, which could be the case if the post was originally processed via - * the stream processing scripts. - * @param int $post_id - * @param int $in_retweet_of_post_id - * @param str $network - * @return int Number of affected rows - */ - private function updateInRetweetOfPostID($post_id, $in_retweet_of_post_id, $network) { - $q = "UPDATE #prefix#posts SET in_retweet_of_post_id = :rpid "; - $q .= "WHERE post_id = :post_id AND network=:network "; - $q .= "AND in_retweet_of_post_id IS NULL "; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network, - ':rpid' => (string)$in_retweet_of_post_id - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - /** - * Increment retweet cache count, for 'old-style' retweets. - * @param int $post_id - * @param str $network - * @return int number of updated rows (1 if successful, 0 if not) - */ - private function incrementRepostCountCache($post_id, $network) { - return $this->incrementCacheCount($post_id, $network, "old_retweet"); - } - - /** - * Increment retweet cache count, for new-style/native retweets. - * @param int $post_id - * @param str $network - * @return int number of updated rows (1 if successful, 0 if not) - */ - private function incrementNativeRTCountCache($post_id, $network) { - return $this->incrementCacheCount($post_id, $network, "native_retweet"); - } - - /** - * Increment either reply_count_cache, old_retweet_count_cache, retweet_count_cache, or favlike_count_cache - * @param int $post_id - * @param str $network - * @param str $fieldname either "reply" , "old_retweet" (old-style retweets), "native_retweet" or "favlike" - * @return int Number of updated rows - */ - private function incrementCacheCount($post_id, $network, $post_type) { - $fieldname = null; - if ($post_type == "reply") { - $fieldname = "reply"; - } elseif ($post_type == "native_retweet") { - $fieldname = "retweet"; - } elseif ($post_type == "old_retweet") { - $fieldname = "old_retweet"; - } else if ($post_type == "favlike") { - $fieldname ="favlike"; - } - if ($fieldname) { - $q = "UPDATE #prefix#posts SET ".$fieldname."_count_cache = ".$fieldname."_count_cache + 1 "; - $q .= "WHERE post_id = :post_id AND network=:network"; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } else { - // log error -- unknown field name - $this->logger->logError("unknown field name in incrementCacheCount with $post_id, $post_type", - __METHOD__.','.__LINE__); - return null; - } - } - - /** - * Checks to see if the $vals array contains all the required fields to insert a post - * @param array $vals - * @return bool - */ - private function hasAllRequiredFields($vals) { - $result = true; - foreach ($this->REQUIRED_FIELDS as $field) { - if ( !isset($vals[$field]) ) { - $this->logger->logError("Missing post $field value", __METHOD__.','.__LINE__); - $result = false; - } - } - return $result; - } - - public function addPostAndAssociatedInfo(array $vals, $entities = null, $user_array = null) { - $urls = null; - // first add post - $new_post_key = $this->addPost($vals); - // if post did not already exist - if ($new_post_key) { - if ($user_array) { - $u = new User($user_array); - $user_dao = DAOFactory::getDAO('UserDAO'); - $user_dao->setLoggerInstance($this->logger); - $user_dao->updateUser($u); - } - - if ($entities && isset($entities['urls'])) { - $urls = $entities['urls']; - } - URLProcessor::processPostURLs($vals['post_text'], $vals['post_id'], 'twitter', $this->logger, $urls); - - if (isset($entities)) { - if (isset($entities['mentions'])) { - $mention_dao = DAOFactory::getDAO('MentionDAO'); - $mention_dao->setLoggerInstance($this->logger); - $mention_dao->insertMentions($entities['mentions'], $vals['post_id'], $vals['author_user_id'], - $vals['network']); - } - if (isset($entities['hashtags'])) { - $hashtagpost_dao = DAOFactory::getDAO('HashtagPostDAO'); - $hashtagpost_dao->setLoggerInstance($this->logger); - $hashtagpost_dao->insertHashtagPosts($entities['hashtags'], $vals['post_id'], $vals['network']); - } - - if (isset($entities['place'])) { - $place = $entities['place']; - if ($place) { - $place_dao = DAOFactory::getDAO('PlaceDAO'); - $place_dao->setLoggerInstance($this->logger); - $place_dao->insertPlace($place, $vals['post_id'], $vals['network']); - } - } - } - } - return $new_post_key; - } - - public function addPost($vals) { - $vals['post_id'] = (string)$vals['post_id']; - $retweeted_post_data = null; - // first, check to see if this is a retweet, with the original post available. - if (isset($vals['retweeted_post'])) { - // $this->logger->logDebug("this is a retweet- first processing original.", __METHOD__.','.__LINE__); - $retweeted_post_data = $vals['retweeted_post']['content']; - // it turns out that for a native retweet, Twitter may not reliably update the count stored in the - // original-- there may be a lag. So, if there is a first retweet, the original post still - // may show 0 rts. This is less common w/ the REST API than the streaming API, but does not hurt to - // address it anyway. So, if we know there was a retweet, but the rt count is showing 0, set it to 1. - // We know it is at least 1. - if (isset($retweeted_post_data['retweet_count_api']) && ($retweeted_post_data['retweet_count_api'] == 0 )) { - $retweeted_post_data['retweet_count_api'] = 1; - } - // since this was a retweet, process the original post first. - if (isset($vals['retweeted_post']['entities'])) {// REST API won't set this - $retweeted_post_entities = $vals['retweeted_post']['entities']; - } else { - $retweeted_post_entities = null; - } - if (isset($vals['retweeted_post']['user_array'])) {// REST API won't set this - $retweeted_post_user_array = $vals['retweeted_post']['user_array']; - } else { - $retweeted_post_user_array = null; - } - $this->addPostAndAssociatedInfo($retweeted_post_data, $retweeted_post_entities, - $retweeted_post_user_array); - } - - if ($this->hasAllRequiredFields($vals)) { - //process location information - if (!isset($vals['location']) && !isset($vals['geo']) && !isset($vals['place'])) { - $vals['is_geo_encoded'] = 6; - } - //process reply - if (isset($vals['in_reply_to_post_id']) && $vals['in_reply_to_post_id'] != '') { - $vals['in_reply_to_post_id'] = (string) $vals['in_reply_to_post_id']; - $replied_to_post = $this->getPost($vals['in_reply_to_post_id'], $vals['network']); - if (isset($replied_to_post)) { - $this->logger->logInfo("Found reply.", __METHOD__.','.__LINE__); - //check if reply author is followed by the original post author - $follow_dao = DAOFactory::getDAO('FollowDAO'); - if ($follow_dao->followExists($vals['author_user_id'], $replied_to_post->author_user_id, - $replied_to_post->network)) { - $vals['is_reply_by_friend'] = 1; - $this->logger->logInfo("Found reply by a friend!", __METHOD__.','.__LINE__); - } - } - } - //process retweet - if (isset($vals['in_retweet_of_post_id']) && $vals['in_retweet_of_post_id'] != '') { - $vals['in_retweet_of_post_id'] = (string) $vals['in_retweet_of_post_id']; - if (isset($retweeted_post_data)) { - // don't need database retrieval to get the necessary data-- use attached orig post info - $retweeted_post = $retweeted_post_data; - $orig_author_id = $retweeted_post_data['author_user_id']; - $orig_network = $retweeted_post_data['network']; - } else { - // do database query - $retweeted_post = $this->getPost($vals['in_retweet_of_post_id'], $vals['network']); - if (isset($retweeted_post)) { - $orig_author_id = $retweeted_post->author_user_id; - $orig_network = $retweeted_post->network; - } - } - if (isset($orig_author_id) && isset($orig_network)) { - $follow_dao = DAOFactory::getDAO('FollowDAO'); - if ($follow_dao->followExists($vals['author_user_id'], $orig_author_id, $orig_network)) { - $vals['is_retweet_by_friend'] = 1; - $this->logger->logInfo("Found retweet by a friend!", __METHOD__.','.__LINE__); - } - } - } - //SQL variables to bind - $vars = array(); - //SQL query - $q = "INSERT IGNORE INTO #prefix#posts SET "; - //Set up required fields - foreach ($this->REQUIRED_FIELDS as $field) { - $q .= $field."=:".$field.", "; - $vars[':'.$field] = $vals[$field]; - } - //Set up any optional fields - foreach ($this->OPTIONAL_FIELDS as $field) { - if (isset($vals[$field]) && $vals[$field] != '') { - $q .= "".$field."=:".$field.", "; - $vars[':'.$field] = $vals[$field]; - } - } - //Trim off that last comma and space - $q = substr($q, 0, (strlen($q)-2)); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $res = $this->getInsertId($ps); - - if (isset($vals['retweet_count_api']) && ($vals['retweet_count_api'] > 0 ) && !$res) { - // then the post already existed in database & has RT count > 0, so just update the retweet count. - $this->updateAPIRetweetCount($vals['post_id'], $vals['retweet_count_api'], $vals['network']); - } - if (isset($vals['favlike_count_cache']) && ($vals['favlike_count_cache'] > 0 ) && !$res) { - // then the post already existed in database & has fav count > 0, so just update the fav count. - $this->updateFavLikeCount($vals['post_id'], $vals['network'], $vals['favlike_count_cache'] ); - } - // if the post was already in the database, but its 'in_retweet_of_post_id' field was not set in the - // earlier insert, then we need to update the existing post to set that info, then increment the old-style - // retweet cache count for the original post it references as well. This situation can arise if the - // stream processor has already seen and saved the old-style retweet (the stream processor won't have - // the in_retweet_of_post_id information for old-style RTs, so a post may first just be treated as a - // mention, but the crawler may later ID it as a RT.). - if (!$res && !isset($retweeted_post_data) && isset($vals['in_retweet_of_post_id']) && - $this->updateInRetweetOfPostID($vals['post_id'], $vals['in_retweet_of_post_id'], $vals['network'])) { - $this->incrementRepostCountCache($vals['in_retweet_of_post_id'], $vals['network']); - $status_message = "Repost of ".$vals['in_retweet_of_post_id']." by ".$vals["author_username"]. - " ID: ".$vals["post_id"]."; updating old-style retweet cache count"; - $this->logger->logInfo($status_message, __METHOD__.','.__LINE__); - } - //otherwise, only update the other post records if insert went through. - //This avoids incorrect counts in case of attempt to insert dup. - if ($res) { - if (isset($replied_to_post)) { - $this->incrementReplyCountCache($vals['in_reply_to_post_id'], $vals['network']); - $status_message = "Reply found for ".$vals['in_reply_to_post_id'].", ID: ".$vals["post_id"]. - "; updating reply cache count"; - $this->logger->logInfo($status_message, __METHOD__.','.__LINE__); - } - if (isset($retweeted_post)) { - if (!isset($retweeted_post_data)) { // if not a native retweet - $this->incrementRepostCountCache($vals['in_retweet_of_post_id'], $vals['network']); - $status_message = "Repost of ".$vals['in_retweet_of_post_id']." by ".$vals["author_username"]. - " ID: ".$vals["post_id"]."; updating old-style retweet cache count"; - $this->logger->logInfo($status_message, __METHOD__.','.__LINE__); - } else { // native retweet - $count = $this->incrementNativeRTCountCache($vals['in_retweet_of_post_id'], $vals['network']); - $status_message = "Retweet of ".$vals['in_retweet_of_post_id']." by ". - $vals["author_username"]. " ID: ".$vals["post_id"]; - if ($count > 0) { - $status_message .= "; Updated native retweet cache count sucessfully."; - } else { - $status_message .= "; Attempt to update native retweet cache count failed"; - } - $this->logger->logInfo($status_message, __METHOD__.','.__LINE__); - } - } - } - return $res; - } else { - $status_message = "Could not insert post ID ".$vals["post_id"].", missing values"; - $this->logger->logError($status_message, __METHOD__.','.__LINE__); - //doesn't have all req'd values - return false; - } - } - - public function getAllPosts($author_id, $network, $count, $page=1, $include_replies=true, - $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { - return $this->getAllPostsByUserID($author_id, $network, $count, $order_by, $direction, $include_replies, $page, - false, $is_public); - } - - public function getAllPostsIterator($author_id, $network, $count, $include_replies=true, - $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { - return $this->getAllPostsByUserID($author_id, $network, $count, $order_by, $direction, $include_replies, 1, - $iterator = true, $is_public); - } - - /** - * Iterator wrapper for getPostsByFriends - */ - public function getPostsByFriendsIterator($user_id, $network, $count, $is_public=false) { - return $this->getPostsByFriends($user_id, $network, $count, 1, $is_public, true); - } - - public function getPostsByFriends($user_id, $network, $count = 15, $page = 1, $is_public = false, - $iterator = false) { - - $start_on_record = ($page - 1) * $count; - if ($is_public) { - $protected = 'AND p.is_protected = 0 '; - } else { - $protected = ''; - } - - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour AS adj_pub_date "; - $q .= "FROM #prefix#posts AS p "; - $q .= "WHERE p.network = :network "; - $q .= $protected; - $q .= "AND p.author_user_id IN ( "; - $q .= " SELECT user_id FROM #prefix#follows AS f "; - $q .= " WHERE f.follower_id=:user_id AND f.active=1 AND f.network=:network "; - $q .= ")"; - $q .= "ORDER BY p.id DESC "; - $q .= "LIMIT :start_on_record, :limit"; - $vars = array( - ':user_id'=>(string)$user_id, - ':network'=>$network, - ':limit'=>$count, - ':start_on_record'=>(int)$start_on_record - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $all_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - foreach ($all_rows as $row) { - $posts[] = new Post($row); - } - return $posts; - } - - public function getPostsToUserIterator($user_id, $network, $count, $is_public=false) { - return $this->getPostsToUser($user_id, $network, $count, 1, $is_public, true); - } - - public function getPostsToUser($user_id, $network, $count = 15, $page = 1, $is_public = false, $iterator = false) { - $start_on_record = ($page - 1) * $count; - if ($is_public) { - $protected = 'AND p.is_protected = 0 '; - } else { - $protected = ''; - } - - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour AS adj_pub_date "; - $q .= "FROM #prefix#posts AS p "; - $q .= "WHERE p.network = :network "; - $q .= $protected; - $q .= "AND in_reply_to_post_id IS NULL "; - $q .= "AND p.in_reply_to_user_id = :user_id "; - $q .= "ORDER BY p.id DESC "; - $q .= "LIMIT :start_on_record, :limit"; - $vars = array( - ':user_id'=>(string)$user_id, - ':network'=>$network, - ':limit'=>$count, - ':start_on_record'=>(int)$start_on_record - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getAllQuestionPosts($author_id, $network, $count, $page=1, $order_by = 'pub_date', - $direction = 'DESC', $is_public = false) { - $start_on_record = ($page - 1) * $count; - - $order_by = $this->sanitizeOrderBy($order_by); - - $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; - - if ($is_public) { - $protected = 'AND p.is_protected = 0'; - } else { - $protected = ''; - } - - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date FROM ( SELECT * "; - $q .= "FROM #prefix#posts p "; - $q .= "WHERE p.author_user_id = :author_id AND p.network=:network "; - $q .= "AND (in_reply_to_post_id IS null OR in_reply_to_post_id = 0) $protected) AS p "; - $q .= "WHERE post_text RLIKE :format1 OR post_text like :format2 "; - $q .= "ORDER BY " . $order_by. ' ' . $direction . ' '; - $q .= "LIMIT :start_on_record, :limit"; - $vars = array( - ':author_id'=>(string)$author_id, - ':network'=>$network, - ':format1'=>"\\?$", - ':format2'=>"%\\? %", - ':limit'=>(int)$count, - ':start_on_record'=>(int)$start_on_record - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getAllQuestionPostsInRange($author_id, $network, $count, $from, $until, $page=1, - $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { - - $order_by = $this->sanitizeOrderBy($order_by); - - $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; - - if ($is_public) { - $protected = 'AND p.is_protected = 0'; - } else { - $protected = ''; - } - - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date FROM ( SELECT * "; - $q .= "FROM #prefix#posts p "; - $q .= "WHERE p.author_user_id = :author_id AND p.network=:network AND pub_date BETWEEN :from AND :until "; - $q .= "AND (in_reply_to_post_id IS null OR in_reply_to_post_id = 0) $protected) AS p "; - $q .= "WHERE post_text RLIKE :format1 OR post_text like :format2 "; - $q .= "ORDER BY " . $order_by. ' ' . $direction . ' '; - $vars = array( - ':author_id'=>(string)$author_id, - ':network'=>$network, - ':format1'=>"\\?$", - ':format2'=>"%\\? %", - ':from' => $from, - ':until' => $until - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - /** - * Get all posts by a given user with configurable order by field and direction - * @param int $author_id - * @param str $network - * @param int $count - * @param str $order_by field name - * @param str $direction either "DESC" or "ASC - * @param bool $include_replies If true, return posts with in_reply_to_post_id set, if not don't - * @param int $page Page number, defaults to 1 - * @param bool $iterator Specify whether or not you want a post iterator returned. Default to - * false. - * @param bool $is_public Whether or not these results are going to be displayed publicly. Defaults to false. - * @return array Posts with link object set - */ - private function getAllPostsByUserID($author_id, $network, $count, $order_by="pub_date", $direction="DESC", - $include_replies=true, $page=1, $iterator=false, $is_public = false) { - $direction = $direction=="DESC" ? "DESC": "ASC"; - $start_on_record = ($page - 1) * $count; - $order_by = $this->sanitizeOrderBy($order_by); - - // if the 'order_by' string is 'retweets', add an add'l aggregate (sum of two fields) var to the select, - // which we can then sort on. - if ($order_by == 'retweets') { - $q = "SELECT p.*, (p.retweet_count_cache + p.old_retweet_count_cache) as retweets, ". - "pub_date + interval #gmt_offset# hour as adj_pub_date "; - } else { - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - } - $q .= "FROM #prefix#posts p "; - $q .= "WHERE author_user_id = :author_id AND p.network=:network "; - if (!$include_replies) { - $q .= "AND (in_reply_to_post_id IS null OR in_reply_to_post_id = 0) "; - } - if ($order_by == 'reply_count_cache') { - $q .= "AND reply_count_cache > 0 "; - } - if ($order_by == 'retweets') { - $q .= "AND (p.retweet_count_cache + p.old_retweet_count_cache) > 0 "; - } - if ($is_public) { - $q .= 'AND p.is_protected = 0 '; - } - $q .= "ORDER BY $order_by $direction "; - $vars = array( - ':author_id'=>$author_id, - ':network'=>$network, - ); - if (isset($count) && $count > 0) { - $q .= "LIMIT :start_on_record, :limit"; - $vars[':limit'] = (int)$count; - $vars[':start_on_record'] = (int)$start_on_record; - } - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - - if ($iterator) { - return (new PostIterator($ps)); - } - $all_post_rows = $this->getDataRowsAsArrays($ps); - - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getHotPosts($author_user_id, $network, $count) { - // Get posts - $q = "SELECT p.*, (p.retweet_count_cache + p.old_retweet_count_cache) as retweets, "; - $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date FROM #prefix#posts p "; - $q .= "WHERE p.author_user_id = :author_user_id AND p.network=:network "; - $q .= "AND (p.reply_count_cache + p.favlike_count_cache + p.retweet_count_cache + p.old_retweet_count_cache) "; - $q .= "> 0 "; - $q .= "AND (p.in_reply_to_post_id IS null OR p.in_reply_to_post_id = 0) "; - $q .= "AND (p.in_reply_to_user_id IS null OR p.in_reply_to_user_id = 0) "; - $q .= "ORDER BY p.pub_date DESC LIMIT :limit"; - $vars = array( - ':author_user_id'=>$author_user_id, - ':network'=>$network, - ':limit'=>$count - ); - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $posts = array(); - $all_post_rows = $this->getDataRowsAsArrays($ps); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getPostsByUserInRange($author_id, $network, $from, $until, $order_by="pub_date", $direction="DESC", - $iterator=false, $is_public = false) { - $direction = $direction=="DESC" ? "DESC": "ASC"; - - $order_by = $this->sanitizeOrderBy($order_by); - - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "WHERE author_user_id = :author_id AND p.network=:network AND pub_date BETWEEN :from AND :until "; - if ($order_by == 'reply_count_cache') { - $q .= "AND reply_count_cache > 0 "; - } - if ($order_by == 'retweet_count_cache') { - $q .= "AND retweet_count_cache > 0 "; - } - if ($is_public) { - $q .= 'AND p.is_protected = 0 '; - } - $q .= "ORDER BY $order_by $direction "; - $vars = array( - ':author_id'=> (string)$author_id, - ':network'=> $network, - ':from' => $from, - ':until' => $until - ); - //echo Utils::mergeSQLVars($q, $vars); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - - if ($iterator) { - return (new PostIterator($ps)); - } - $all_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - if ($all_rows) { - $post_keys_array = array(); - foreach ($all_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - foreach ($all_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - /** - * Get all posts by a given user with configurable order by field and direction - * @param str $author_username - * @param str $network Default "twitter" - * @param int|bool $count False if no limit (ie, return all rows) - * @param str $order_by field name Default "pub_date" - * @return array Posts with link object set - */ - public function getAllPostsByUsernameOrderedBy($author_username, $network="twitter", $count=0, - $order_by="pub_date", $in_last_x_days = 0, $iterator = false, $is_public = false, $since = null) { - $order_by = $this->sanitizeOrderBy($order_by); - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network - ); - // if the 'order_by' string is 'retweets', add an add'l aggregate (sum of two fields) var to the select, - // which we can then sort on. - if ($order_by == 'retweets') { - $q = "SELECT p.*, GREATEST((p.retweet_count_cache + p.old_retweet_count_cache), retweet_count_api) ". - "as retweets, pub_date + interval #gmt_offset# hour as adj_pub_date "; - } else { - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - } - $q .= "FROM #prefix#posts p "; - $q .= "WHERE author_username = :author_username AND p.network = :network "; - - if ($in_last_x_days > 0) { - if ($since == null) { - $q .= "AND pub_date >= DATE_SUB(CURDATE(), INTERVAL :in_last_x_days DAY) "; - } else { - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :in_last_x_days DAY) "; - $vars[':since'] = $since; - } - $vars[':in_last_x_days'] = (int)$in_last_x_days; - } - if ($order_by == 'reply_count_cache') { - $q .= "AND reply_count_cache > 0 "; - } - if ($order_by == 'retweets') { - $q .= "AND (p.retweet_count_cache + p.old_retweet_count_cache) > 0 "; - } - if ($is_public) { - $q .= 'AND p.is_protected = 0 '; - } - $q .= "ORDER BY ".$order_by." DESC "; - if ($count) { - $q .= "LIMIT :limit"; - $vars[':limit'] = (int)$count; - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $posts = array(); - $all_post_rows = $this->getDataRowsAsArrays($ps); - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getAllPostsByUsernameIterator($username, $network, $count = 0) { - return $this->getAllPostsByUsernameOrderedBy($username, $network, $count, null, null, $iterator = true); - } - - public function getAllPostsByUsername($username, $network) { - return $this->getAllPostsByUsernameOrderedBy($username, $network, null, null, null, $iterator = false); - } - - public function getMostRepliedToPostsInLastWeek($username, $network, $count, $is_public = false) { - return $this->getAllPostsByUsernameOrderedBy($username, $network, $count, 'reply_count_cache', 7, - $iterator = false, $is_public); - } - - public function getMostFavedPostsInLastWeek($username, $network, $count, $is_public = false) { - return $this->getAllPostsByUsernameOrderedBy($username, $network, $count, 'favlike_count_cache', 7, - $iterator = false, $is_public); - } - - public function getMostRetweetedPostsInLastWeek($username, $network, $count, $is_public = false) { - return $this->getAllPostsByUsernameOrderedBy($username, $network, $count, 'retweets', 7, - $iterator = false, $is_public); - } - - public function getTotalPostsByUser($author_username, $network) { - $q = "SELECT COUNT(*) as total "; - $q .= "FROM #prefix#posts p "; - $q .= "WHERE author_username = :author_username AND network=:network "; - $q .= "ORDER BY pub_date ASC"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowAsArray($ps); - return $result["total"]; - } - - public function getStatusSources($author_id, $network) { - $q = "SELECT source, count(source) as total "; - $q .= "FROM #prefix#posts WHERE "; - $q .= "author_user_id = :author_id AND network=:network "; - $q .= "GROUP BY source ORDER BY total DESC;"; - $vars = array( - ':author_id'=>(string)$author_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getDataRowsAsArrays($ps); - } - - public function getAllMentionsIterator($author_username, $count, $network = "twitter", $page=1, $public=false, - $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { - return $this->getMentions($author_username, $count, $network, $iterator = true, $page, $public, $include_rts, - $order_by, $direction); - } - - public function getAllMentions($author_username, $count, $network = "twitter", $page=1, $public=false, - $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { - return $this->getMentions($author_username, $count, $network, $iterator = false, $page, $public, $include_rts, - $order_by, $direction); - } - - private function getMentions($author_username, $count, $network, $iterator, $page=1, $public=false, - $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { - $start_on_record = ($page - 1) * $count; - - $order_by = $this->sanitizeOrderBy($order_by); - - $direction = ($direction == 'DESC') ? 'DESC' : 'ASC'; - - $author_username = '@'.$author_username; - $q = "SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts AS p "; - $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id "; - $q .= "WHERE p.network = :network AND "; - //fulltext search only works for words longer than 4 chars - if ( strlen($author_username) > PostMySQLDAO::FULLTEXT_CHAR_MINIMUM ) { - $q .= "MATCH (`post_text`) AGAINST(:author_username IN BOOLEAN MODE) "; - } else { - $author_username = '%'.$author_username .'%'; - $q .= "post_text LIKE :author_username "; - } - if ($public) { - $q .= "AND u.is_protected = 0 "; - } - if ($include_rts == false) { - $q .= 'AND p.in_retweet_of_post_id IS NULL '; - } - $q .= "ORDER BY $order_by $direction "; - $q .= "LIMIT :start_on_record, :limit;"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':start_on_record'=>(int)$start_on_record, - ':limit'=>(int)$count - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getAllMentionsInRange($author_username, $count, $network = "twitter", $from, $until, $page=1, - $public=false, $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { - return $this->getMentionsInRange($author_username, $count, $network, $from, $until, $iterator = false, $page, - $public, $include_rts, $order_by, $direction); - } - - private function getMentionsInRange($author_username, $count, $network, $from, $until, $iterator, $page=1, - $public=false, $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { - $start_on_record = ($page - 1) * $count; - - $order_by = $this->sanitizeOrderBy($order_by); - - $direction = ($direction == 'DESC') ? 'DESC' : 'ASC'; - - $author_username = '@'.$author_username; - $q = " SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts AS p "; - $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id "; - $q .= "WHERE p.network = :network AND pub_date BETWEEN :from AND :until "; - - if ( strlen($author_username) > PostMySQLDAO::FULLTEXT_CHAR_MINIMUM ) { - $q .= "AND MATCH (`post_text`) AGAINST(:author_username IN BOOLEAN MODE) "; - } else { - $author_username = '%'.$author_username .'%'; - $q .= "AND post_text LIKE :author_username "; - } - if ($public) { - $q .= "AND u.is_protected = 0 "; - } - - if ($include_rts == false) { - $q .= 'AND p.in_retweet_of_post_id IS NULL '; - } - $q .= "ORDER BY $order_by $direction "; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':from' => $from, - ':until' => $until - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($iterator) { - return (new PostIterator($ps)); - } - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getAllReplies($user_id, $network, $count, $page = 1, $order_by = 'pub_date', $direction = 'DESC', - $is_public = false) { - $start_on_record = ($page - 1) * $count; - - $order_by = $this->sanitizeOrderBy($order_by); - - $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; - - $q = "SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users u ON p.author_user_id = u.user_id "; - $q .= "WHERE in_reply_to_user_id = :user_id AND p.network=:network "; - if ($is_public) { - $q .= 'AND p.is_protected = 0 '; - } - $q .= "ORDER BY $order_by $direction LIMIT :start_on_record, :limit;"; - $vars = array( - ':user_id'=>(string)$user_id, - ':network'=>$network, - ':start_on_record'=>(int)$start_on_record, - ':limit'=>(int)$count - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getAllRepliesInRange($user_id, $network, $count, $from, $until,$page = 1, $order_by = 'pub_date', - $direction = 'DESC', $is_public = false) { - $start_on_record = ($page - 1) * $count; - - $order_by = $this->sanitizeOrderBy($order_by); - - $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; - - $q = "SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users u ON p.author_user_id = u.user_id "; - $q .= "WHERE in_reply_to_user_id = :user_id AND p.network=:network AND pub_date BETWEEN :from AND :until "; - if ($is_public) { - $q .= 'AND p.is_protected = 0 '; - } - $q .= "ORDER BY " . $order_by. ' ' . $direction . ' '; - $vars = array( - ':user_id'=>(string)$user_id, - ':network'=>$network, - ':from' => $from, - ':until' => $until - ); - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - $posts = array(); - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function getMostRepliedToPosts($user_id, $network, $count, $page=1, $is_public = false) { - return $this->getAllPostsByUserID($user_id, $network, $count, "reply_count_cache", "DESC", true, $page, - $iterator = false, $is_public); - } - - public function getMostFavedPosts($user_id, $network, $count, $page=1, $is_public = false) { - return $this->getAllPostsByUserID($user_id, $network, $count, "favlike_count_cache", "DESC", true, $page, - $iterator = false, $is_public); - } - - public function getMostRetweetedPosts($user_id, $network, $count, $page=1, $is_public = false) { - return $this->getAllPostsByUserID($user_id, $network, $count, "retweets", "DESC", true, $page, - $iterator = false, $is_public); - } - - public function getOrphanReplies($username, $count, $network = "twitter", $page = 1) { - $start_on_record = ($page - 1) * $count; - - $username = "@".$username; - $q = "SELECT p.* , u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users u ON u.user_id = p.author_user_id WHERE "; - //fulltext search only works for words longer than 4 chars - if ( strlen($username) > PostMySQLDAO::FULLTEXT_CHAR_MINIMUM ) { - $q .= "MATCH (`post_text`) AGAINST(:username IN BOOLEAN MODE) "; - } else { - $username = '%'.$username .'%'; - $q .= "post_text LIKE :username "; - } - $q .= "AND in_reply_to_post_id is null "; - $q .= "AND in_retweet_of_post_id is null "; - $q .= "AND p.network = :network "; - $q .= "ORDER BY pub_date DESC LIMIT :start_on_record, :limit;"; - $vars = array( - ':username'=>$username, - ':network'=>$network, - ':limit'=>(int)$count, - ':start_on_record'=>(int)$start_on_record - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - $all_posts = array(); - foreach ($all_rows as $row) { - $all_posts[] = $this->setPostWithAuthor($row); - } - return $all_posts; - } - - /** - * Decrement a post's reply_count_cache - * @param int $post_id - * @param str $network - * @return in count of affected rows - */ - private function decrementReplyCountCache($post_id, $network) { - $q = "UPDATE #prefix#posts SET reply_count_cache = reply_count_cache - 1 "; - $q .= "WHERE post_id = :post_id AND network=:network "; - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - public function getStrayRepliedToPosts($author_id, $network) { - $q = "SELECT in_reply_to_post_id FROM #prefix#posts p "; - $q .= "WHERE p.author_user_id=:author_id AND p.network=:network "; - $q .= "AND p.in_reply_to_post_id NOT IN (select post_id from #prefix#posts) "; - $q .= "AND p.in_reply_to_post_id NOT IN (select post_id from #prefix#post_errors);"; - $vars = array( - ':author_id'=>(string)$author_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getDataRowsAsArrays($ps); - } - - public function getPostsToGeoencode($limit = 5000) { - $q = "SELECT q.post_id, q.location, q.geo, q.place, q.in_reply_to_post_id, q.in_retweet_of_post_id, "; - $q.= "q.is_reply_by_friend, q.is_retweet_by_friend, q.network FROM "; - $q .= "(SELECT * FROM #prefix#posts AS p WHERE "; - $q .= "(p.geo IS NOT null OR p.place IS NOT null OR p.location IS NOT null) "; - $q .= "AND (p.is_geo_encoded='0' OR p.is_geo_encoded='3') "; - $q .= "ORDER BY id DESC LIMIT :limit) AS q ORDER BY q.id "; - $vars = array( - ':limit'=>(int)$limit - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - return $all_rows; - } - - public function setGeoencodedPost($post_id, $network, $is_geo_encoded = 0, $location = null, $geodata = null, - $distance = 0) { - if ($location && $geodata && ($is_geo_encoded>=1 && $is_geo_encoded<=5)) { - $q = "UPDATE #prefix#posts p SET p.location = :location, p.geo = :geo, "; - $q .= "p.reply_retweet_distance = :distance, p.is_geo_encoded = :is_geo_encoded "; - $q .= "WHERE p.post_id = :post_id AND p.network=:network"; - $vars = array( - ':location'=>$location, - ':geo'=>$geodata, - ':distance'=>$distance, - ':is_geo_encoded'=>$is_geo_encoded, - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - } else { - $q = "UPDATE #prefix#posts p SET p.is_geo_encoded = :is_geo_encoded "; - $q .= "WHERE p.post_id = :post_id AND p.network=:network"; - $vars = array( - ':is_geo_encoded'=>$is_geo_encoded, - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - if ($this->getUpdateCount($ps) > 0) { - $logstatus = "Geolocation for $network post $post_id IS_GEO_ENCODED: $is_geo_encoded"; - $this->logger->logInfo($logstatus, __METHOD__.','.__LINE__); - return true; - } else { - $logstatus = "Geolocation for $network post_id=$post_id IS_GEO_ENCODED: $is_geo_encoded not saved"; - $this->logger->logInfo($logstatus, __METHOD__.','.__LINE__); - return false; - } - } - - public function updateAuthorUsername($author_user_id, $network, $author_username) { - $q = "UPDATE #prefix#posts SET author_username = :author_username "; - $q .= "WHERE author_user_id = :author_user_id AND network=:network"; - $vars = array( - ':author_user_id'=>(string)$author_user_id, - ':author_username'=>$author_username, - ':network' => $network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - - public function deletePost($id) { - $q = "DELETE from #prefix#posts WHERE id = :id LIMIT 1"; - $vars = array( - ':id'=>$id, - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - /** - * Extract location specific to city for each post - * @param int $location Location as stored in the database - * @return str short_location - */ - private function processLocationRows($full_location) { - $location = explode (', ', $full_location); - $length = count($location); - if ($length > 3) { - return $location[$length-3].', '.$location[$length-2].', '.$location[$length-1]; - } else { - return $full_location; - } - } - - /** - * Convert Distance in kilometers to miles - * @param int $distance_in_km Distance in KM - * @return int $distance_in_miles - */ - private function calculateDistanceInMiles($distance_in_km) { - $distance_in_miles = round($distance_in_km/1.609); - return $distance_in_miles; - } - - /** - * Calculate how much each client is used by a user on a specific network - * @param int $author_id - * @param string $network - * @return array First element of the returned array is an array of all the clients the user used, ever. - * The second element is an array of the clients used for the last 25 posts. - * Both arrays are sorted by number of use, descending. - */ - public function getClientsUsedByUserOnNetwork($author_id, $network) { - $q = "SELECT COUNT(*) AS num_posts, source "; - $q .= "FROM #prefix#posts "; - $q .= "WHERE author_user_id = :author_id AND network = :network "; - $q .= "GROUP BY source"; - $vars = array( - ':author_id'=>(string)$author_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $rows = $this->getDataRowsAsArrays($this->execute($q, $vars)); - $all_time_clients_usage = self::cleanClientsNames($rows); - - $q = "SELECT COUNT(*) AS num_posts, source"; - $q .= " FROM ("; - $q .= " SELECT *"; - $q .= " FROM #prefix#posts "; - $q .= " WHERE author_user_id = :author_id AND network = :network"; - $q .= " ORDER BY pub_date DESC"; - $q .= " LIMIT 25) p "; - $q .= "GROUP BY source"; - $vars = array( - ':author_id'=>(string)$author_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $rows = $this->getDataRowsAsArrays($this->execute($q, $vars)); - $latest_clients_usage = self::cleanClientsNames($rows); - - if (count($latest_clients_usage) == 1 && isset($latest_clients_usage[''])) { - // Plugin doesn't support 'source' - $latest_clients_usage = array(); - } - - return array($all_time_clients_usage, $latest_clients_usage); - } - - /** - * Clean up and sort (by number of use, descending) the source (client) information fetched in - * getClientsUsedByUserOnNetwork. To clean up the clients names, we remove the HTML link tag. - * @param array $rows obtained from the database (as array); columns should be 'num_posts' and 'source' - * @return array Clients names as keys, number of uses as values. - */ - protected static function cleanClientsNames($rows) { - $clients = array(); - foreach ($rows as $row) { - $client_name = preg_replace('@(.+)@i', '\1', $row['source']); - $clients_key = strtolower($client_name); // will merge together strings with different CaSeS - if (!isset($clients[$clients_key])) { - $clients[$clients_key] = array('name'=>$client_name, 'count'=>0); - } - $clients[$clients_key]['count'] += $row['num_posts']; - } - foreach ($clients as $key => $client) { - unset($clients[$key]); - $clients[$client['name']] = $client['count']; - } - arsort($clients); - return $clients; - } - - public function updateFavLikeCount($post_id, $network, $fav_like_count) { - $q = "UPDATE #prefix#posts SET favlike_count_cache=:favlike_count_cache WHERE post_id=:post_id "; - $q .= "AND network=:network;"; - $vars = array( - ':favlike_count_cache'=>$fav_like_count, - ':post_id'=>$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - public function updateReplyCount($post_id, $network, $reply_count) { - $q = "UPDATE #prefix#posts SET reply_count_cache=:reply_count_cache WHERE post_id=:post_id "; - $q .= "AND network=:network;"; - $vars = array( - ':reply_count_cache'=>$reply_count, - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - public function updateRetweetCount($post_id, $network, $retweet_count) { - $q = "UPDATE #prefix#posts SET retweet_count_cache=:retweet_count_cache WHERE post_id=:post_id "; - $q .= "AND network=:network;"; - $vars = array( - ':retweet_count_cache'=>$retweet_count, - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - public function updatePostText($post_id, $network, $post_text) { - $q = "UPDATE #prefix#posts SET post_text=:post_text WHERE post_id=:post_id "; - $q .= "AND network=:network;"; - $vars = array( - ':post_text'=>$post_text, - ':post_id'=>(string)$post_id, - ':network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getUpdateCount($ps); - } - - public function getOnThisDayFlashbackPosts($author_id, $network, $from_date=null) { - $vars = array( - ':author'=> strval($author_id), - ':network'=>$network - ); - if (!isset($from_date)) { - $from_date = 'CURRENT_DATE()'; - } else { - $vars[':from_date'] = $from_date; - $from_date = ':from_date'; - } - $q = "SELECT po.*, po.id AS post_key, po.pub_date + interval #gmt_offset# hour as adj_pub_date, "; - $q .= "pl.place_type, pl.name, pl.full_name, pl.country_code, pl.country, pl.longlat, pl.bounding_box, "; - $q .= "pl.icon, pl.map_image FROM #prefix#posts po "; - $q .= "LEFT JOIN #prefix#places pl ON po.place_id = pl.place_id "; - $q .= "WHERE (YEAR(pub_date)!=YEAR(CURRENT_DATE())) "; - $q .= "AND (DAYOFMONTH(pub_date)=DAYOFMONTH($from_date)) AND (MONTH(pub_date)=MONTH($from_date)) AND "; - $q .= "author_user_id=:author AND po.network=:network AND "; - $q .= "in_reply_to_post_id IS null AND in_reply_to_user_id IS NULL AND "; - $q .= "in_retweet_of_post_id IS NULL AND in_rt_of_user_id IS NULL AND "; - // Don't return posts without post text or place to display - $q .= "(post_text != '' || po.place != '') "; - $q .= "ORDER BY pub_date DESC "; - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_post_rows = $this->getDataRowsAsArrays($ps); - - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['post_key']; - } - - $all_posts = array(); - foreach ($all_post_rows as $row) { - $post = new Post($row); - // Create a place object incase this post has some associated place data - $post->place_obj = new Place($row); - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(",", $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $all_posts[] = $post; - } - return array_reverse($all_posts); - } - - public function getAllCheckins($author_id, $network, $count=15, $page=1) { - // Work out which is the first checkin we want to get - $start_on_record = ($page - 1) * $count; - - // Get the checkins from the database for this user - $q = "SELECT po.id AS post_key, po.post_id, po.author_user_id, po.author_username, po.author_fullname, "; - $q .= "po.author_avatar, po.author_follower_count, po.post_text, po.is_protected, po.source, po.location, "; - $q .= "po.place, po.place_id, po.geo, pub_date, po.in_reply_to_user_id,"; - $q .= "po.in_reply_to_post_id, "; - $q .= "po.reply_count_cache, po.is_reply_by_friend, po.in_retweet_of_post_id, po.old_retweet_count_cache, "; - $q .= "po.is_retweet_by_friend, po.reply_retweet_distance, po.network, po.is_geo_encoded, "; - $q .= "po.in_rt_of_user_id, po.retweet_count_cache, po.retweet_count_api, po.favlike_count_cache, "; - $q .= "po.pub_date + interval #gmt_offset# hour as adj_pub_date, pl.place_id, pl.place_type, pl.name, "; - $q .= "pl.full_name, pl.country_code, pl.country, pl.network, pl.longlat, pl.bounding_box, pl.icon, "; - $q .= "pl.map_image, pl.id "; - $q .= "FROM #prefix#posts po "; - $q .= "JOIN #prefix#places pl ON po.place_id = pl.place_id "; - $q .= "WHERE author_user_id=:author AND po.network=:network AND po.in_reply_to_post_id IS null "; - $q .= "ORDER BY pub_date DESC "; - $vars = array( - ':author'=>$author_id, - ':network'=>$network - ); - if (isset($count) && $count > 0) { - $q .= "LIMIT :start_on_record, :limit"; - $vars[':limit'] = (int)$count; - $vars[':start_on_record'] = (int)$start_on_record; - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - - // Get all the post ids of the checkins (we use this later for our link query) - $post_keys_array = array(); - foreach ($all_rows as $row) { - $post_keys_array[] = $row['post_key']; - } - - // An array to store each post object in for the checkins - $all_posts = array(); - foreach ($all_rows as $row) { - $data = new Post($row); - // Create a place object for any place related data - $data->place_obj = new Place($row); - // Query for all the links related to these posts / checkins - $q2 = "SELECT * FROM #prefix#links WHERE post_key in (".implode(",", $post_keys_array).")"; - $ps2 = $this->execute($q2); - $all_link_rows = $this->getDataRowsAsArrays($ps2); - - // For each link returned if it equals the post id of this post add the link to this post - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $data->id) { - $data->addLink(new Link($link_row)); - } - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - // Now we have all the information for this post store it in our array of all posts - $all_posts[] = $data; - } - return $all_posts; - } - - public function countCheckinsToPlaceTypes($author_id, $network) { - $q = "SELECT place_type, COUNT(place_type) AS place_count FROM #prefix#places WHERE place_id IN "; - $q .= "(SELECT place_id FROM #prefix#posts WHERE author_user_id=:author AND network=:network) "; - $q .= "GROUP BY place_type"; - $vars = array( - 'author'=>$author_id, - 'network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - // Convert the results into Google Charts Format - foreach ($all_rows as $row) { - /* Data needs to be in format - {c:[{v: 'Title'}, {v: Value of data for this title}]} - e.g. [{c:[{v: 'Park'}, {v: 5}]} - */ - $resultset[] = array('c' => array( - array('v' => $row['place_type'], 'f' => $row['place_type']), - array('v' => intval($row['place_count'])) - )); - } - - // Set the meta values like titles etc. - $metadata = array( - array('type' => 'string', 'label' => 'Place Type'), - array('type' => 'number', 'label' => 'Number of Checkins to this place type'), - ); - - // Now encode this data as JSON for the Google Charts API - $visdata = json_encode(array('rows' => $resultset, 'cols' => $metadata)); - - if (count($all_rows) > 0) { - return $visdata; - } else { - return ""; - } - } - - public function countCheckinsToPlaceTypesLastWeek($author_id, $network) { - $q = "SELECT place_type, COUNT(place_type) AS place_count FROM #prefix#places WHERE place_id IN "; - $q .= "(SELECT place_id FROM #prefix#posts WHERE author_user_id=:author_id AND network=:network_name "; - $q .= "AND YEARWEEK(pub_date) = YEARWEEK(CURRENT_DATE) AND in_reply_to_post_id IS null ) "; - $q .= "GROUP BY place_type"; - $vars = array( - ':author_id'=>$author_id, - ':network_name'=>$network); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - // Convert the results into Google Charts Format - foreach ($all_rows as $row) { - /* Data needs to be in format - {c:[{v: 'Title'}, {v: Value of data for this title}]} - e.g. [{c:[{v: 'Park'}, {v: 5}]} - */ - $resultset[] = array('c' => array( - array('v' => $row['place_type'], 'f' => $row['place_type']), - array('v' => intval($row['place_count'])) - )); - } - - // Set the meta values like titles etc. - $metadata = array( - array('type' => 'string', 'label' => 'Place Type'), - array('type' => 'number', 'label' => 'Number of Checkins to this place type'), - ); - - // Now encode this data as JSON for the Google Charts API - $visdata = json_encode(array('rows' => $resultset, 'cols' => $metadata)); - - /* As we are getting posts from the last week, we might not have any so return a blank string in that instance - * So we know not to draw this graph on the dashboard. - */ - - if (count($all_rows) > 0) { - return $visdata; - } else { - return ""; - } - } - - public function getPostsPerHourDataVis($author_id, $network) { - $posts_per_hour_all_time = $this->getCheckinsPerHourAllTime($author_id, $network); - $posts_per_hour_last_week = $this->getCheckinsPerHourLastWeek($author_id, $network); - - // Convert the results into Google Charts Format - $i = 0; - while ($i < 24) { // Hour 0 through 23 - /* Data needs to be in format - {c:[{v: 'Hour'}, {v: Number of checkins at this hour}]} - e.g. [{c:[{v: '11'}, {v: 5}]} - */ - foreach ($posts_per_hour_last_week as $row) { - if ($row['hour'] == $i) { - $last_week_value = intval($row['total']); - break; - } - $last_week_value = 0; - } - - foreach ($posts_per_hour_all_time as $row) { - if ($row['hour'] == $i) { - $all_time_value = intval($row['total']); - break; - } - $all_time_value = 0; - } - - $post_data[] = array('c' => array( - array('v' => $i), - array('v' => $last_week_value), - array('v' => $all_time_value), - )); - $i++; - } - - // Set the meta values like titles etc. - $metadata = array( - array('type' => 'string', 'label' => 'Hour of Day'), - array('type' => 'number', 'label' => 'Checkins Last Week'), - array('type' => 'number', 'label' => 'Checkins All Time'), - ); - - // Now encode this data as JSON for the Google Charts API - return json_encode(array('rows' => $post_data, 'cols' => $metadata)); - } - - private function getCheckinsPerHourAllTime($author_id, $network) { - $q = "SELECT HOUR(pub_date) AS hour, COUNT(HOUR(pub_date)) AS total FROM #prefix#posts "; - $q .= "WHERE author_user_id=:author "; - $q .= "AND network=:network AND in_reply_to_post_id IS null GROUP BY HOUR(pub_date)"; - $vars = array( - 'author'=>$author_id, - 'network'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getDataRowsAsArrays($ps); - } - - private function getCheckinsPerHourLastWeek($author_id, $network) { - $q = "SELECT CAST(HOUR(pub_date) AS UNSIGNED) AS hour, COUNT(HOUR(pub_date)) AS total FROM #prefix#posts "; - $q .= "WHERE author_user_id=:author "; - $q .= "AND network=:network AND YEARWEEK(pub_date) = YEARWEEK(CURRENT_DATE) AND in_reply_to_post_id IS null "; - $q .= "GROUP BY HOUR(pub_date)"; - $vars = array( - 'author'=>$author_id, - 'network'=>$network); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getDataRowsAsArrays($ps); - } - - public function getAllCheckinsInLastWeekAsGoogleMap($author_id, $network) { - $q = "SELECT geo FROM #prefix#posts WHERE author_user_id=:author_id AND network=:network_name "; - $q .= "AND YEARWEEK(pub_date) = YEARWEEK(CURRENT_DATE) AND in_reply_to_post_id IS null "; - $vars = array( - ':author_id'=>$author_id, - ':network_name'=>$network - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $all_rows = $this->getDataRowsAsArrays($ps); - - $url = 'http://maps.googleapis.com/maps/api/staticmap?size=708x500&maptype=roadmap&markers='; - $url .= 'color:blue%7C'; - - foreach($all_rows as $row) { - $url .= "|".$row['geo']; - } - - $url .= '&sensor=false'; - - if (count($all_rows) > 0) { - return $url; - } else { - return ""; - } - } - - public function getMostPopularPostsOfTheYear($author_user_id, $network, $year, $count=25) { - $vars = array( - ':network_user_id'=> $author_user_id, - ':network'=>$network, - ':year'=>$year, - ':count'=>$count - ); - $q = "SELECT po.*, po.id AS post_key, po.pub_date + interval #gmt_offset# hour as adj_pub_date, "; - $q .= "(greatest(retweet_count_cache, retweet_count_api) + reply_count_cache + favlike_count_cache) "; - $q .= "AS total_responses FROM #prefix#posts po WHERE YEAR(pub_date)=:year "; - $q .= "AND po.author_user_id=:network_user_id AND po.network=:network AND "; - $q .= "in_reply_to_post_id IS null AND in_reply_to_user_id IS NULL AND "; - $q .= "in_retweet_of_post_id IS NULL AND in_rt_of_user_id IS NULL "; - $q .= "ORDER BY total_responses DESC LIMIT :count"; - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $post_rows = $this->getDataRowsAsArrays($ps); - $posts = array(); - foreach ($post_rows as $row) { - $post = new Post($row); - $posts[] = $post; - } - return $posts; - } - public function getAverageRetweetCount($author_username, $network, $last_x_days, $since=null){ - if ($since==null) { - $since = date('Y-m-d'); - } - - $q = "SELECT round(avg(old_retweet_count_cache + retweet_count_cache)) as average_retweet_count "; - $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; - $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; - $q .= "AND (retweet_count_cache > 0 OR old_retweet_count_cache > 0) "; - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':last_x_days'=>(int)$last_x_days, - ':since'=>$since - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowAsArray($ps); - if (!isset($result["average_retweet_count"])) { - $q = "SELECT round(avg(retweet_count_api)) as average_retweet_count "; - $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; - $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; - $q .= "AND retweet_count_api > 0 "; - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':last_x_days'=>(int)$last_x_days, - ':since'=>$since - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowAsArray($ps); - } - return $result["average_retweet_count"]; - } - - public function getAverageFaveCount($author_username, $network, $last_x_days, $since=null){ - if ($since==null) { - $since = date('Y-m-d'); - } - - $q = "SELECT round(avg(favlike_count_cache)) as average_favlike_count "; - $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; - $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; - $q .= "AND favlike_count_cache > 0 "; - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':last_x_days'=>(int)$last_x_days, - ':since'=>$since - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowAsArray($ps); - return $result["average_favlike_count"]; - } - - public function getAverageReplyCount($author_username, $network, $last_x_days, $since=null){ - if ($since==null) { - $since = date('Y-m-d'); - } - - $q = "SELECT round(avg(reply_count_cache)) as average_reply_count "; - $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; - $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; - $q .= "AND reply_count_cache > 0 "; - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':last_x_days'=>(int)$last_x_days, - ':since'=>$since - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowAsArray($ps); - return $result["average_reply_count"]; - } - - public function doesUserHavePostsWithRetweetsSinceDate($author_username, $network, $last_x_days, $since=null) { - if ($since==null) { - $since = date('Y-m-d'); - } - - $q = "SELECT id FROM #prefix#posts WHERE network=:network and author_username=:author_username "; - $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; - $q .= "AND (retweet_count_cache > 0 OR old_retweet_count_cache > 0 OR retweet_count_api > 0) "; - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY) LIMIT 1;"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':last_x_days'=>(int)$last_x_days, - ':since'=>$since - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowsAsArrays($ps); - if (sizeof($result) < 1 ) { - return false; - } else { - return true; - } - } - - public function doesUserHavePostsWithFavesSinceDate($author_username, $network, $last_x_days, $since=null) { - if ($since==null) { - $since = date('Y-m-d'); - } - - $q = "SELECT id FROM #prefix#posts WHERE network=:network and author_username=:author_username "; - $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; - $q .= "AND (favlike_count_cache > 0) "; - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY) LIMIT 1;"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':last_x_days'=>(int)$last_x_days, - ':since'=>$since - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowsAsArrays($ps); - if (sizeof($result) < 1 ) { - return false; - } else { - return true; - } - } - - public function doesUserHavePostsWithRepliesSinceDate($author_username, $network, $last_x_days, $since=null) { - if ($since==null) { - $since = date('Y-m-d'); - } - - $q = "SELECT id FROM #prefix#posts WHERE network=:network and author_username=:author_username "; - $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; - $q .= "AND (reply_count_cache > 0) "; - $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY) LIMIT 1;"; - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network, - ':last_x_days'=>(int)$last_x_days, - ':since'=>$since - ); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowsAsArrays($ps); - if (sizeof($result) < 1 ) { - return false; - } else { - return true; - } - } - - public function getRetweetsByAuthorsOverFollowerCount($post_id, $network, $follower_count_threshold) { - $q = "SELECT u.* "; - $q .= "FROM #prefix#posts p "; - $q .= "INNER JOIN #prefix#users u on p.author_user_id = u.user_id "; - $q .= "WHERE p.network=:network AND in_retweet_of_post_id=:post_id "; - $q .= "AND p.is_protected = 0 AND u.follower_count > :follower_count_threshold "; - $q .= "ORDER BY u.follower_count DESC, p.id DESC LIMIT 5"; - - $vars = array( - ':post_id'=>(string)$post_id, - ':network'=>$network, - ':follower_count_threshold'=>$follower_count_threshold - ); - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - - return $this->getDataRowsAsObjects($ps, 'User'); - } - - public function getDaysAgoSinceUserRepliedToRecipient($user_id, $recipient_id, $network) { - $q = "SELECT TIMESTAMPDIFF(DAY, pub_date, NOW()) AS last_reply_days_ago "; - $q .= "FROM #prefix#posts AS p "; - $q .= "WHERE p.author_user_id=:user_id AND p.network=:network AND p.in_reply_to_user_id=:recipient_id "; - $q .= "ORDER BY p.pub_date DESC LIMIT 1"; - - $vars = array( - ':user_id' => (string)$user_id, - ':recipient_id' => (string)$recipient_id, - ':network' => $network - ); - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowsAsArrays($ps); - - return count($result) ? (int)$result[0]['last_reply_days_ago'] : null; - } - - public function countAllPostsByUserSinceDaysAgo($author_id, $network, $days_ago=7) { - $q = "SELECT COUNT(*) AS count FROM #prefix#posts AS p "; - $q .= "WHERE p.author_user_id=:user_id AND p.network=:network "; - $q .= "AND p.pub_date>=DATE_SUB(CURDATE(), INTERVAL :days_ago DAY) "; - $vars = array( - ':user_id'=>$author_id, - ':network'=>$network, - ':days_ago'=>$days_ago - ); - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $result = $this->getDataRowAsArray($ps); - - return (int)$result['count']; - } - - public function searchPostsByUser(array $keywords, $network, $author_username, $page_number=1, $page_count=20) { - if (!is_array($keywords)) { - return null; - } - $start_on_record = ($page_number - 1) * $page_count; - - $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p WHERE author_username=:author_username AND network = :network "; - $q .= "AND ("; - $counter = 0; - $search_terms = array(); - $unique_keywords = array_unique($keywords); - foreach ($unique_keywords as $keyword) { - $term = $keyword; - for ($i = 1; $i < count(array_keys($keywords,$keyword)); $i++) { - $term .= '%'.$keyword; - } - $search_terms[] = $term; - $q .= " post_text LIKE :keyword".$counter." "; - if ($keyword != end($unique_keywords)) { - $q .= "AND"; - } - $counter++; - } - $q .= ") ORDER BY pub_date DESC "; - if ($page_count > 0) { - $q .= "LIMIT :start_on_record, :limit;"; - } else { - $q .= ';'; - } - - $vars = array( - ':author_username'=>$author_username, - ':network'=>$network - ); - $counter = 0; - foreach ($search_terms as $term) { - $vars[':keyword'.$counter] = '%'.$term.'%'; - $counter++; - } - if ($page_count > 0) { - $vars[':limit'] = (int)$page_count; - $vars[':start_on_record'] = (int)$start_on_record; - } - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $post_rows = $this->getDataRowsAsArrays($ps); - - $posts = array(); - foreach ($post_rows as $row) { - $post = new Post($row); - $posts[] = $post; - } - return $posts; - } - - /** - * Get all posts by a given hashtag with configurable order by field and direction - * @param int $hashtag_id - * @param str $network - * @param int $count - * @param str $order_by field name - * @param str $direction either "DESC" or "ASC - * @param int $page Page number, defaults to 1 - * @param bool $is_public Whether or not these results are going to be displayed publicly. Defaults to false. - * @return array Posts with link object set - */ - public function getAllPostsByHashtagId($hashtag_id, $network, $count, $order_by="pub_date", $direction="DESC", - $page=1, $is_public = false) { - - $direction = $direction=="DESC" ? "DESC": "ASC"; - $start_on_record = ($page - 1) * $count; - $order_by = $this->sanitizeOrderBy($order_by); - - $q = "SELECT p.*, p.pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p, #prefix#hashtags_posts hp, #prefix#hashtags h "; - $q .= "WHERE p.post_id= hp.post_id AND hp.hashtag_id = h.id AND h.id = :hashtag_id AND p.network=:network "; - - if ($is_public) { - $q .= 'AND p.is_protected = 0 '; - } - - $q .= "ORDER BY p.$order_by $direction "; - - $vars = array( - ':hashtag_id'=>$hashtag_id, - ':network'=>$network, - ); - - if (isset($count) && $count > 0) { - $q .= "LIMIT :start_on_record, :limit"; - $vars[':limit'] = (int)$count; - $vars[':start_on_record'] = (int)$start_on_record; - } - - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - - $all_post_rows = $this->getDataRowsAsArrays($ps); - - $posts = array(); - - if ($all_post_rows) { - $post_keys_array = array(); - foreach ($all_post_rows as $row) { - $post_keys_array[] = $row['id']; - } - - // Get links - $q = "SELECT * FROM #prefix#links WHERE post_key in (".implode(',', $post_keys_array).")"; - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q); - $all_link_rows = $this->getDataRowsAsArrays($ps); - - // Combine posts and links - foreach ($all_post_rows as $post_row) { - $post = new Post($post_row); - foreach ($all_link_rows as $link_row) { - if ($link_row['post_key'] == $post->id) { - $post->addLink(new Link($link_row)); - } - } - $posts[] = $post; - } - } - return $posts; - } - - public function deletePostsByHashtagId($hashtag_id) { - $q = "DELETE t.* FROM #prefix#posts t "; - $q .= "INNER JOIN #prefix#hashtags_posts hp ON t.post_id = hp.post_id "; - $q .= "WHERE hp.hashtag_id=:hashtag_id;"; - $vars = array(':hashtag_id'=>$hashtag_id); - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - return $this->getDeleteCount($ps); - } - - public function searchPostsByHashtag($keywords, Hashtag $hashtag, $network, $page_number=1, $page_count=20) { - $start_on_record = ($page_number - 1) * $page_count; - $q = "SELECT p.*, p.pub_date + interval #gmt_offset# hour as adj_pub_date "; - $q .= "FROM #prefix#posts p, #prefix#hashtags_posts hp, #prefix#hashtags h "; - $q .= "WHERE p.post_id= hp.post_id AND hp.hashtag_id = h.id AND p.network=:network AND h.id = :hashtag_id "; - if (sizeof($keywords) > 0) { - $q .= "AND ("; - $counter = 0; - foreach ($keywords as $keyword) { - $q .= " post_text LIKE :keyword".$counter." "; - if ($keyword != end($keywords)) { - $q .= "AND"; - } - $counter++; - } - $q .= ") "; - } - $q .= "ORDER BY pub_date DESC "; - if ($page_count > 0) { - $q .= "LIMIT :start_on_record, :limit;"; - } else { - $q .= ';'; - } - $vars = array( - ':network'=>$network, - ':hashtag_id'=>$hashtag->id - ); - if (sizeof($keywords) > 0) { - $counter = 0; - foreach ($keywords as $keyword) { - $vars[':keyword'.$counter] = '%'.$keyword.'%'; - $counter++; - } - } - if ($page_count > 0) { - $vars[':limit'] = (int)$page_count; - $vars[':start_on_record'] = (int)$start_on_record; - } - if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - $ps = $this->execute($q, $vars); - $post_rows = $this->getDataRowsAsArrays($ps); - - $posts = array(); - foreach ($post_rows as $row) { - $post = new Post($row); - $posts[] = $post; - } - return $posts; - } + } + $q .= ") s "; + if ($geo_encoded_only) { + $q .= "WHERE is_geo_encoded='1' "; + } + if ($is_public) { + if (! $geo_encoded_only) { + $q .= "WHERE "; + } else { + $q .= "AND "; + } + $q .= "is_protected = '0' "; + } + $q .= "ORDER BY reply_retweet_distance, location, id LIMIT :start_on_record, :limit;"; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network, + ':limit' => ( int ) $count, + ':start_on_record' => ( int ) $start_on_record + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getDataRowsAsArrays ( $ps ); + } + public function getRelatedPosts($post_id, $network = 'twitter', $is_public = false, $count = 350, $page = 1, $geo_encoded_only = true, $include_original_post = true) { + $all_rows = $this->getRelatedPostsArray ( $post_id, $network, $is_public, $count, $page, $geo_encoded_only, $include_original_post ); + $responses = array (); + $location = array (); + foreach ( $all_rows as $row ) { + if ($row ['is_geo_encoded'] == 1) { + $row ['short_location'] = $this->processLocationRows ( $row ['location'] ); + } + $responses [] = new Post ( $row ); + } + return $responses; + } + + /** + * @TODO: Figure out a better way to do this, only returns 1-1 exchanges, not back-and-forth threads + */ + public function getPostsAuthorHasRepliedTo($author_id, $count, $network = 'twitter', $page = 1, $public_only = true) { + $start_on_record = ($page - 1) * $count; + + $q = "SELECT p1.author_username as questioner_username, p1.author_avatar as questioner_avatar, "; + $q .= "p2.follower_count as answerer_follower_count, p1.post_id as question_post_id, "; + $q .= "p1.post_text as question, p1.pub_date + interval #gmt_offset# hour as question_adj_pub_date, "; + $q .= "p.post_id as answer_post_id, p.author_username as answerer_username, "; + $q .= "p1.is_protected as question_is_protected, p.is_protected as answer_is_protected, "; + $q .= "p.author_avatar as answerer_avatar, p3.follower_count as questioner_follower_count, "; + $q .= "p.post_text as answer, p.network, p.pub_date + interval #gmt_offset# hour as answer_adj_pub_date "; + $q .= "FROM #prefix#posts p INNER JOIN #prefix#posts p1 on p1.post_id = p.in_reply_to_post_id "; + $q .= "JOIN #prefix#users p2 on p2.user_id = :author_id "; + $q .= "JOIN #prefix#users p3 on p3.user_id = p.in_reply_to_user_id "; + $q .= "WHERE p.author_user_id = :author_id AND p.network=:network AND p.in_reply_to_post_id IS NOT null "; + if ($public_only) { + $q .= "AND p.is_protected = 0 AND p1.is_protected = 0 "; + } + $q .= "ORDER BY p.pub_date desc LIMIT :start_on_record, :limit;"; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network, + ':start_on_record' => ( int ) $start_on_record, + ':limit' => ( int ) $count + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + $posts_replied_to = array (); + foreach ( $all_rows as $row ) { + $posts_replied_to [] = $row; + } + return $posts_replied_to; + } + public function getExchangesBetweenUsers($author_id, $other_user_id, $network = 'twitter') { + $q = "SELECT p1.author_username as questioner_username, p1.author_avatar as questioner_avatar, "; + $q .= "p2.follower_count as questioner_follower_count, p1.post_id as question_post_id, "; + $q .= "p1.post_text as question, p1.pub_date + interval #gmt_offset# hour as question_adj_pub_date, "; + $q .= "p.post_id as answer_post_id, p.author_username as answerer_username, "; + $q .= "p.author_avatar as answerer_avatar, p3.follower_count as answerer_follower_count, "; + $q .= "p.post_text as answer, p.network, p.pub_date + interval #gmt_offset# hour as answer_adj_pub_date "; + $q .= "FROM #prefix#posts p INNER JOIN #prefix#posts p1 on p1.post_id = p.in_reply_to_post_id "; + $q .= "JOIN #prefix#users p2 on p2.user_id = :author_id "; + $q .= "JOIN #prefix#users p3 on p3.user_id = :other_user_id "; + $q .= "WHERE p.in_reply_to_post_id is not null AND p.network=:network AND "; + $q .= "(p.author_user_id = :author_id AND p1.author_user_id = :other_user_id) "; + $q .= "OR (p1.author_user_id = :author_id AND p.author_user_id = :other_user_id) "; + $q .= "ORDER BY answer_adj_pub_date DESC, question_adj_pub_date ASC "; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':other_user_id' => ( string ) $other_user_id, + ':network' => $network + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + + $all_rows = $this->getDataRowsAsArrays ( $ps ); + $posts_replied_to = array (); + foreach ( $all_rows as $row ) { + $posts_replied_to [] = $row; + } + return $posts_replied_to; + } + public function isPostInDB($post_id, $network) { + $q = "SELECT post_id FROM #prefix#posts "; + $q .= "WHERE post_id = :post_id AND network=:network;"; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getDataIsReturned ( $ps ); + } + public function isReplyInDB($post_id, $network) { + return $this->isPostInDB ( $post_id, $network ); + } + + /** + * Increment reply cache count + * + * @param int $post_id + * @param str $network + * @return int Number of updated rows (1 if successful, 0 if not) + */ + private function incrementReplyCountCache($post_id, $network) { + return $this->incrementCacheCount ( $post_id, $network, "reply" ); + } + + /** + * Update retweet count value from the Twitter API for 'new-style' retweets. + * + * @param int $post_id + * @param int $retweet_count_api + * @param str $network + * @return int Number of affected rows + */ + private function updateAPIRetweetCount($post_id, $retweet_count_api, $network) { + $q = "UPDATE #prefix#posts SET retweet_count_api = :count "; + $q .= "WHERE post_id = :post_id AND network=:network"; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network, + ':count' => $retweet_count_api + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + + /** + * Update the 'in_retweet_of_post_id' field for an existing post. + * This will be done only if + * this field is not already set, which could be the case if the post was originally processed via + * the stream processing scripts. + * + * @param int $post_id + * @param int $in_retweet_of_post_id + * @param str $network + * @return int Number of affected rows + */ + private function updateInRetweetOfPostID($post_id, $in_retweet_of_post_id, $network) { + $q = "UPDATE #prefix#posts SET in_retweet_of_post_id = :rpid "; + $q .= "WHERE post_id = :post_id AND network=:network "; + $q .= "AND in_retweet_of_post_id IS NULL "; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network, + ':rpid' => ( string ) $in_retweet_of_post_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + + /** + * Increment retweet cache count, for 'old-style' retweets. + * + * @param int $post_id + * @param str $network + * @return int number of updated rows (1 if successful, 0 if not) + */ + private function incrementRepostCountCache($post_id, $network) { + return $this->incrementCacheCount ( $post_id, $network, "old_retweet" ); + } + + /** + * Increment retweet cache count, for new-style/native retweets. + * + * @param int $post_id + * @param str $network + * @return int number of updated rows (1 if successful, 0 if not) + */ + private function incrementNativeRTCountCache($post_id, $network) { + return $this->incrementCacheCount ( $post_id, $network, "native_retweet" ); + } + + /** + * Increment either reply_count_cache, old_retweet_count_cache, retweet_count_cache, or favlike_count_cache + * + * @param int $post_id + * @param str $network + * @param str $fieldname + * either "reply" , "old_retweet" (old-style retweets), "native_retweet" or "favlike" + * @return int Number of updated rows + */ + private function incrementCacheCount($post_id, $network, $post_type) { + $fieldname = null; + if ($post_type == "reply") { + $fieldname = "reply"; + } elseif ($post_type == "native_retweet") { + $fieldname = "retweet"; + } elseif ($post_type == "old_retweet") { + $fieldname = "old_retweet"; + } else if ($post_type == "favlike") { + $fieldname = "favlike"; + } + if ($fieldname) { + $q = "UPDATE #prefix#posts SET " . $fieldname . "_count_cache = " . $fieldname . "_count_cache + 1 "; + $q .= "WHERE post_id = :post_id AND network=:network"; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } else { + // log error -- unknown field name + $this->logger->logError ( "unknown field name in incrementCacheCount with $post_id, $post_type", __METHOD__ . ',' . __LINE__ ); + return null; + } + } + + /** + * Checks to see if the $vals array contains all the required fields to insert a post + * + * @param array $vals + * @return bool + */ + private function hasAllRequiredFields($vals) { + $result = true; + foreach ( $this->REQUIRED_FIELDS as $field ) { + if (! isset ( $vals [$field] )) { + $this->logger->logError ( "Missing post $field value", __METHOD__ . ',' . __LINE__ ); + $result = false; + } + } + return $result; + } + public function addPostAndAssociatedInfo(array $vals, $entities = null, $user_array = null) { + $urls = null; + // first add post + $new_post_key = $this->addPost ( $vals ); + // if post did not already exist + if ($new_post_key) { + if ($user_array) { + $u = new User ( $user_array ); + $user_dao = DAOFactory::getDAO ( 'UserDAO' ); + $user_dao->setLoggerInstance ( $this->logger ); + $user_dao->updateUser ( $u ); + } + + if ($entities && isset ( $entities ['urls'] )) { + $urls = $entities ['urls']; + } + URLProcessor::processPostURLs ( $vals ['post_text'], $vals ['post_id'], 'twitter', $this->logger, $urls ); + + if (isset ( $entities )) { + if (isset ( $entities ['mentions'] )) { + $mention_dao = DAOFactory::getDAO ( 'MentionDAO' ); + $mention_dao->setLoggerInstance ( $this->logger ); + $mention_dao->insertMentions ( $entities ['mentions'], $vals ['post_id'], $vals ['author_user_id'], $vals ['network'] ); + } + if (isset ( $entities ['hashtags'] )) { + $hashtagpost_dao = DAOFactory::getDAO ( 'HashtagPostDAO' ); + $hashtagpost_dao->setLoggerInstance ( $this->logger ); + $hashtagpost_dao->insertHashtagPosts ( $entities ['hashtags'], $vals ['post_id'], $vals ['network'] ); + } + + if (isset ( $entities ['place'] )) { + $place = $entities ['place']; + if ($place) { + $place_dao = DAOFactory::getDAO ( 'PlaceDAO' ); + $place_dao->setLoggerInstance ( $this->logger ); + $place_dao->insertPlace ( $place, $vals ['post_id'], $vals ['network'] ); + } + } + } + } + return $new_post_key; + } + public function addPost($vals) { + $vals ['post_id'] = ( string ) $vals ['post_id']; + $retweeted_post_data = null; + // first, check to see if this is a retweet, with the original post available. + if (isset ( $vals ['retweeted_post'] )) { + // $this->logger->logDebug("this is a retweet- first processing original.", __METHOD__.','.__LINE__); + $retweeted_post_data = $vals ['retweeted_post'] ['content']; + // it turns out that for a native retweet, Twitter may not reliably update the count stored in the + // original-- there may be a lag. So, if there is a first retweet, the original post still + // may show 0 rts. This is less common w/ the REST API than the streaming API, but does not hurt to + // address it anyway. So, if we know there was a retweet, but the rt count is showing 0, set it to 1. + // We know it is at least 1. + if (isset ( $retweeted_post_data ['retweet_count_api'] ) && ($retweeted_post_data ['retweet_count_api'] == 0)) { + $retweeted_post_data ['retweet_count_api'] = 1; + } + // since this was a retweet, process the original post first. + if (isset ( $vals ['retweeted_post'] ['entities'] )) { // REST API won't set this + $retweeted_post_entities = $vals ['retweeted_post'] ['entities']; + } else { + $retweeted_post_entities = null; + } + if (isset ( $vals ['retweeted_post'] ['user_array'] )) { // REST API won't set this + $retweeted_post_user_array = $vals ['retweeted_post'] ['user_array']; + } else { + $retweeted_post_user_array = null; + } + $this->addPostAndAssociatedInfo ( $retweeted_post_data, $retweeted_post_entities, $retweeted_post_user_array ); + } + + if ($this->hasAllRequiredFields ( $vals )) { + // process location information + if (! isset ( $vals ['location'] ) && ! isset ( $vals ['geo'] ) && ! isset ( $vals ['place'] )) { + $vals ['is_geo_encoded'] = 6; + } + // process reply + if (isset ( $vals ['in_reply_to_post_id'] ) && $vals ['in_reply_to_post_id'] != '') { + $vals ['in_reply_to_post_id'] = ( string ) $vals ['in_reply_to_post_id']; + $replied_to_post = $this->getPost ( $vals ['in_reply_to_post_id'], $vals ['network'] ); + if (isset ( $replied_to_post )) { + $this->logger->logInfo ( "Found reply.", __METHOD__ . ',' . __LINE__ ); + // check if reply author is followed by the original post author + $follow_dao = DAOFactory::getDAO ( 'FollowDAO' ); + if ($follow_dao->followExists ( $vals ['author_user_id'], $replied_to_post->author_user_id, $replied_to_post->network )) { + $vals ['is_reply_by_friend'] = 1; + $this->logger->logInfo ( "Found reply by a friend!", __METHOD__ . ',' . __LINE__ ); + } + } + } + // process retweet + if (isset ( $vals ['in_retweet_of_post_id'] ) && $vals ['in_retweet_of_post_id'] != '') { + $vals ['in_retweet_of_post_id'] = ( string ) $vals ['in_retweet_of_post_id']; + if (isset ( $retweeted_post_data )) { + // don't need database retrieval to get the necessary data-- use attached orig post info + $retweeted_post = $retweeted_post_data; + $orig_author_id = $retweeted_post_data ['author_user_id']; + $orig_network = $retweeted_post_data ['network']; + } else { + // do database query + $retweeted_post = $this->getPost ( $vals ['in_retweet_of_post_id'], $vals ['network'] ); + if (isset ( $retweeted_post )) { + $orig_author_id = $retweeted_post->author_user_id; + $orig_network = $retweeted_post->network; + } + } + if (isset ( $orig_author_id ) && isset ( $orig_network )) { + $follow_dao = DAOFactory::getDAO ( 'FollowDAO' ); + if ($follow_dao->followExists ( $vals ['author_user_id'], $orig_author_id, $orig_network )) { + $vals ['is_retweet_by_friend'] = 1; + $this->logger->logInfo ( "Found retweet by a friend!", __METHOD__ . ',' . __LINE__ ); + } + } + } + // SQL variables to bind + $vars = array (); + // SQL query + $q = "INSERT IGNORE INTO #prefix#posts SET "; + // Set up required fields + foreach ( $this->REQUIRED_FIELDS as $field ) { + $q .= $field . "=:" . $field . ", "; + $vars [':' . $field] = $vals [$field]; + } + // Set up any optional fields + foreach ( $this->OPTIONAL_FIELDS as $field ) { + if (isset ( $vals [$field] ) && $vals [$field] != '') { + $q .= "" . $field . "=:" . $field . ", "; + $vars [':' . $field] = $vals [$field]; + } + } + // Trim off that last comma and space + $q = substr ( $q, 0, (strlen ( $q ) - 2) ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $res = $this->getInsertId ( $ps ); + + if (isset ( $vals ['retweet_count_api'] ) && ($vals ['retweet_count_api'] > 0) && ! $res) { + // then the post already existed in database & has RT count > 0, so just update the retweet count. + $this->updateAPIRetweetCount ( $vals ['post_id'], $vals ['retweet_count_api'], $vals ['network'] ); + } + if (isset ( $vals ['favlike_count_cache'] ) && ($vals ['favlike_count_cache'] > 0) && ! $res) { + // then the post already existed in database & has fav count > 0, so just update the fav count. + $this->updateFavLikeCount ( $vals ['post_id'], $vals ['network'], $vals ['favlike_count_cache'] ); + } + // if the post was already in the database, but its 'in_retweet_of_post_id' field was not set in the + // earlier insert, then we need to update the existing post to set that info, then increment the old-style + // retweet cache count for the original post it references as well. This situation can arise if the + // stream processor has already seen and saved the old-style retweet (the stream processor won't have + // the in_retweet_of_post_id information for old-style RTs, so a post may first just be treated as a + // mention, but the crawler may later ID it as a RT.). + if (! $res && ! isset ( $retweeted_post_data ) && isset ( $vals ['in_retweet_of_post_id'] ) && $this->updateInRetweetOfPostID ( $vals ['post_id'], $vals ['in_retweet_of_post_id'], $vals ['network'] )) { + $this->incrementRepostCountCache ( $vals ['in_retweet_of_post_id'], $vals ['network'] ); + $status_message = "Repost of " . $vals ['in_retweet_of_post_id'] . " by " . $vals ["author_username"] . " ID: " . $vals ["post_id"] . "; updating old-style retweet cache count"; + $this->logger->logInfo ( $status_message, __METHOD__ . ',' . __LINE__ ); + } + // otherwise, only update the other post records if insert went through. + // This avoids incorrect counts in case of attempt to insert dup. + if ($res) { + if (isset ( $replied_to_post )) { + $this->incrementReplyCountCache ( $vals ['in_reply_to_post_id'], $vals ['network'] ); + $status_message = "Reply found for " . $vals ['in_reply_to_post_id'] . ", ID: " . $vals ["post_id"] . "; updating reply cache count"; + $this->logger->logInfo ( $status_message, __METHOD__ . ',' . __LINE__ ); + } + if (isset ( $retweeted_post )) { + if (! isset ( $retweeted_post_data )) { // if not a native retweet + $this->incrementRepostCountCache ( $vals ['in_retweet_of_post_id'], $vals ['network'] ); + $status_message = "Repost of " . $vals ['in_retweet_of_post_id'] . " by " . $vals ["author_username"] . " ID: " . $vals ["post_id"] . "; updating old-style retweet cache count"; + $this->logger->logInfo ( $status_message, __METHOD__ . ',' . __LINE__ ); + } else { // native retweet + $count = $this->incrementNativeRTCountCache ( $vals ['in_retweet_of_post_id'], $vals ['network'] ); + $status_message = "Retweet of " . $vals ['in_retweet_of_post_id'] . " by " . $vals ["author_username"] . " ID: " . $vals ["post_id"]; + if ($count > 0) { + $status_message .= "; Updated native retweet cache count sucessfully."; + } else { + $status_message .= "; Attempt to update native retweet cache count failed"; + } + $this->logger->logInfo ( $status_message, __METHOD__ . ',' . __LINE__ ); + } + } + } + return $res; + } else { + $status_message = "Could not insert post ID " . $vals ["post_id"] . ", missing values"; + $this->logger->logError ( $status_message, __METHOD__ . ',' . __LINE__ ); + // doesn't have all req'd values + return false; + } + } + public function getAllPosts($author_id, $network, $count, $page = 1, $include_replies = true, $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { + return $this->getAllPostsByUserID ( $author_id, $network, $count, $order_by, $direction, $include_replies, $page, false, $is_public ); + } + public function getAllPostsIterator($author_id, $network, $count, $include_replies = true, $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { + return $this->getAllPostsByUserID ( $author_id, $network, $count, $order_by, $direction, $include_replies, 1, $iterator = true, $is_public ); + } + + /** + * Iterator wrapper for getPostsByFriends + */ + public function getPostsByFriendsIterator($user_id, $network, $count, $is_public = false) { + return $this->getPostsByFriends ( $user_id, $network, $count, 1, $is_public, true ); + } + public function getPostsByFriends($user_id, $network, $count = 15, $page = 1, $is_public = false, $iterator = false) { + $start_on_record = ($page - 1) * $count; + if ($is_public) { + $protected = 'AND p.is_protected = 0 '; + } else { + $protected = ''; + } + + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour AS adj_pub_date "; + $q .= "FROM #prefix#posts AS p "; + $q .= "WHERE p.network = :network "; + $q .= $protected; + $q .= "AND p.author_user_id IN ( "; + $q .= " SELECT user_id FROM #prefix#follows AS f "; + $q .= " WHERE f.follower_id=:user_id AND f.active=1 AND f.network=:network "; + $q .= ")"; + $q .= "ORDER BY p.id DESC "; + $q .= "LIMIT :start_on_record, :limit"; + $vars = array ( + ':user_id' => ( string ) $user_id, + ':network' => $network, + ':limit' => $count, + ':start_on_record' => ( int ) $start_on_record + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + foreach ( $all_rows as $row ) { + $posts [] = new Post ( $row ); + } + return $posts; + } + public function getPostsToUserIterator($user_id, $network, $count, $is_public = false) { + return $this->getPostsToUser ( $user_id, $network, $count, 1, $is_public, true ); + } + public function getPostsToUser($user_id, $network, $count = 15, $page = 1, $is_public = false, $iterator = false) { + $start_on_record = ($page - 1) * $count; + if ($is_public) { + $protected = 'AND p.is_protected = 0 '; + } else { + $protected = ''; + } + + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour AS adj_pub_date "; + $q .= "FROM #prefix#posts AS p "; + $q .= "WHERE p.network = :network "; + $q .= $protected; + $q .= "AND in_reply_to_post_id IS NULL "; + $q .= "AND p.in_reply_to_user_id = :user_id "; + $q .= "ORDER BY p.id DESC "; + $q .= "LIMIT :start_on_record, :limit"; + $vars = array ( + ':user_id' => ( string ) $user_id, + ':network' => $network, + ':limit' => $count, + ':start_on_record' => ( int ) $start_on_record + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getAllQuestionPosts($author_id, $network, $count, $page = 1, $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { + $start_on_record = ($page - 1) * $count; + + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; + + if ($is_public) { + $protected = 'AND p.is_protected = 0'; + } else { + $protected = ''; + } + + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date FROM ( SELECT * "; + $q .= "FROM #prefix#posts p "; + $q .= "WHERE p.author_user_id = :author_id AND p.network=:network "; + $q .= "AND (in_reply_to_post_id IS null OR in_reply_to_post_id = 0) $protected) AS p "; + $q .= "WHERE post_text RLIKE :format1 OR post_text like :format2 "; + $q .= "ORDER BY " . $order_by . ' ' . $direction . ' '; + $q .= "LIMIT :start_on_record, :limit"; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network, + ':format1' => "\\?$", + ':format2' => "%\\? %", + ':limit' => ( int ) $count, + ':start_on_record' => ( int ) $start_on_record + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getAllQuestionPostsInRange($author_id, $network, $count, $from, $until, $page = 1, $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; + + if ($is_public) { + $protected = 'AND p.is_protected = 0'; + } else { + $protected = ''; + } + + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date FROM ( SELECT * "; + $q .= "FROM #prefix#posts p "; + $q .= "WHERE p.author_user_id = :author_id AND p.network=:network AND pub_date BETWEEN :from AND :until "; + $q .= "AND (in_reply_to_post_id IS null OR in_reply_to_post_id = 0) $protected) AS p "; + $q .= "WHERE post_text RLIKE :format1 OR post_text like :format2 "; + $q .= "ORDER BY " . $order_by . ' ' . $direction . ' '; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network, + ':format1' => "\\?$", + ':format2' => "%\\? %", + ':from' => $from, + ':until' => $until + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + + /** + * Get all posts by a given user with configurable order by field and direction + * + * @param int $author_id + * @param str $network + * @param int $count + * @param str $order_by + * field name + * @param str $direction + * either "DESC" or "ASC + * @param bool $include_replies + * If true, return posts with in_reply_to_post_id set, if not don't + * @param int $page + * Page number, defaults to 1 + * @param bool $iterator + * Specify whether or not you want a post iterator returned. Default to + * false. + * @param bool $is_public + * Whether or not these results are going to be displayed publicly. Defaults to false. + * @return array Posts with link object set + */ + private function getAllPostsByUserID($author_id, $network, $count, $order_by = "pub_date", $direction = "DESC", $include_replies = true, $page = 1, $iterator = false, $is_public = false) { + $direction = $direction == "DESC" ? "DESC" : "ASC"; + $start_on_record = ($page - 1) * $count; + $order_by = $this->sanitizeOrderBy ( $order_by ); + + // if the 'order_by' string is 'retweets', add an add'l aggregate (sum of two fields) var to the select, + // which we can then sort on. + if ($order_by == 'retweets') { + $q = "SELECT p.*, (p.retweet_count_cache + p.old_retweet_count_cache) as retweets, " . "pub_date + interval #gmt_offset# hour as adj_pub_date "; + } else { + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + } + $q .= "FROM #prefix#posts p "; + $q .= "WHERE author_user_id = :author_id AND p.network=:network "; + if (! $include_replies) { + $q .= "AND (in_reply_to_post_id IS null OR in_reply_to_post_id = 0) "; + } + if ($order_by == 'reply_count_cache') { + $q .= "AND reply_count_cache > 0 "; + } + if ($order_by == 'retweets') { + $q .= "AND (p.retweet_count_cache + p.old_retweet_count_cache) > 0 "; + } + if ($is_public) { + $q .= 'AND p.is_protected = 0 '; + } + $q .= "ORDER BY $order_by $direction "; + $vars = array ( + ':author_id' => $author_id, + ':network' => $network + ); + if (isset ( $count ) && $count > 0) { + $q .= "LIMIT :start_on_record, :limit"; + $vars [':limit'] = ( int ) $count; + $vars [':start_on_record'] = ( int ) $start_on_record; + } + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getHotPosts($author_user_id, $network, $count) { + // Get posts + $q = "SELECT p.*, (p.retweet_count_cache + p.old_retweet_count_cache) as retweets, "; + $q .= "pub_date + interval #gmt_offset# hour as adj_pub_date FROM #prefix#posts p "; + $q .= "WHERE p.author_user_id = :author_user_id AND p.network=:network "; + $q .= "AND (p.reply_count_cache + p.favlike_count_cache + p.retweet_count_cache + p.old_retweet_count_cache) "; + $q .= "> 0 "; + $q .= "AND (p.in_reply_to_post_id IS null OR p.in_reply_to_post_id = 0) "; + $q .= "AND (p.in_reply_to_user_id IS null OR p.in_reply_to_user_id = 0) "; + $q .= "ORDER BY p.pub_date DESC LIMIT :limit"; + $vars = array ( + ':author_user_id' => $author_user_id, + ':network' => $network, + ':limit' => $count + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $posts = array (); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getPostsByUserInRange($author_id, $network, $from, $until, $order_by = "pub_date", $direction = "DESC", $iterator = false, $is_public = false) { + $direction = $direction == "DESC" ? "DESC" : "ASC"; + + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "WHERE author_user_id = :author_id AND p.network=:network AND pub_date BETWEEN :from AND :until "; + if ($order_by == 'reply_count_cache') { + $q .= "AND reply_count_cache > 0 "; + } + if ($order_by == 'retweet_count_cache') { + $q .= "AND retweet_count_cache > 0 "; + } + if ($is_public) { + $q .= 'AND p.is_protected = 0 '; + } + $q .= "ORDER BY $order_by $direction "; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network, + ':from' => $from, + ':until' => $until + ); + // echo Utils::mergeSQLVars($q, $vars); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + if ($all_rows) { + $post_keys_array = array (); + foreach ( $all_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + foreach ( $all_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + + /** + * Get all posts by a given user with configurable order by field and direction + * + * @param str $author_username + * @param str $network + * Default "twitter" + * @param int|bool $count + * False if no limit (ie, return all rows) + * @param str $order_by + * field name Default "pub_date" + * @return array Posts with link object set + */ + public function getAllPostsByUsernameOrderedBy($author_username, $network = "twitter", $count = 0, $order_by = "pub_date", $in_last_x_days = 0, $iterator = false, $is_public = false, $since = null) { + $order_by = $this->sanitizeOrderBy ( $order_by ); + $vars = array ( + ':author_username' => $author_username, + ':network' => $network + ); + // if the 'order_by' string is 'retweets', add an add'l aggregate (sum of two fields) var to the select, + // which we can then sort on. + if ($order_by == 'retweets') { + $q = "SELECT p.*, GREATEST((p.retweet_count_cache + p.old_retweet_count_cache), retweet_count_api) " . "as retweets, pub_date + interval #gmt_offset# hour as adj_pub_date "; + } else { + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + } + $q .= "FROM #prefix#posts p "; + $q .= "WHERE author_username = :author_username AND p.network = :network "; + + if ($in_last_x_days > 0) { + if ($since == null) { + $q .= "AND pub_date >= DATE_SUB(CURDATE(), INTERVAL :in_last_x_days DAY) "; + } else { + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :in_last_x_days DAY) "; + $vars [':since'] = $since; + } + $vars [':in_last_x_days'] = ( int ) $in_last_x_days; + } + if ($order_by == 'reply_count_cache') { + $q .= "AND reply_count_cache > 0 "; + } + if ($order_by == 'retweets') { + $q .= "AND (p.retweet_count_cache + p.old_retweet_count_cache) > 0 "; + } + if ($is_public) { + $q .= 'AND p.is_protected = 0 '; + } + $q .= "ORDER BY " . $order_by . " DESC "; + if ($count) { + $q .= "LIMIT :limit"; + $vars [':limit'] = ( int ) $count; + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $posts = array (); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getAllPostsByUsernameIterator($username, $network, $count = 0) { + return $this->getAllPostsByUsernameOrderedBy ( $username, $network, $count, null, null, $iterator = true ); + } + public function getAllPostsByUsername($username, $network) { + return $this->getAllPostsByUsernameOrderedBy ( $username, $network, null, null, null, $iterator = false ); + } + public function getMostRepliedToPostsInLastWeek($username, $network, $count, $is_public = false) { + return $this->getAllPostsByUsernameOrderedBy ( $username, $network, $count, 'reply_count_cache', 7, $iterator = false, $is_public ); + } + public function getMostFavedPostsInLastWeek($username, $network, $count, $is_public = false) { + return $this->getAllPostsByUsernameOrderedBy ( $username, $network, $count, 'favlike_count_cache', 7, $iterator = false, $is_public ); + } + public function getMostRetweetedPostsInLastWeek($username, $network, $count, $is_public = false) { + return $this->getAllPostsByUsernameOrderedBy ( $username, $network, $count, 'retweets', 7, $iterator = false, $is_public ); + } + public function getTotalPostsByUser($author_username, $network) { + $q = "SELECT COUNT(*) as total "; + $q .= "FROM #prefix#posts p "; + $q .= "WHERE author_username = :author_username AND network=:network "; + $q .= "ORDER BY pub_date ASC"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowAsArray ( $ps ); + return $result ["total"]; + } + public function getStatusSources($author_id, $network) { + $q = "SELECT source, count(source) as total "; + $q .= "FROM #prefix#posts WHERE "; + $q .= "author_user_id = :author_id AND network=:network "; + $q .= "GROUP BY source ORDER BY total DESC;"; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getDataRowsAsArrays ( $ps ); + } + public function getAllMentionsIterator($author_username, $count, $network = "twitter", $page = 1, $public = false, $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { + return $this->getMentions ( $author_username, $count, $network, $iterator = true, $page, $public, $include_rts, $order_by, $direction ); + } + public function getAllMentions($author_username, $count, $network = "twitter", $page = 1, $public = false, $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { + return $this->getMentions ( $author_username, $count, $network, $iterator = false, $page, $public, $include_rts, $order_by, $direction ); + } + private function getMentions($author_username, $count, $network, $iterator, $page = 1, $public = false, $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { + $start_on_record = ($page - 1) * $count; + + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $direction = ($direction == 'DESC') ? 'DESC' : 'ASC'; + + $author_username = '@' . $author_username; + $q = "SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts AS p "; + $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id "; + $q .= "WHERE p.network = :network AND "; + // fulltext search only works for words longer than 4 chars + if (strlen ( $author_username ) > PostMySQLDAO::FULLTEXT_CHAR_MINIMUM) { + $q .= "MATCH (`post_text`) AGAINST(:author_username IN BOOLEAN MODE) "; + } else { + $author_username = '%' . $author_username . '%'; + $q .= "post_text LIKE :author_username "; + } + if ($public) { + $q .= "AND u.is_protected = 0 "; + } + if ($include_rts == false) { + $q .= 'AND p.in_retweet_of_post_id IS NULL '; + } + $q .= "ORDER BY $order_by $direction "; + $q .= "LIMIT :start_on_record, :limit;"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':start_on_record' => ( int ) $start_on_record, + ':limit' => ( int ) $count + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getAllMentionsInRange($author_username, $count, $network = "twitter", $from, $until, $page = 1, $public = false, $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { + return $this->getMentionsInRange ( $author_username, $count, $network, $from, $until, $iterator = false, $page, $public, $include_rts, $order_by, $direction ); + } + private function getMentionsInRange($author_username, $count, $network, $from, $until, $iterator, $page = 1, $public = false, $include_rts = true, $order_by = 'pub_date', $direction = 'DESC') { + $start_on_record = ($page - 1) * $count; + + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $direction = ($direction == 'DESC') ? 'DESC' : 'ASC'; + + $author_username = '@' . $author_username; + $q = " SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts AS p "; + $q .= "INNER JOIN #prefix#users AS u ON p.author_user_id = u.user_id "; + $q .= "WHERE p.network = :network AND pub_date BETWEEN :from AND :until "; + + if (strlen ( $author_username ) > PostMySQLDAO::FULLTEXT_CHAR_MINIMUM) { + $q .= "AND MATCH (`post_text`) AGAINST(:author_username IN BOOLEAN MODE) "; + } else { + $author_username = '%' . $author_username . '%'; + $q .= "AND post_text LIKE :author_username "; + } + if ($public) { + $q .= "AND u.is_protected = 0 "; + } + + if ($include_rts == false) { + $q .= 'AND p.in_retweet_of_post_id IS NULL '; + } + $q .= "ORDER BY $order_by $direction "; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':from' => $from, + ':until' => $until + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($iterator) { + return new PostIterator ( $ps ); + } + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getAllReplies($user_id, $network, $count, $page = 1, $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { + $start_on_record = ($page - 1) * $count; + + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; + + $q = "SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users u ON p.author_user_id = u.user_id "; + $q .= "WHERE in_reply_to_user_id = :user_id AND p.network=:network "; + if ($is_public) { + $q .= 'AND p.is_protected = 0 '; + } + $q .= "ORDER BY $order_by $direction LIMIT :start_on_record, :limit;"; + $vars = array ( + ':user_id' => ( string ) $user_id, + ':network' => $network, + ':start_on_record' => ( int ) $start_on_record, + ':limit' => ( int ) $count + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getAllRepliesInRange($user_id, $network, $count, $from, $until, $page = 1, $order_by = 'pub_date', $direction = 'DESC', $is_public = false) { + $start_on_record = ($page - 1) * $count; + + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $direction = $direction == 'DESC' ? 'DESC' : 'ASC'; + + $q = "SELECT p.*, u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users u ON p.author_user_id = u.user_id "; + $q .= "WHERE in_reply_to_user_id = :user_id AND p.network=:network AND pub_date BETWEEN :from AND :until "; + if ($is_public) { + $q .= 'AND p.is_protected = 0 '; + } + $q .= "ORDER BY " . $order_by . ' ' . $direction . ' '; + $vars = array ( + ':user_id' => ( string ) $user_id, + ':network' => $network, + ':from' => $from, + ':until' => $until + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + $posts = array (); + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function getMostRepliedToPosts($user_id, $network, $count, $page = 1, $is_public = false) { + return $this->getAllPostsByUserID ( $user_id, $network, $count, "reply_count_cache", "DESC", true, $page, $iterator = false, $is_public ); + } + public function getMostFavedPosts($user_id, $network, $count, $page = 1, $is_public = false) { + return $this->getAllPostsByUserID ( $user_id, $network, $count, "favlike_count_cache", "DESC", true, $page, $iterator = false, $is_public ); + } + public function getMostRetweetedPosts($user_id, $network, $count, $page = 1, $is_public = false) { + return $this->getAllPostsByUserID ( $user_id, $network, $count, "retweets", "DESC", true, $page, $iterator = false, $is_public ); + } + public function getOrphanReplies($username, $count, $network = "twitter", $page = 1) { + $start_on_record = ($page - 1) * $count; + + $username = "@" . $username; + $q = "SELECT p.* , u.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users u ON u.user_id = p.author_user_id WHERE "; + // fulltext search only works for words longer than 4 chars + if (strlen ( $username ) > PostMySQLDAO::FULLTEXT_CHAR_MINIMUM) { + $q .= "MATCH (`post_text`) AGAINST(:username IN BOOLEAN MODE) "; + } else { + $username = '%' . $username . '%'; + $q .= "post_text LIKE :username "; + } + $q .= "AND in_reply_to_post_id is null "; + $q .= "AND in_retweet_of_post_id is null "; + $q .= "AND p.network = :network "; + $q .= "ORDER BY pub_date DESC LIMIT :start_on_record, :limit;"; + $vars = array ( + ':username' => $username, + ':network' => $network, + ':limit' => ( int ) $count, + ':start_on_record' => ( int ) $start_on_record + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + $all_posts = array (); + foreach ( $all_rows as $row ) { + $all_posts [] = $this->setPostWithAuthor ( $row ); + } + return $all_posts; + } + + /** + * Decrement a post's reply_count_cache + * + * @param int $post_id + * @param str $network + * @return in count of affected rows + */ + private function decrementReplyCountCache($post_id, $network) { + $q = "UPDATE #prefix#posts SET reply_count_cache = reply_count_cache - 1 "; + $q .= "WHERE post_id = :post_id AND network=:network "; + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + public function getStrayRepliedToPosts($author_id, $network) { + $q = "SELECT in_reply_to_post_id FROM #prefix#posts p "; + $q .= "WHERE p.author_user_id=:author_id AND p.network=:network "; + $q .= "AND p.in_reply_to_post_id NOT IN (select post_id from #prefix#posts) "; + $q .= "AND p.in_reply_to_post_id NOT IN (select post_id from #prefix#post_errors);"; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getDataRowsAsArrays ( $ps ); + } + public function getPostsToGeoencode($limit = 5000) { + $q = "SELECT q.post_id, q.location, q.geo, q.place, q.in_reply_to_post_id, q.in_retweet_of_post_id, "; + $q .= "q.is_reply_by_friend, q.is_retweet_by_friend, q.network FROM "; + $q .= "(SELECT * FROM #prefix#posts AS p WHERE "; + $q .= "(p.geo IS NOT null OR p.place IS NOT null OR p.location IS NOT null) "; + $q .= "AND (p.is_geo_encoded='0' OR p.is_geo_encoded='3') "; + $q .= "ORDER BY id DESC LIMIT :limit) AS q ORDER BY q.id "; + $vars = array ( + ':limit' => ( int ) $limit + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + return $all_rows; + } + public function setGeoencodedPost($post_id, $network, $is_geo_encoded = 0, $location = null, $geodata = null, $distance = 0) { + if ($location && $geodata && ($is_geo_encoded >= 1 && $is_geo_encoded <= 5)) { + $q = "UPDATE #prefix#posts p SET p.location = :location, p.geo = :geo, "; + $q .= "p.reply_retweet_distance = :distance, p.is_geo_encoded = :is_geo_encoded "; + $q .= "WHERE p.post_id = :post_id AND p.network=:network"; + $vars = array ( + ':location' => $location, + ':geo' => $geodata, + ':distance' => $distance, + ':is_geo_encoded' => $is_geo_encoded, + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + } else { + $q = "UPDATE #prefix#posts p SET p.is_geo_encoded = :is_geo_encoded "; + $q .= "WHERE p.post_id = :post_id AND p.network=:network"; + $vars = array ( + ':is_geo_encoded' => $is_geo_encoded, + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + if ($this->getUpdateCount ( $ps ) > 0) { + $logstatus = "Geolocation for $network post $post_id IS_GEO_ENCODED: $is_geo_encoded"; + $this->logger->logInfo ( $logstatus, __METHOD__ . ',' . __LINE__ ); + return true; + } else { + $logstatus = "Geolocation for $network post_id=$post_id IS_GEO_ENCODED: $is_geo_encoded not saved"; + $this->logger->logInfo ( $logstatus, __METHOD__ . ',' . __LINE__ ); + return false; + } + } + public function updateAuthorUsername($author_user_id, $network, $author_username) { + $q = "UPDATE #prefix#posts SET author_username = :author_username "; + $q .= "WHERE author_user_id = :author_user_id AND network=:network"; + $vars = array ( + ':author_user_id' => ( string ) $author_user_id, + ':author_username' => $author_username, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + public function deletePost($id) { + $q = "DELETE from #prefix#posts WHERE id = :id LIMIT 1"; + $vars = array ( + ':id' => $id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + + /** + * Extract location specific to city for each post + * + * @param int $location + * Location as stored in the database + * @return str short_location + */ + private function processLocationRows($full_location) { + $location = explode ( ', ', $full_location ); + $length = count ( $location ); + if ($length > 3) { + return $location [$length - 3] . ', ' . $location [$length - 2] . ', ' . $location [$length - 1]; + } else { + return $full_location; + } + } + + /** + * Convert Distance in kilometers to miles + * + * @param int $distance_in_km + * Distance in KM + * @return int $distance_in_miles + */ + private function calculateDistanceInMiles($distance_in_km) { + $distance_in_miles = round ( $distance_in_km / 1.609 ); + return $distance_in_miles; + } + + /** + * Calculate how much each client is used by a user on a specific network + * + * @param int $author_id + * @param string $network + * @return array First element of the returned array is an array of all the clients the user used, ever. + * The second element is an array of the clients used for the last 25 posts. + * Both arrays are sorted by number of use, descending. + */ + public function getClientsUsedByUserOnNetwork($author_id, $network) { + $q = "SELECT COUNT(*) AS num_posts, source "; + $q .= "FROM #prefix#posts "; + $q .= "WHERE author_user_id = :author_id AND network = :network "; + $q .= "GROUP BY source"; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $rows = $this->getDataRowsAsArrays ( $this->execute ( $q, $vars ) ); + $all_time_clients_usage = self::cleanClientsNames ( $rows ); + + $q = "SELECT COUNT(*) AS num_posts, source"; + $q .= " FROM ("; + $q .= " SELECT *"; + $q .= " FROM #prefix#posts "; + $q .= " WHERE author_user_id = :author_id AND network = :network"; + $q .= " ORDER BY pub_date DESC"; + $q .= " LIMIT 25) p "; + $q .= "GROUP BY source"; + $vars = array ( + ':author_id' => ( string ) $author_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $rows = $this->getDataRowsAsArrays ( $this->execute ( $q, $vars ) ); + $latest_clients_usage = self::cleanClientsNames ( $rows ); + + if (count ( $latest_clients_usage ) == 1 && isset ( $latest_clients_usage [''] )) { + // Plugin doesn't support 'source' + $latest_clients_usage = array (); + } + + return array ( + $all_time_clients_usage, + $latest_clients_usage + ); + } + + /** + * Clean up and sort (by number of use, descending) the source (client) information fetched in + * getClientsUsedByUserOnNetwork. + * To clean up the clients names, we remove the HTML link tag. + * + * @param array $rows + * obtained from the database (as array); columns should be 'num_posts' and 'source' + * @return array Clients names as keys, number of uses as values. + */ + protected static function cleanClientsNames($rows) { + $clients = array (); + foreach ( $rows as $row ) { + $client_name = preg_replace ( '@(.+)@i', '\1', $row ['source'] ); + $clients_key = strtolower ( $client_name ); // will merge together strings with different CaSeS + if (! isset ( $clients [$clients_key] )) { + $clients [$clients_key] = array ( + 'name' => $client_name, + 'count' => 0 + ); + } + $clients [$clients_key] ['count'] += $row ['num_posts']; + } + foreach ( $clients as $key => $client ) { + unset ( $clients [$key] ); + $clients [$client ['name']] = $client ['count']; + } + arsort ( $clients ); + return $clients; + } + public function updateFavLikeCount($post_id, $network, $fav_like_count) { + $q = "UPDATE #prefix#posts SET favlike_count_cache=:favlike_count_cache WHERE post_id=:post_id "; + $q .= "AND network=:network;"; + $vars = array ( + ':favlike_count_cache' => $fav_like_count, + ':post_id' => $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + public function updateReplyCount($post_id, $network, $reply_count) { + $q = "UPDATE #prefix#posts SET reply_count_cache=:reply_count_cache WHERE post_id=:post_id "; + $q .= "AND network=:network;"; + $vars = array ( + ':reply_count_cache' => $reply_count, + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + public function updateRetweetCount($post_id, $network, $retweet_count) { + $q = "UPDATE #prefix#posts SET retweet_count_cache=:retweet_count_cache WHERE post_id=:post_id "; + $q .= "AND network=:network;"; + $vars = array ( + ':retweet_count_cache' => $retweet_count, + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + public function updatePostText($post_id, $network, $post_text) { + $q = "UPDATE #prefix#posts SET post_text=:post_text WHERE post_id=:post_id "; + $q .= "AND network=:network;"; + $vars = array ( + ':post_text' => $post_text, + ':post_id' => ( string ) $post_id, + ':network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getUpdateCount ( $ps ); + } + public function getOnThisDayFlashbackPosts($author_id, $network, $from_date = null) { + $vars = array ( + ':author' => strval ( $author_id ), + ':network' => $network + ); + if (! isset ( $from_date )) { + $from_date = 'CURRENT_DATE()'; + } else { + $vars [':from_date'] = $from_date; + $from_date = ':from_date'; + } + $q = "SELECT po.*, po.id AS post_key, po.pub_date + interval #gmt_offset# hour as adj_pub_date, "; + $q .= "pl.place_type, pl.name, pl.full_name, pl.country_code, pl.country, pl.longlat, pl.bounding_box, "; + $q .= "pl.icon, pl.map_image FROM #prefix#posts po "; + $q .= "LEFT JOIN #prefix#places pl ON po.place_id = pl.place_id "; + $q .= "WHERE (YEAR(pub_date)!=YEAR(CURRENT_DATE())) "; + $q .= "AND (DAYOFMONTH(pub_date)=DAYOFMONTH($from_date)) AND (MONTH(pub_date)=MONTH($from_date)) AND "; + $q .= "author_user_id=:author AND po.network=:network AND "; + $q .= "in_reply_to_post_id IS null AND in_reply_to_user_id IS NULL AND "; + $q .= "in_retweet_of_post_id IS NULL AND in_rt_of_user_id IS NULL AND "; + // Don't return posts without post text or place to display + $q .= "(post_text != '' || po.place != '') "; + $q .= "ORDER BY pub_date DESC "; + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['post_key']; + } + + $all_posts = array (); + foreach ( $all_post_rows as $row ) { + $post = new Post ( $row ); + // Create a place object incase this post has some associated place data + $post->place_obj = new Place ( $row ); + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ",", $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $all_posts [] = $post; + } + return array_reverse ( $all_posts ); + } + public function getAllCheckins($author_id, $network, $count = 15, $page = 1) { + // Work out which is the first checkin we want to get + $start_on_record = ($page - 1) * $count; + + // Get the checkins from the database for this user + $q = "SELECT po.id AS post_key, po.post_id, po.author_user_id, po.author_username, po.author_fullname, "; + $q .= "po.author_avatar, po.author_follower_count, po.post_text, po.is_protected, po.source, po.location, "; + $q .= "po.place, po.place_id, po.geo, pub_date, po.in_reply_to_user_id,"; + $q .= "po.in_reply_to_post_id, "; + $q .= "po.reply_count_cache, po.is_reply_by_friend, po.in_retweet_of_post_id, po.old_retweet_count_cache, "; + $q .= "po.is_retweet_by_friend, po.reply_retweet_distance, po.network, po.is_geo_encoded, "; + $q .= "po.in_rt_of_user_id, po.retweet_count_cache, po.retweet_count_api, po.favlike_count_cache, "; + $q .= "po.pub_date + interval #gmt_offset# hour as adj_pub_date, pl.place_id, pl.place_type, pl.name, "; + $q .= "pl.full_name, pl.country_code, pl.country, pl.network, pl.longlat, pl.bounding_box, pl.icon, "; + $q .= "pl.map_image, pl.id "; + $q .= "FROM #prefix#posts po "; + $q .= "JOIN #prefix#places pl ON po.place_id = pl.place_id "; + $q .= "WHERE author_user_id=:author AND po.network=:network AND po.in_reply_to_post_id IS null "; + $q .= "ORDER BY pub_date DESC "; + $vars = array ( + ':author' => $author_id, + ':network' => $network + ); + if (isset ( $count ) && $count > 0) { + $q .= "LIMIT :start_on_record, :limit"; + $vars [':limit'] = ( int ) $count; + $vars [':start_on_record'] = ( int ) $start_on_record; + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + + // Get all the post ids of the checkins (we use this later for our link query) + $post_keys_array = array (); + foreach ( $all_rows as $row ) { + $post_keys_array [] = $row ['post_key']; + } + + // An array to store each post object in for the checkins + $all_posts = array (); + foreach ( $all_rows as $row ) { + $data = new Post ( $row ); + // Create a place object for any place related data + $data->place_obj = new Place ( $row ); + // Query for all the links related to these posts / checkins + $q2 = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ",", $post_keys_array ) . ")"; + $ps2 = $this->execute ( $q2 ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps2 ); + + // For each link returned if it equals the post id of this post add the link to this post + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $data->id) { + $data->addLink ( new Link ( $link_row ) ); + } + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + // Now we have all the information for this post store it in our array of all posts + $all_posts [] = $data; + } + return $all_posts; + } + public function countCheckinsToPlaceTypes($author_id, $network) { + $q = "SELECT place_type, COUNT(place_type) AS place_count FROM #prefix#places WHERE place_id IN "; + $q .= "(SELECT place_id FROM #prefix#posts WHERE author_user_id=:author AND network=:network) "; + $q .= "GROUP BY place_type"; + $vars = array ( + 'author' => $author_id, + 'network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + // Convert the results into Google Charts Format + foreach ( $all_rows as $row ) { + /* + * Data needs to be in format {c:[{v: 'Title'}, {v: Value of data for this title}]} e.g. [{c:[{v: 'Park'}, {v: 5}]} + */ + $resultset [] = array ( + 'c' => array ( + array ( + 'v' => $row ['place_type'], + 'f' => $row ['place_type'] + ), + array ( + 'v' => intval ( $row ['place_count'] ) + ) + ) + ); + } + + // Set the meta values like titles etc. + $metadata = array ( + array ( + 'type' => 'string', + 'label' => 'Place Type' + ), + array ( + 'type' => 'number', + 'label' => 'Number of Checkins to this place type' + ) + ); + + // Now encode this data as JSON for the Google Charts API + $visdata = json_encode ( array ( + 'rows' => $resultset, + 'cols' => $metadata + ) ); + + if (count ( $all_rows ) > 0) { + return $visdata; + } else { + return ""; + } + } + public function countCheckinsToPlaceTypesLastWeek($author_id, $network) { + $q = "SELECT place_type, COUNT(place_type) AS place_count FROM #prefix#places WHERE place_id IN "; + $q .= "(SELECT place_id FROM #prefix#posts WHERE author_user_id=:author_id AND network=:network_name "; + $q .= "AND YEARWEEK(pub_date) = YEARWEEK(CURRENT_DATE) AND in_reply_to_post_id IS null ) "; + $q .= "GROUP BY place_type"; + $vars = array ( + ':author_id' => $author_id, + ':network_name' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + // Convert the results into Google Charts Format + foreach ( $all_rows as $row ) { + /* + * Data needs to be in format {c:[{v: 'Title'}, {v: Value of data for this title}]} e.g. [{c:[{v: 'Park'}, {v: 5}]} + */ + $resultset [] = array ( + 'c' => array ( + array ( + 'v' => $row ['place_type'], + 'f' => $row ['place_type'] + ), + array ( + 'v' => intval ( $row ['place_count'] ) + ) + ) + ); + } + + // Set the meta values like titles etc. + $metadata = array ( + array ( + 'type' => 'string', + 'label' => 'Place Type' + ), + array ( + 'type' => 'number', + 'label' => 'Number of Checkins to this place type' + ) + ); + + // Now encode this data as JSON for the Google Charts API + $visdata = json_encode ( array ( + 'rows' => $resultset, + 'cols' => $metadata + ) ); + + /* + * As we are getting posts from the last week, we might not have any so return a blank string in that instance So we know not to draw this graph on the dashboard. + */ + + if (count ( $all_rows ) > 0) { + return $visdata; + } else { + return ""; + } + } + public function getPostsPerHourDataVis($author_id, $network) { + $posts_per_hour_all_time = $this->getCheckinsPerHourAllTime ( $author_id, $network ); + $posts_per_hour_last_week = $this->getCheckinsPerHourLastWeek ( $author_id, $network ); + + // Convert the results into Google Charts Format + $i = 0; + while ( $i < 24 ) { // Hour 0 through 23 + /* + * Data needs to be in format {c:[{v: 'Hour'}, {v: Number of checkins at this hour}]} e.g. [{c:[{v: '11'}, {v: 5}]} + */ + foreach ( $posts_per_hour_last_week as $row ) { + if ($row ['hour'] == $i) { + $last_week_value = intval ( $row ['total'] ); + break; + } + $last_week_value = 0; + } + + foreach ( $posts_per_hour_all_time as $row ) { + if ($row ['hour'] == $i) { + $all_time_value = intval ( $row ['total'] ); + break; + } + $all_time_value = 0; + } + + $post_data [] = array ( + 'c' => array ( + array ( + 'v' => $i + ), + array ( + 'v' => $last_week_value + ), + array ( + 'v' => $all_time_value + ) + ) + ); + $i ++; + } + + // Set the meta values like titles etc. + $metadata = array ( + array ( + 'type' => 'string', + 'label' => 'Hour of Day' + ), + array ( + 'type' => 'number', + 'label' => 'Checkins Last Week' + ), + array ( + 'type' => 'number', + 'label' => 'Checkins All Time' + ) + ); + + // Now encode this data as JSON for the Google Charts API + return json_encode ( array ( + 'rows' => $post_data, + 'cols' => $metadata + ) ); + } + private function getCheckinsPerHourAllTime($author_id, $network) { + $q = "SELECT HOUR(pub_date) AS hour, COUNT(HOUR(pub_date)) AS total FROM #prefix#posts "; + $q .= "WHERE author_user_id=:author "; + $q .= "AND network=:network AND in_reply_to_post_id IS null GROUP BY HOUR(pub_date)"; + $vars = array ( + 'author' => $author_id, + 'network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getDataRowsAsArrays ( $ps ); + } + private function getCheckinsPerHourLastWeek($author_id, $network) { + $q = "SELECT CAST(HOUR(pub_date) AS UNSIGNED) AS hour, COUNT(HOUR(pub_date)) AS total FROM #prefix#posts "; + $q .= "WHERE author_user_id=:author "; + $q .= "AND network=:network AND YEARWEEK(pub_date) = YEARWEEK(CURRENT_DATE) AND in_reply_to_post_id IS null "; + $q .= "GROUP BY HOUR(pub_date)"; + $vars = array ( + 'author' => $author_id, + 'network' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getDataRowsAsArrays ( $ps ); + } + public function getAllCheckinsInLastWeekAsGoogleMap($author_id, $network) { + $q = "SELECT geo FROM #prefix#posts WHERE author_user_id=:author_id AND network=:network_name "; + $q .= "AND YEARWEEK(pub_date) = YEARWEEK(CURRENT_DATE) AND in_reply_to_post_id IS null "; + $vars = array ( + ':author_id' => $author_id, + ':network_name' => $network + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $all_rows = $this->getDataRowsAsArrays ( $ps ); + + $url = 'http://maps.googleapis.com/maps/api/staticmap?size=708x500&maptype=roadmap&markers='; + $url .= 'color:blue%7C'; + + foreach ( $all_rows as $row ) { + $url .= "|" . $row ['geo']; + } + + $url .= '&sensor=false'; + + if (count ( $all_rows ) > 0) { + return $url; + } else { + return ""; + } + } + public function getMostPopularPostsOfTheYear($author_user_id, $network, $year, $count = 25) { + $vars = array ( + ':network_user_id' => $author_user_id, + ':network' => $network, + ':year' => $year, + ':count' => $count + ); + $q = "SELECT po.*, po.id AS post_key, po.pub_date + interval #gmt_offset# hour as adj_pub_date, "; + $q .= "(greatest(retweet_count_cache, retweet_count_api) + reply_count_cache + favlike_count_cache) "; + $q .= "AS total_responses FROM #prefix#posts po WHERE YEAR(pub_date)=:year "; + $q .= "AND po.author_user_id=:network_user_id AND po.network=:network AND "; + $q .= "in_reply_to_post_id IS null AND in_reply_to_user_id IS NULL AND "; + $q .= "in_retweet_of_post_id IS NULL AND in_rt_of_user_id IS NULL "; + $q .= "ORDER BY total_responses DESC LIMIT :count"; + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + foreach ( $post_rows as $row ) { + $post = new Post ( $row ); + $posts [] = $post; + } + return $posts; + } + public function getAverageRetweetCount($author_username, $network, $last_x_days, $since = null) { + if ($since == null) { + $since = date ( 'Y-m-d' ); + } + + $q = "SELECT round(avg(old_retweet_count_cache + retweet_count_cache)) as average_retweet_count "; + $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; + $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; + $q .= "AND (retweet_count_cache > 0 OR old_retweet_count_cache > 0) "; + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':last_x_days' => ( int ) $last_x_days, + ':since' => $since + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowAsArray ( $ps ); + if (! isset ( $result ["average_retweet_count"] )) { + $q = "SELECT round(avg(retweet_count_api)) as average_retweet_count "; + $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; + $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; + $q .= "AND retweet_count_api > 0 "; + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':last_x_days' => ( int ) $last_x_days, + ':since' => $since + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowAsArray ( $ps ); + } + return $result ["average_retweet_count"]; + } + public function getAverageFaveCount($author_username, $network, $last_x_days, $since = null) { + if ($since == null) { + $since = date ( 'Y-m-d' ); + } + + $q = "SELECT round(avg(favlike_count_cache)) as average_favlike_count "; + $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; + $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; + $q .= "AND favlike_count_cache > 0 "; + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':last_x_days' => ( int ) $last_x_days, + ':since' => $since + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowAsArray ( $ps ); + return $result ["average_favlike_count"]; + } + public function getAverageReplyCount($author_username, $network, $last_x_days, $since = null) { + if ($since == null) { + $since = date ( 'Y-m-d' ); + } + + $q = "SELECT round(avg(reply_count_cache)) as average_reply_count "; + $q .= "FROM #prefix#posts WHERE network=:network and author_username=:author_username "; + $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; + $q .= "AND reply_count_cache > 0 "; + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY);"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':last_x_days' => ( int ) $last_x_days, + ':since' => $since + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowAsArray ( $ps ); + return $result ["average_reply_count"]; + } + public function doesUserHavePostsWithRetweetsSinceDate($author_username, $network, $last_x_days, $since = null) { + if ($since == null) { + $since = date ( 'Y-m-d' ); + } + + $q = "SELECT id FROM #prefix#posts WHERE network=:network and author_username=:author_username "; + $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; + $q .= "AND (retweet_count_cache > 0 OR old_retweet_count_cache > 0 OR retweet_count_api > 0) "; + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY) LIMIT 1;"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':last_x_days' => ( int ) $last_x_days, + ':since' => $since + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowsAsArrays ( $ps ); + if (sizeof ( $result ) < 1) { + return false; + } else { + return true; + } + } + public function doesUserHavePostsWithFavesSinceDate($author_username, $network, $last_x_days, $since = null) { + if ($since == null) { + $since = date ( 'Y-m-d' ); + } + + $q = "SELECT id FROM #prefix#posts WHERE network=:network and author_username=:author_username "; + $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; + $q .= "AND (favlike_count_cache > 0) "; + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY) LIMIT 1;"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':last_x_days' => ( int ) $last_x_days, + ':since' => $since + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowsAsArrays ( $ps ); + if (sizeof ( $result ) < 1) { + return false; + } else { + return true; + } + } + public function doesUserHavePostsWithRepliesSinceDate($author_username, $network, $last_x_days, $since = null) { + if ($since == null) { + $since = date ( 'Y-m-d' ); + } + + $q = "SELECT id FROM #prefix#posts WHERE network=:network and author_username=:author_username "; + $q .= "AND in_reply_to_user_id IS null AND in_reply_to_post_id IS null AND in_retweet_of_post_id is null "; + $q .= "AND (reply_count_cache > 0) "; + $q .= "AND pub_date >= DATE_SUB(:since, INTERVAL :last_x_days DAY) LIMIT 1;"; + $vars = array ( + ':author_username' => $author_username, + ':network' => $network, + ':last_x_days' => ( int ) $last_x_days, + ':since' => $since + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowsAsArrays ( $ps ); + if (sizeof ( $result ) < 1) { + return false; + } else { + return true; + } + } + public function getRetweetsByAuthorsOverFollowerCount($post_id, $network, $follower_count_threshold) { + $q = "SELECT u.* "; + $q .= "FROM #prefix#posts p "; + $q .= "INNER JOIN #prefix#users u on p.author_user_id = u.user_id "; + $q .= "WHERE p.network=:network AND in_retweet_of_post_id=:post_id "; + $q .= "AND p.is_protected = 0 AND u.follower_count > :follower_count_threshold "; + $q .= "ORDER BY u.follower_count DESC, p.id DESC LIMIT 5"; + + $vars = array ( + ':post_id' => ( string ) $post_id, + ':network' => $network, + ':follower_count_threshold' => $follower_count_threshold + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + + return $this->getDataRowsAsObjects ( $ps, 'User' ); + } + public function getDaysAgoSinceUserRepliedToRecipient($user_id, $recipient_id, $network) { + $q = "SELECT TIMESTAMPDIFF(DAY, pub_date, NOW()) AS last_reply_days_ago "; + $q .= "FROM #prefix#posts AS p "; + $q .= "WHERE p.author_user_id=:user_id AND p.network=:network AND p.in_reply_to_user_id=:recipient_id "; + $q .= "ORDER BY p.pub_date DESC LIMIT 1"; + + $vars = array ( + ':user_id' => ( string ) $user_id, + ':recipient_id' => ( string ) $recipient_id, + ':network' => $network + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowsAsArrays ( $ps ); + + return count ( $result ) ? ( int ) $result [0] ['last_reply_days_ago'] : null; + } + public function countAllPostsByUserSinceDaysAgo($author_id, $network, $days_ago = 7) { + $q = "SELECT COUNT(*) AS count FROM #prefix#posts AS p "; + $q .= "WHERE p.author_user_id=:user_id AND p.network=:network "; + $q .= "AND p.pub_date>=DATE_SUB(CURDATE(), INTERVAL :days_ago DAY) "; + $vars = array ( + ':user_id' => $author_id, + ':network' => $network, + ':days_ago' => $days_ago + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $result = $this->getDataRowAsArray ( $ps ); + + return ( int ) $result ['count']; + } + public function searchPostsByUser(array $keywords, $network, $author_username, $page_number = 1, $page_count = 20) { + if (! is_array ( $keywords )) { + return null; + } + $start_on_record = ($page_number - 1) * $page_count; + + $q = "SELECT p.*, pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p WHERE author_username=:author_username AND network = :network "; + $q .= "AND ("; + $counter = 0; + $search_terms = array (); + $unique_keywords = array_unique ( $keywords ); + foreach ( $unique_keywords as $keyword ) { + $term = $keyword; + for($i = 1; $i < count ( array_keys ( $keywords, $keyword ) ); $i ++) { + $term .= '%' . $keyword; + } + $search_terms [] = $term; + $q .= " post_text LIKE :keyword" . $counter . " "; + if ($keyword != end ( $unique_keywords )) { + $q .= "AND"; + } + $counter ++; + } + $q .= ") ORDER BY pub_date DESC "; + if ($page_count > 0) { + $q .= "LIMIT :start_on_record, :limit;"; + } else { + $q .= ';'; + } + + $vars = array ( + ':author_username' => $author_username, + ':network' => $network + ); + $counter = 0; + foreach ( $search_terms as $term ) { + $vars [':keyword' . $counter] = '%' . $term . '%'; + $counter ++; + } + if ($page_count > 0) { + $vars [':limit'] = ( int ) $page_count; + $vars [':start_on_record'] = ( int ) $start_on_record; + } + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $post_rows = $this->getDataRowsAsArrays ( $ps ); + + $posts = array (); + foreach ( $post_rows as $row ) { + $post = new Post ( $row ); + $posts [] = $post; + } + return $posts; + } + + /** + * Get all posts by a given hashtag with configurable order by field and direction + * + * @param int $hashtag_id + * @param str $network + * @param int $count + * @param str $order_by + * field name + * @param str $direction + * either "DESC" or "ASC + * @param int $page + * Page number, defaults to 1 + * @param bool $is_public + * Whether or not these results are going to be displayed publicly. Defaults to false. + * @return array Posts with link object set + */ + public function getAllPostsByHashtagId($hashtag_id, $network, $count, $order_by = "pub_date", $direction = "DESC", $page = 1, $is_public = false) { + $direction = $direction == "DESC" ? "DESC" : "ASC"; + $start_on_record = ($page - 1) * $count; + $order_by = $this->sanitizeOrderBy ( $order_by ); + + $q = "SELECT p.*, p.pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p, #prefix#hashtags_posts hp, #prefix#hashtags h "; + $q .= "WHERE p.post_id= hp.post_id AND hp.hashtag_id = h.id AND h.id = :hashtag_id AND p.network=:network "; + + if ($is_public) { + $q .= 'AND p.is_protected = 0 '; + } + + $q .= "ORDER BY p.$order_by $direction "; + + $vars = array ( + ':hashtag_id' => $hashtag_id, + ':network' => $network + ); + + if (isset ( $count ) && $count > 0) { + $q .= "LIMIT :start_on_record, :limit"; + $vars [':limit'] = ( int ) $count; + $vars [':start_on_record'] = ( int ) $start_on_record; + } + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + + $all_post_rows = $this->getDataRowsAsArrays ( $ps ); + + $posts = array (); + + if ($all_post_rows) { + $post_keys_array = array (); + foreach ( $all_post_rows as $row ) { + $post_keys_array [] = $row ['id']; + } + + // Get links + $q = "SELECT * FROM #prefix#links WHERE post_key in (" . implode ( ',', $post_keys_array ) . ")"; + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q ); + $all_link_rows = $this->getDataRowsAsArrays ( $ps ); + + // Combine posts and links + foreach ( $all_post_rows as $post_row ) { + $post = new Post ( $post_row ); + foreach ( $all_link_rows as $link_row ) { + if ($link_row ['post_key'] == $post->id) { + $post->addLink ( new Link ( $link_row ) ); + } + } + $posts [] = $post; + } + } + return $posts; + } + public function deletePostsByHashtagId($hashtag_id) { + $q = "DELETE t.* FROM #prefix#posts t "; + $q .= "INNER JOIN #prefix#hashtags_posts hp ON t.post_id = hp.post_id "; + $q .= "WHERE hp.hashtag_id=:hashtag_id;"; + $vars = array ( + ':hashtag_id' => $hashtag_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + return $this->getDeleteCount ( $ps ); + } + public function searchPostsByHashtag($keywords, Hashtag $hashtag, $network, $page_number = 1, $page_count = 20) { + $start_on_record = ($page_number - 1) * $page_count; + $q = "SELECT p.*, p.pub_date + interval #gmt_offset# hour as adj_pub_date "; + $q .= "FROM #prefix#posts p, #prefix#hashtags_posts hp, #prefix#hashtags h "; + $q .= "WHERE p.post_id= hp.post_id AND hp.hashtag_id = h.id AND p.network=:network AND h.id = :hashtag_id "; + if (sizeof ( $keywords ) > 0) { + $q .= "AND ("; + $counter = 0; + foreach ( $keywords as $keyword ) { + $q .= " post_text LIKE :keyword" . $counter . " "; + if ($keyword != end ( $keywords )) { + $q .= "AND"; + } + $counter ++; + } + $q .= ") "; + } + $q .= "ORDER BY pub_date DESC "; + if ($page_count > 0) { + $q .= "LIMIT :start_on_record, :limit;"; + } else { + $q .= ';'; + } + $vars = array ( + ':network' => $network, + ':hashtag_id' => $hashtag->id + ); + if (sizeof ( $keywords ) > 0) { + $counter = 0; + foreach ( $keywords as $keyword ) { + $vars [':keyword' . $counter] = '%' . $keyword . '%'; + $counter ++; + } + } + if ($page_count > 0) { + $vars [':limit'] = ( int ) $page_count; + $vars [':start_on_record'] = ( int ) $start_on_record; + } + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $post_rows = $this->getDataRowsAsArrays ( $ps ); + + $posts = array (); + foreach ( $post_rows as $row ) { + $post = new Post ( $row ); + $posts [] = $post; + } + return $posts; + } + + public function getMostFavCommentPostsByUserId($author_id, $network) { + $q = "SELECT * FROM #prefix#posts "; + $q .= "WHERE author_user_id = :author_user_id AND network = :network "; + $q .= "AND DATE(pub_date + interval #gmt_offset# hour) = CURRENT_DATE() "; + $q .= "AND reply_count_cache + favlike_count_cache = "; + $q .= "(SELECT MAX(reply_count_cache + favlike_count_cache) FROM #prefix#posts "; + $q .= "WHERE author_user_id = :author_user_id AND network = :network "; + $q .= "AND DATE(pub_date + interval #gmt_offset# hour) = CURRENT_DATE()) "; + + $vars = array ( + ':author_user_id' => $author_id, + ':network' => $network + ); + + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + $ps = $this->execute ( $q, $vars ); + $post_rows = $this->getDataRowsAsArrays ( $ps ); + $posts = array (); + foreach ( $post_rows as $row ) { + $post = new Post ( $row ); + $posts [] = $post; + } + return $posts; + } } diff --git a/webapp/_lib/dao/interface.FavoritePostDAO.php b/webapp/_lib/dao/interface.FavoritePostDAO.php index 314f443b84..dda51575bf 100755 --- a/webapp/_lib/dao/interface.FavoritePostDAO.php +++ b/webapp/_lib/dao/interface.FavoritePostDAO.php @@ -128,4 +128,8 @@ public function getFavoritesFromOneYearAgo($fav_of_user_id, $network, $from_date * @return array User objects */ public function getUsersWhoFavoritedMostOfYourPosts($author_user_id, $network, $last_x_days); + + public function getGenderOfFavoriters($post_id); + + public function getGenderOfCommenters($post_id); } \ No newline at end of file diff --git a/webapp/_lib/dao/interface.PostDAO.php b/webapp/_lib/dao/interface.PostDAO.php index 4229ca726d..ea1a52a1af 100644 --- a/webapp/_lib/dao/interface.PostDAO.php +++ b/webapp/_lib/dao/interface.PostDAO.php @@ -789,4 +789,7 @@ public function deletePostsByHashtagId($hashtag_id); * @return arr of Post objects */ public function searchPostsByHashtag($keywords, Hashtag $hashtag, $network, $page_number=1, $page_count=20); + + public function getMostFavCommentPostsByUserId($author_id, $network); + } From 99232ffbb64729855e8eac35b068468be64fd04d Mon Sep 17 00:00:00 2001 From: anna Date: Mon, 9 Jun 2014 02:55:54 +0300 Subject: [PATCH 06/40] Created template for gender analysis --- tests/TestOfFavoritePostMySQLDAO.php | 1120 ++++--- tests/TestOfPostMySQLDAO.php | 36 + webapp/find | 2599 +++++++++++++++++ ...14-05-29_add-gender-to-users_issue1943.sql | 1 + .../insights/biggestfans.php | 2 +- .../insights/genderanalysis.php | 100 + .../tests/TestOfGenderAnalysisInsight.php | 105 + .../insightsgenerator/view/genderanalysis.tpl | 23 + webapp/res | 0 9 files changed, 3543 insertions(+), 443 deletions(-) create mode 100644 webapp/find create mode 100644 webapp/install/sql/mysql_migrations/2014-05-29_add-gender-to-users_issue1943.sql create mode 100644 webapp/plugins/insightsgenerator/insights/genderanalysis.php create mode 100644 webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php create mode 100644 webapp/plugins/insightsgenerator/view/genderanalysis.tpl create mode 100644 webapp/res diff --git a/tests/TestOfFavoritePostMySQLDAO.php b/tests/TestOfFavoritePostMySQLDAO.php index 0a206d3291..4944076481 100644 --- a/tests/TestOfFavoritePostMySQLDAO.php +++ b/tests/TestOfFavoritePostMySQLDAO.php @@ -23,447 +23,683 @@ * @copyright 2009-2013 Amy Unruh, Gina Trapani * @author Amy Unruh */ - -require_once dirname(__FILE__).'/init.tests.php'; -require_once THINKUP_WEBAPP_PATH.'_lib/extlib/simpletest/autorun.php'; -require_once THINKUP_WEBAPP_PATH.'config.inc.php'; -require_once THINKUP_WEBAPP_PATH.'plugins/twitter/model/class.TwitterPlugin.php'; -require_once THINKUP_WEBAPP_PATH.'plugins/facebook/model/class.FacebookPlugin.php'; - +require_once dirname ( __FILE__ ) . '/init.tests.php'; +require_once THINKUP_WEBAPP_PATH . '_lib/extlib/simpletest/autorun.php'; +require_once THINKUP_WEBAPP_PATH . 'config.inc.php'; +require_once THINKUP_WEBAPP_PATH . 'plugins/twitter/model/class.TwitterPlugin.php'; +require_once THINKUP_WEBAPP_PATH . 'plugins/facebook/model/class.FacebookPlugin.php'; class TestOfFavoritePostMySQLDAO extends ThinkUpUnitTestCase { - /** - * - * @var FavoritePostMySQLDAO - */ - protected $dao; - - public function setUp() { - parent::setUp(); - $config = Config::getInstance(); - $this->builders = self::buildData(); - $this->dao = new FavoritePostMySQLDAO(); - } - - protected function buildData() { - - $builders = array(); - $builders[] = FixtureBuilder::build('owner_instances', array('owner_id'=>1, 'instance_id'=>1)); - - $builders[] = FixtureBuilder::build('users', array('user_id'=>13, 'user_name'=>'ev', - 'full_name'=>'Ev Williams', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'follower_count'=>10, - 'last_updated'=>'2005-01-01 13:48:05', 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('users', array('user_id'=>19, 'user_name'=>'linkbaiter', - 'full_name'=>'Link Baiter', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'follower_count'=>70, - 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('users', array('user_id'=>20, 'user_name'=>'user1', - 'full_name'=>'User 1', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'follower_count'=>90, - 'network'=>'twitter')); - - //protected user - $builders[] = FixtureBuilder::build('users', array('user_id'=>21, 'user_name'=>'user2', - 'full_name'=>'User 2', 'avatar'=>'avatar.jpg', 'is_protected'=>1, 'follower_count'=>80, - 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('users', array('user_id'=>22, 'user_name'=>'quoter', - 'full_name'=>'Quotables', 'is_protected'=>0, 'follower_count'=>80, 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('users', array('user_id'=>23, 'user_name'=>'user3', - 'full_name'=>'User 3', 'is_protected'=>0, 'follower_count'=>100, 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('users', array('user_id'=>24, 'user_name'=>'notonpublictimeline', - 'full_name'=>'Not on Public Timeline', 'is_protected'=>1, 'network'=>'twitter', 'follower_count'=>100)); - - //Make public - $builders[] = FixtureBuilder::build('instances', array('network_user_id'=>13, 'network_username'=>'ev', - 'is_public'=>1, 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('instances', array('network_user_id'=>19, 'network_username'=>'linkbaiter', - 'is_public'=>1, 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('instances', array('network_user_id'=>23, 'network_username'=>'user3', - 'is_public'=>1, 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('instances', array('network_user_id'=>24, - 'network_username'=>'notonpublictimeline', 'is_public'=>0, 'network'=>'twitter')); - - //Add straight text posts from ev - $counter = 0; - while ($counter < 40) { - $pseudo_minute = str_pad($counter, 2, "0", STR_PAD_LEFT); - if ($counter % 3 == 0) { - $source = 'Tweetie for Mac'; - } else if ($counter % 3 == 1) { - $source = 'Tweet Button'; - } else { - $source = 'web'; - } - $is_protected = $counter == 18 ? 1 : 0; // post with id 18 is protected - $builders[] = FixtureBuilder::build('posts', array('post_id'=>$counter, 'author_user_id'=>13, - 'author_username'=>'ev', 'author_fullname'=>'Ev Williams', 'author_avatar'=>'avatar.jpg', - 'post_text'=>'This is post '.$counter, 'source'=>$source, 'pub_date'=>'2006-01-01 00:'. - $pseudo_minute.':00', 'reply_count_cache'=>rand(0, 4), 'retweet_count_cache'=>5, 'network'=>'twitter', - 'in_reply_to_post_id'=>null, 'in_retweet_of_post_id'=>null, 'is_geo_encoded'=>0, - 'is_protected' => $is_protected)); - $counter++; - } - - //Add link posts from 'linkbaiter' - $counter = 0; - while ($counter < 40) { - $post_id = $counter + 80; - $is_protected = $counter == 18 ? 1 : 0; // post with id 18 is protected - $pseudo_minute = str_pad(($counter), 2, "0", STR_PAD_LEFT); - $builders[] = FixtureBuilder::build('posts', array('post_id'=>$post_id, 'author_user_id'=>19, - 'author_username'=>'linkbaiter', 'author_fullname'=>'Link Baiter', 'is_geo_encoded'=>0, - 'post_text'=>'This is link post '.$counter, 'source'=>'web', 'pub_date'=>'2006-03-01 00:'. - $pseudo_minute.':00', 'reply_count_cache'=>0, 'retweet_count_cache'=>0, 'network'=>'twitter', - 'is_protected' => $is_protected)); - - $builders[] = FixtureBuilder::build('links', array('url'=>'http://example.com/'.$counter, - 'explanded_url'=>'http://example.com/'.$counter.'.html', 'title'=>'Link $counter', 'clicks'=>0, - 'post_id'=>$post_id, 'image_src'=>'')); - - $counter++; - } - - $builders[] = FixtureBuilder::build('posts', array('post_id'=>10822735852740608, 'author_user_id'=>23, - 'author_username'=>'user3', 'author_fullname'=>'User 3', 'network'=>'twitter', - 'post_text'=>'@nytimes has posted an interactive panoramic photo that shows how Times Square has changed over'. - ' the last 20 years http://nyti.ms/hmTVzP', - 'source'=>'web', 'pub_date'=>'-300s', 'reply_count_cache'=>0, 'retweet_count_cache'=>0, - 'location'=>'New York City', 'is_geo_encoded'=>0, 'is_protected' => 0)); - - // have 'user1' favorite some of ev's posts - for ($i = 0; $i < 20; $i++) { - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>$i, - 'author_user_id'=>13, 'fav_of_user_id'=>20, 'network'=>'twitter')); - } - // have 'user1' favorite some linkbaiter posts - for ($i = 80; $i < 100; $i++) { - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>$i, - 'author_user_id'=>19, 'fav_of_user_id'=>20, 'network'=>'twitter')); - } - // have 'user2' favorite one of the same linkbaiter posts - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>87, - 'author_user_id'=>19, 'fav_of_user_id'=>21, 'network'=>'twitter')); - - return $builders; - } - - public function tearDown() { - $this->builders = null; - parent::tearDown(); - } - - /** - * Test constructor both directly and via factory - */ - public function testConstructor() { - $dao = new FavoritePostMySQLDAO(); - $this->assertTrue(isset($dao)); - $dao = DAOFactory::getDAO('FavoritePostDAO'); - $this->assertTrue(isset($dao)); - } - - /** - * Test creation of fav post, where the post has not yet been saved to database. - */ - public function testAddFavoriteFullPost() { - $favoriter_id = 21; //user 2 - $vals = $this->buildPostArray1(); - $res = $this->dao->addFavorite($favoriter_id, $vals); - $this->assertEqual($res, 1); - } - - public function testAddFavoriteMissingPostData() { - $favoriter_id = 21; //user 2 - $vals = $this->buildFavoriteArray(); - $this->expectException('Exception', - 'Error: Favorited post ID 345840895515801 is not in storage and could not be inserted.'); - $res = $this->dao->addFavorite($favoriter_id, $vals); - $this->assertEqual($res, 1); - } - - /** - * Test creation of fav post, where post already exists in db, but not favorite bookkeeping, - * and so we are just adding an entry to the favorites table. - */ - public function testAddFavoritePostExists() { - $favoriter_id = 21; //user 2 - $vals = $this->buildPostArray2(); - $res = $this->dao->addFavorite($favoriter_id, $vals); - $this->assertEqual($res, 1); - // now try again-- this time the 'add' should return 0 - $res = $this->dao->addFavorite($favoriter_id, $vals); - $this->assertEqual($res, 0); - } - - /** - * Test unfavoriting of fav'd post - */ - public function testFavPostUnfav() { - $res = $this->dao->unFavorite(81, 20, 'twitter'); - $this->assertEqual($res, 1); - } - - /** - * Test attempted unfav of a post that is favorited, but not by the given user - */ - public function testNonFavPostUnfav() { - $res = $this->dao->unFavorite(82, 19, 'twitter'); - $this->assertEqual($res, 0); - } - - /** - * Check unfavoriting the same post by multiple users - */ - public function testMultipleFavsOfPost() { - $this->dao = new FavoritePostMySQLDAO(); - $res = $this->dao->unFavorite(87, 20, 'twitter'); - $this->assertEqual($res, 1); - $res = $this->dao->unFavorite(87, 21, 'twitter'); - $this->assertEqual($res, 1); - $res = $this->dao->unFavorite(87, 20, 'twitter'); - $this->assertEqual($res, 0); - } - - /** - * Test fetch of N favorited posts for a given user by userid - */ - public function testGetAllFavsForUserID() { - $this->dao = new FavoritePostMySQLDAO(); - $res = $this->dao->getAllFavoritePosts(20, 'twitter', 6, 1, false); //not public - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 6); - $this->assertEqual($res[0]->post_text, 'This is link post 19'); - $this->assertEqual($res[1]->post_text, 'This is link post 18'); - $i = 0; - while ($i < 6) { - $this->debug( $res[$i]->post_text ); - $i++; - } - // just check that we get the same result w/out the explicit arg - $res = $this->dao->getAllFavoritePosts(20, 'twitter', 6); //not public - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 6); - $this->assertEqual($res[0]->post_text, 'This is link post 19'); - $this->assertEqual($res[1]->post_text, 'This is link post 18'); - - //iterator - $res = $this->dao->getAllFavoritePostsIterator(20, 'twitter', 6); - $this->assertIsA($res, "PostIterator"); - $i = 0; - while ($i < 6) { - $this->assertTrue($res->valid()); - $seeme = $res->current(); - $this->debug( $seeme->post_text ); - $res->next(); - $i++; - } - $this->assertFalse($res->valid()); - } - - /** - * Test fetch of N favorited posts for a given user by userid, but where public = true. - * post with id 18 should not be fetched this time - */ - public function testGetAllFavsForUserID2() { - $this->dao = new FavoritePostMySQLDAO(); - $res = $this->dao->getAllFavoritePosts(20, 'twitter', 6, 1, true); // public - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 6); - $this->assertEqual($res[0]->post_text, 'This is link post 19'); - $this->assertEqual($res[1]->post_text, 'This is link post 17'); - $i = 0; - while ($i < 6) { - $this->debug( $res[$i]->post_text ); - $i++; - } - } - - /** - * Test fetch of all favorited posts for a given user by username - */ - public function testGetAllFavsForUsername() { - $dao = new FavoritePostMySQLDAO(); - $res = $this->dao->getAllFavoritePostsByUsername('user1', 'twitter', 100); - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 40); - - //iterator - $res = $this->dao->getAllFavoritePostsByUsernameIterator('user1', 'twitter', 100); - $this->assertIsA($res, "PostIterator"); - $i = 0; - while ($i < 40) { - $this->assertTrue($res->valid()); - $res->next(); - $i++; - } - $this->assertFalse($res->valid()); - } - - /** - * Test fetch of all favorited posts for a given user with post # less than a given upper bound. - */ - public function testGetAllFavsForUserUpperBound() { - $res = $this->dao->getAllFavoritePostsUpperBound(20, 'twitter', 100, 10); - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 10); - } - - /** - * Test pagination - */ - public function testFavoritesPagination() { - $res = $this->dao->getAllFavoritePosts(20, 'twitter', 10, 3); // fetch page 3 - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 10); - $this->assertEqual($res[0]->post_text, 'This is post 19'); - } - - /** - * test fetch of all posts of a given owner that have been favorited by others - */ - public function testGetAllFavoritedPosts() { - $res = $this->dao->getAllFavoritedPosts(19, 'twitter', 30); - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 20); - $this->assertEqual($res[0]->post_text, 'This is link post 7'); - $this->assertEqual($res[1]->post_text, 'This is link post 19'); - } - - /** - * test fetch of information for all users who have favorited a given post - */ - public function testGetFavdsOfPost() { - $res = $this->dao->getUsersWhoFavedPost(87); // twitter is default network - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 2); - $res = $this->dao->getUsersWhoFavedPost(87, 'twitter', true); - $this->assertIsA($res, "array"); - $this->assertEqual(count($res), 2); - } - - public function testGetFavoritesFromOneYearAgo() { - //build post published one year ago today - $builders[] = FixtureBuilder::build('posts', array('post_id'=>'abadadfd1212', 'author_user_id'=>'19', - 'author_username'=>'linkbaiter', 'author_fullname'=>'Link Baiter', 'is_geo_encoded'=>0, - 'post_text'=>'This is link post '.$counter, 'source'=>'web', 'pub_date'=>'-365d', - 'reply_count_cache'=>0, 'retweet_count_cache'=>0, 'network'=>'twitter', - 'is_protected' => 0)); - - //build favorite of that post by test user ev - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>'abadadfd1212', 'author_user_id'=>'19', - 'fav_of_user_id'=>'13', 'network'=>'twitter')); - - //get favorites from one year ago today - $result = $this->dao->getFavoritesFromOneYearAgo('13', 'twitter'); - - //assert post is returned - $this->assertEqual(sizeof($result), 1); - $this->assertEqual($result[0]->post_id, 'abadadfd1212'); - - //build post published one year and 4 days ago today - $builders[] = FixtureBuilder::build('posts', array('post_id'=>'abadadfd1213', 'author_user_id'=>'19', - 'author_username'=>'linkbaiter', 'author_fullname'=>'Link Baiter', 'is_geo_encoded'=>0, - 'post_text'=>'This is link post '.$counter, 'source'=>'web', 'pub_date'=>'-369d', - 'reply_count_cache'=>0, 'retweet_count_cache'=>0, 'network'=>'twitter', - 'is_protected' => 0)); - - //build favorite of that post by test user ev - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>'abadadfd1213', 'author_user_id'=>'19', - 'fav_of_user_id'=>'13', 'network'=>'twitter')); - - $since_date = date("Y-m-d", strtotime("-4 day")); - //get favorites from one year ago today - $result = $this->dao->getFavoritesFromOneYearAgo('13', 'twitter', $since_date); - - //assert post is returned - $this->assertEqual(sizeof($result), 1); - $this->assertEqual($result[0]->post_id, 'abadadfd1213'); - } - - public function testGetUsersWhoFavoritedMostOfYourPosts() { - //build post published 3 days ago - $builders[] = FixtureBuilder::build('posts', array('post_id'=>'abadadfd1212', 'author_user_id'=>'19', - 'author_username'=>'linkbaiter', 'author_fullname'=>'Link Baiter', 'is_geo_encoded'=>0, - 'post_text'=>'This is link post '.$counter, 'source'=>'web', 'pub_date'=>'-3d', - 'reply_count_cache'=>0, 'retweet_count_cache'=>0, 'network'=>'twitter', - 'is_protected' => 0)); - - //build post published 4 days ago - $builders[] = FixtureBuilder::build('posts', array('post_id'=>'abadadfd1213', 'author_user_id'=>'19', - 'author_username'=>'linkbaiter', 'author_fullname'=>'Link Baiter', 'is_geo_encoded'=>0, - 'post_text'=>'This is link post '.$counter, 'source'=>'web', 'pub_date'=>'-4d', - 'reply_count_cache'=>0, 'retweet_count_cache'=>0, 'network'=>'twitter', - 'is_protected' => 0)); - - //build favorite of those posts by test user ev - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>'abadadfd1212', 'author_user_id'=>'19', - 'fav_of_user_id'=>'13', 'network'=>'twitter')); - - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>'abadadfd1213', 'author_user_id'=>'19', - 'fav_of_user_id'=>'13', 'network'=>'twitter')); - - //build favorite of that post by test user user1 - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>'abadadfd1212', 'author_user_id'=>'19', - 'fav_of_user_id'=>'20', 'network'=>'twitter')); - - //build favorite of that post by test user user2 - $builders[] = FixtureBuilder::build('favorites', array('post_id'=>'abadadfd1212', 'author_user_id'=>'19', - 'fav_of_user_id'=>'21', 'network'=>'twitter')); - - $result = $this->dao->getUsersWhoFavoritedMostOfYourPosts('19', 'twitter', 7); - $this->debug(Utils::varDumpToString($result)); - $this->assertEqual(sizeof($result), 1); - $this->assertEqual($result[0]->username, 'ev'); - } - - /** - * helper method to build a post - */ - private function buildPostArray1() { - $vals = array(); - $vals['post_id']='2904'; - $vals['author_username']='quoter'; - $vals['author_fullname']="Quoter of Quotables"; - $vals['author_avatar']='avatar.jpg'; - $vals['author_user_id']= 22; - $vals['post_text']="Go confidently in the direction of your dreams! Live the life you've imagined."; - $vals['pub_date']='3/1/2010'; - $vals['source']='web'; - $vals['network']= 'twitter'; - $vals['is_protected'] = 0; - return $vals; - } - - /** - * helper method to build a post - */ - private function buildPostArray2() { - $vals = array(); - $vals['post_id']='10822735852740608'; - $vals['author_username']='user3'; - $vals['author_fullname']="User 3"; - $vals['author_avatar']='avatar.jpg'; - $vals['author_user_id']= 23; - $vals['post_text']="@nytimes has posted an interactive panoramic photo that shows how Times Square has ". - "changed over the last 20 years http://nyti.ms/hmTVzP"; - $vals['pub_date']='-200s'; - $vals['source']='web'; - $vals['network']= 'twitter'; - $vals['is_protected'] = 0; - return $vals; - } - - private function buildFavoriteArray() { - $vals = array(); - $vals["favoriter_id"]= "1075560752"; - $vals["network"] = "facebook page"; - $vals["author_user_id"] = "340319429401281"; - $vals["post_id"]="345840895515801"; - return $vals; - } + /** + * + * @var FavoritePostMySQLDAO + */ + protected $dao; + public function setUp() { + parent::setUp (); + $config = Config::getInstance (); + $this->builders = self::buildData (); + $this->dao = new FavoritePostMySQLDAO (); + } + protected function buildData() { + $builders = array (); + $builders [] = FixtureBuilder::build ( 'owner_instances', array ( + 'owner_id' => 1, + 'instance_id' => 1 + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 13, + 'user_name' => 'ev', + 'full_name' => 'Ev Williams', + 'avatar' => 'avatar.jpg', + 'is_protected' => 0, + 'follower_count' => 10, + 'last_updated' => '2005-01-01 13:48:05', + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 19, + 'user_name' => 'linkbaiter', + 'full_name' => 'Link Baiter', + 'avatar' => 'avatar.jpg', + 'is_protected' => 0, + 'follower_count' => 70, + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 20, + 'user_name' => 'user1', + 'full_name' => 'User 1', + 'avatar' => 'avatar.jpg', + 'is_protected' => 0, + 'follower_count' => 90, + 'network' => 'twitter' + ) ); + + // protected user + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 21, + 'user_name' => 'user2', + 'full_name' => 'User 2', + 'avatar' => 'avatar.jpg', + 'is_protected' => 1, + 'follower_count' => 80, + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 22, + 'user_name' => 'quoter', + 'full_name' => 'Quotables', + 'is_protected' => 0, + 'follower_count' => 80, + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 23, + 'user_name' => 'user3', + 'full_name' => 'User 3', + 'is_protected' => 0, + 'follower_count' => 100, + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 24, + 'user_name' => 'notonpublictimeline', + 'full_name' => 'Not on Public Timeline', + 'is_protected' => 1, + 'network' => 'twitter', + 'follower_count' => 100 + ) ); + + // Make public + $builders [] = FixtureBuilder::build ( 'instances', array ( + 'network_user_id' => 13, + 'network_username' => 'ev', + 'is_public' => 1, + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'instances', array ( + 'network_user_id' => 19, + 'network_username' => 'linkbaiter', + 'is_public' => 1, + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'instances', array ( + 'network_user_id' => 23, + 'network_username' => 'user3', + 'is_public' => 1, + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'instances', array ( + 'network_user_id' => 24, + 'network_username' => 'notonpublictimeline', + 'is_public' => 0, + 'network' => 'twitter' + ) ); + + // Add straight text posts from ev + $counter = 0; + while ( $counter < 40 ) { + $pseudo_minute = str_pad ( $counter, 2, "0", STR_PAD_LEFT ); + if ($counter % 3 == 0) { + $source = 'Tweetie for Mac'; + } else if ($counter % 3 == 1) { + $source = 'Tweet Button'; + } else { + $source = 'web'; + } + $is_protected = $counter == 18 ? 1 : 0; // post with id 18 is protected + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => $counter, + 'author_user_id' => 13, + 'author_username' => 'ev', + 'author_fullname' => 'Ev Williams', + 'author_avatar' => 'avatar.jpg', + 'post_text' => 'This is post ' . $counter, + 'source' => $source, + 'pub_date' => '2006-01-01 00:' . $pseudo_minute . ':00', + 'reply_count_cache' => rand ( 0, 4 ), + 'retweet_count_cache' => 5, + 'network' => 'twitter', + 'in_reply_to_post_id' => null, + 'in_retweet_of_post_id' => null, + 'is_geo_encoded' => 0, + 'is_protected' => $is_protected + ) ); + $counter ++; + } + + // Add link posts from 'linkbaiter' + $counter = 0; + while ( $counter < 40 ) { + $post_id = $counter + 80; + $is_protected = $counter == 18 ? 1 : 0; // post with id 18 is protected + $pseudo_minute = str_pad ( ($counter), 2, "0", STR_PAD_LEFT ); + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => $post_id, + 'author_user_id' => 19, + 'author_username' => 'linkbaiter', + 'author_fullname' => 'Link Baiter', + 'is_geo_encoded' => 0, + 'post_text' => 'This is link post ' . $counter, + 'source' => 'web', + 'pub_date' => '2006-03-01 00:' . $pseudo_minute . ':00', + 'reply_count_cache' => 0, + 'retweet_count_cache' => 0, + 'network' => 'twitter', + 'is_protected' => $is_protected + ) ); + + $builders [] = FixtureBuilder::build ( 'links', array ( + 'url' => 'http://example.com/' . $counter, + 'explanded_url' => 'http://example.com/' . $counter . '.html', + 'title' => 'Link $counter', + 'clicks' => 0, + 'post_id' => $post_id, + 'image_src' => '' + ) ); + + $counter ++; + } + + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 10822735852740608, + 'author_user_id' => 23, + 'author_username' => 'user3', + 'author_fullname' => 'User 3', + 'network' => 'twitter', + 'post_text' => '@nytimes has posted an interactive panoramic photo that shows how Times Square has changed over' . ' the last 20 years http://nyti.ms/hmTVzP', + 'source' => 'web', + 'pub_date' => '-300s', + 'reply_count_cache' => 0, + 'retweet_count_cache' => 0, + 'location' => 'New York City', + 'is_geo_encoded' => 0, + 'is_protected' => 0 + ) ); + + // have 'user1' favorite some of ev's posts + for($i = 0; $i < 20; $i ++) { + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => $i, + 'author_user_id' => 13, + 'fav_of_user_id' => 20, + 'network' => 'twitter' + ) ); + } + // have 'user1' favorite some linkbaiter posts + for($i = 80; $i < 100; $i ++) { + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => $i, + 'author_user_id' => 19, + 'fav_of_user_id' => 20, + 'network' => 'twitter' + ) ); + } + // have 'user2' favorite one of the same linkbaiter posts + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 87, + 'author_user_id' => 19, + 'fav_of_user_id' => 21, + 'network' => 'twitter' + ) ); + + return $builders; + } + public function tearDown() { + $this->builders = null; + parent::tearDown (); + } + + /** + * Test constructor both directly and via factory + */ + public function testConstructor() { + $dao = new FavoritePostMySQLDAO (); + $this->assertTrue ( isset ( $dao ) ); + $dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); + $this->assertTrue ( isset ( $dao ) ); + } + + /** + * Test creation of fav post, where the post has not yet been saved to database. + */ + public function testAddFavoriteFullPost() { + $favoriter_id = 21; // user 2 + $vals = $this->buildPostArray1 (); + $res = $this->dao->addFavorite ( $favoriter_id, $vals ); + $this->assertEqual ( $res, 1 ); + } + public function testAddFavoriteMissingPostData() { + $favoriter_id = 21; // user 2 + $vals = $this->buildFavoriteArray (); + $this->expectException ( 'Exception', 'Error: Favorited post ID 345840895515801 is not in storage and could not be inserted.' ); + $res = $this->dao->addFavorite ( $favoriter_id, $vals ); + $this->assertEqual ( $res, 1 ); + } + + /** + * Test creation of fav post, where post already exists in db, but not favorite bookkeeping, + * and so we are just adding an entry to the favorites table. + */ + public function testAddFavoritePostExists() { + $favoriter_id = 21; // user 2 + $vals = $this->buildPostArray2 (); + $res = $this->dao->addFavorite ( $favoriter_id, $vals ); + $this->assertEqual ( $res, 1 ); + // now try again-- this time the 'add' should return 0 + $res = $this->dao->addFavorite ( $favoriter_id, $vals ); + $this->assertEqual ( $res, 0 ); + } + + /** + * Test unfavoriting of fav'd post + */ + public function testFavPostUnfav() { + $res = $this->dao->unFavorite ( 81, 20, 'twitter' ); + $this->assertEqual ( $res, 1 ); + } + + /** + * Test attempted unfav of a post that is favorited, but not by the given user + */ + public function testNonFavPostUnfav() { + $res = $this->dao->unFavorite ( 82, 19, 'twitter' ); + $this->assertEqual ( $res, 0 ); + } + + /** + * Check unfavoriting the same post by multiple users + */ + public function testMultipleFavsOfPost() { + $this->dao = new FavoritePostMySQLDAO (); + $res = $this->dao->unFavorite ( 87, 20, 'twitter' ); + $this->assertEqual ( $res, 1 ); + $res = $this->dao->unFavorite ( 87, 21, 'twitter' ); + $this->assertEqual ( $res, 1 ); + $res = $this->dao->unFavorite ( 87, 20, 'twitter' ); + $this->assertEqual ( $res, 0 ); + } + + /** + * Test fetch of N favorited posts for a given user by userid + */ + public function testGetAllFavsForUserID() { + $this->dao = new FavoritePostMySQLDAO (); + $res = $this->dao->getAllFavoritePosts ( 20, 'twitter', 6, 1, false ); // not public + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 6 ); + $this->assertEqual ( $res [0]->post_text, 'This is link post 19' ); + $this->assertEqual ( $res [1]->post_text, 'This is link post 18' ); + $i = 0; + while ( $i < 6 ) { + $this->debug ( $res [$i]->post_text ); + $i ++; + } + // just check that we get the same result w/out the explicit arg + $res = $this->dao->getAllFavoritePosts ( 20, 'twitter', 6 ); // not public + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 6 ); + $this->assertEqual ( $res [0]->post_text, 'This is link post 19' ); + $this->assertEqual ( $res [1]->post_text, 'This is link post 18' ); + + // iterator + $res = $this->dao->getAllFavoritePostsIterator ( 20, 'twitter', 6 ); + $this->assertIsA ( $res, "PostIterator" ); + $i = 0; + while ( $i < 6 ) { + $this->assertTrue ( $res->valid () ); + $seeme = $res->current (); + $this->debug ( $seeme->post_text ); + $res->next (); + $i ++; + } + $this->assertFalse ( $res->valid () ); + } + + /** + * Test fetch of N favorited posts for a given user by userid, but where public = true. + * post with id 18 should not be fetched this time + */ + public function testGetAllFavsForUserID2() { + $this->dao = new FavoritePostMySQLDAO (); + $res = $this->dao->getAllFavoritePosts ( 20, 'twitter', 6, 1, true ); // public + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 6 ); + $this->assertEqual ( $res [0]->post_text, 'This is link post 19' ); + $this->assertEqual ( $res [1]->post_text, 'This is link post 17' ); + $i = 0; + while ( $i < 6 ) { + $this->debug ( $res [$i]->post_text ); + $i ++; + } + } + + /** + * Test fetch of all favorited posts for a given user by username + */ + public function testGetAllFavsForUsername() { + $dao = new FavoritePostMySQLDAO (); + $res = $this->dao->getAllFavoritePostsByUsername ( 'user1', 'twitter', 100 ); + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 40 ); + + // iterator + $res = $this->dao->getAllFavoritePostsByUsernameIterator ( 'user1', 'twitter', 100 ); + $this->assertIsA ( $res, "PostIterator" ); + $i = 0; + while ( $i < 40 ) { + $this->assertTrue ( $res->valid () ); + $res->next (); + $i ++; + } + $this->assertFalse ( $res->valid () ); + } + + /** + * Test fetch of all favorited posts for a given user with post # less than a given upper bound. + */ + public function testGetAllFavsForUserUpperBound() { + $res = $this->dao->getAllFavoritePostsUpperBound ( 20, 'twitter', 100, 10 ); + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 10 ); + } + + /** + * Test pagination + */ + public function testFavoritesPagination() { + $res = $this->dao->getAllFavoritePosts ( 20, 'twitter', 10, 3 ); // fetch page 3 + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 10 ); + $this->assertEqual ( $res [0]->post_text, 'This is post 19' ); + } + + /** + * test fetch of all posts of a given owner that have been favorited by others + */ + public function testGetAllFavoritedPosts() { + $res = $this->dao->getAllFavoritedPosts ( 19, 'twitter', 30 ); + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 20 ); + $this->assertEqual ( $res [0]->post_text, 'This is link post 7' ); + $this->assertEqual ( $res [1]->post_text, 'This is link post 19' ); + } + + /** + * test fetch of information for all users who have favorited a given post + */ + public function testGetFavdsOfPost() { + $res = $this->dao->getUsersWhoFavedPost ( 87 ); // twitter is default network + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 2 ); + $res = $this->dao->getUsersWhoFavedPost ( 87, 'twitter', true ); + $this->assertIsA ( $res, "array" ); + $this->assertEqual ( count ( $res ), 2 ); + } + public function testGetFavoritesFromOneYearAgo() { + // build post published one year ago today + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'abadadfd1212', + 'author_user_id' => '19', + 'author_username' => 'linkbaiter', + 'author_fullname' => 'Link Baiter', + 'is_geo_encoded' => 0, + 'post_text' => 'This is link post ' . $counter, + 'source' => 'web', + 'pub_date' => '-365d', + 'reply_count_cache' => 0, + 'retweet_count_cache' => 0, + 'network' => 'twitter', + 'is_protected' => 0 + ) ); + + // build favorite of that post by test user ev + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 'abadadfd1212', + 'author_user_id' => '19', + 'fav_of_user_id' => '13', + 'network' => 'twitter' + ) ); + + // get favorites from one year ago today + $result = $this->dao->getFavoritesFromOneYearAgo ( '13', 'twitter' ); + + // assert post is returned + $this->assertEqual ( sizeof ( $result ), 1 ); + $this->assertEqual ( $result [0]->post_id, 'abadadfd1212' ); + + // build post published one year and 4 days ago today + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'abadadfd1213', + 'author_user_id' => '19', + 'author_username' => 'linkbaiter', + 'author_fullname' => 'Link Baiter', + 'is_geo_encoded' => 0, + 'post_text' => 'This is link post ' . $counter, + 'source' => 'web', + 'pub_date' => '-369d', + 'reply_count_cache' => 0, + 'retweet_count_cache' => 0, + 'network' => 'twitter', + 'is_protected' => 0 + ) ); + + // build favorite of that post by test user ev + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 'abadadfd1213', + 'author_user_id' => '19', + 'fav_of_user_id' => '13', + 'network' => 'twitter' + ) ); + + $since_date = date ( "Y-m-d", strtotime ( "-4 day" ) ); + // get favorites from one year ago today + $result = $this->dao->getFavoritesFromOneYearAgo ( '13', 'twitter', $since_date ); + + // assert post is returned + $this->assertEqual ( sizeof ( $result ), 1 ); + $this->assertEqual ( $result [0]->post_id, 'abadadfd1213' ); + } + public function testGetUsersWhoFavoritedMostOfYourPosts() { + // build post published 3 days ago + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'abadadfd1212', + 'author_user_id' => '19', + 'author_username' => 'linkbaiter', + 'author_fullname' => 'Link Baiter', + 'is_geo_encoded' => 0, + 'post_text' => 'This is link post ' . $counter, + 'source' => 'web', + 'pub_date' => '-3d', + 'reply_count_cache' => 0, + 'retweet_count_cache' => 0, + 'network' => 'twitter', + 'is_protected' => 0 + ) ); + + // build post published 4 days ago + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'abadadfd1213', + 'author_user_id' => '19', + 'author_username' => 'linkbaiter', + 'author_fullname' => 'Link Baiter', + 'is_geo_encoded' => 0, + 'post_text' => 'This is link post ' . $counter, + 'source' => 'web', + 'pub_date' => '-4d', + 'reply_count_cache' => 0, + 'retweet_count_cache' => 0, + 'network' => 'twitter', + 'is_protected' => 0 + ) ); + + // build favorite of those posts by test user ev + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 'abadadfd1212', + 'author_user_id' => '19', + 'fav_of_user_id' => '13', + 'network' => 'twitter' + ) ); + + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 'abadadfd1213', + 'author_user_id' => '19', + 'fav_of_user_id' => '13', + 'network' => 'twitter' + ) ); + + // build favorite of that post by test user user1 + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 'abadadfd1212', + 'author_user_id' => '19', + 'fav_of_user_id' => '20', + 'network' => 'twitter' + ) ); + + // build favorite of that post by test user user2 + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 'abadadfd1212', + 'author_user_id' => '19', + 'fav_of_user_id' => '21', + 'network' => 'twitter' + ) ); + + $result = $this->dao->getUsersWhoFavoritedMostOfYourPosts ( '19', 'twitter', 7 ); + $this->debug ( Utils::varDumpToString ( $result ) ); + $this->assertEqual ( sizeof ( $result ), 1 ); + $this->assertEqual ( $result [0]->username, 'ev' ); + } + public function testGetGenderOfFavoriters() { + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 111, + 'fav_of_user_id' => 133, + 'network' => 'facebook' + ) ); + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 111, + 'fav_of_user_id' => 193, + 'network' => 'facebook' + ) ); + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 111, + 'fav_of_user_id' => 203, + 'network' => 'facebook' + ) ); + $builders [] = FixtureBuilder::build ( 'favorites', array ( + 'post_id' => 222, + 'fav_of_user_id' => 203, + 'network' => 'facebook' + ) ); + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 133, + 'gender'=>'male' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 193, + 'gender'=>'male' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 203, + 'gender'=>'female' + ) ); + $result = $this->dao->getGenderOfFavoriters ( '111'); + $this->debug ( Utils::varDumpToString ( $result ) ); + $this->assertEqual ( $result ['female_likes_count'] , '1' ); + $this->assertEqual ( $result ['male_likes_count'], '2' ); + } + + public function testGetGenderOfCommenters() { + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'abadadfd12123', + 'author_user_id' => '203', + 'in_reply_to_post_id' => '111' + ) ); + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'abadad', + 'author_user_id' => '193', + 'in_reply_to_post_id' => '111' + ) ); + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'd12123', + 'author_user_id' => '133', + 'in_reply_to_post_id' => '111' + ) ); + $builders [] = FixtureBuilder::build ( 'posts', array ( + 'post_id' => 'abawertyfd12123', + 'author_user_id' => '203', + 'in_reply_to_post_id' => '222' + ) ); + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 133, + 'gender'=>'male' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 193, + 'gender'=>'male' + ) ); + + $builders [] = FixtureBuilder::build ( 'users', array ( + 'user_id' => 203, + 'gender'=>'female' + ) ); + $result = $this->dao->getGenderOfCommenters ( '111' ); + $this->debug ( Utils::varDumpToString ( $result ) ); + $this->assertEqual ( $result ['female_comm_count'] , '1' ); + $this->assertEqual ( $result ['male_comm_count'], '2' ); + } + /** + * helper method to build a post + */ + private function buildPostArray1() { + $vals = array (); + $vals ['post_id'] = '2904'; + $vals ['author_username'] = 'quoter'; + $vals ['author_fullname'] = "Quoter of Quotables"; + $vals ['author_avatar'] = 'avatar.jpg'; + $vals ['author_user_id'] = 22; + $vals ['post_text'] = "Go confidently in the direction of your dreams! Live the life you've imagined."; + $vals ['pub_date'] = '3/1/2010'; + $vals ['source'] = 'web'; + $vals ['network'] = 'twitter'; + $vals ['is_protected'] = 0; + return $vals; + } + + /** + * helper method to build a post + */ + private function buildPostArray2() { + $vals = array (); + $vals ['post_id'] = '10822735852740608'; + $vals ['author_username'] = 'user3'; + $vals ['author_fullname'] = "User 3"; + $vals ['author_avatar'] = 'avatar.jpg'; + $vals ['author_user_id'] = 23; + $vals ['post_text'] = "@nytimes has posted an interactive panoramic photo that shows how Times Square has " . "changed over the last 20 years http://nyti.ms/hmTVzP"; + $vals ['pub_date'] = '-200s'; + $vals ['source'] = 'web'; + $vals ['network'] = 'twitter'; + $vals ['is_protected'] = 0; + return $vals; + } + private function buildFavoriteArray() { + $vals = array (); + $vals ["favoriter_id"] = "1075560752"; + $vals ["network"] = "facebook page"; + $vals ["author_user_id"] = "340319429401281"; + $vals ["post_id"] = "345840895515801"; + return $vals; + } } diff --git a/tests/TestOfPostMySQLDAO.php b/tests/TestOfPostMySQLDAO.php index 3c15d50971..f45d14ec3f 100644 --- a/tests/TestOfPostMySQLDAO.php +++ b/tests/TestOfPostMySQLDAO.php @@ -4064,6 +4064,42 @@ public function testCountAllPostsByUserSinceDaysAgo() { $this->assertEqual($result, 32); } + + public function testGetMostFavCommentPostsByUserId() { + echo "start test\n"; + $builders = array(); + $user_id=7654321; + $now = date('Y-m-d H:i:s'); + $yesterday = date('Y-m-d H:i:s', strtotime('yesterday')); + $builders[] = FixtureBuilder::build('posts', array('id'=> 331, 'post_id'=> 1331, 'author_user_id'=>$user_id, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=> 1,'favlike_count_cache' => 6)); + + $builders[] = FixtureBuilder::build('posts', array('id'=> 341, 'post_id'=> 1341, 'author_user_id'=>$user_id, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=> 0,'favlike_count_cache' => 5)); + + $builders[] = FixtureBuilder::build('posts', array('id'=> 351, 'post_id'=> 1351, 'author_user_id'=>$user_id, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple cooment.', + 'pub_date'=>$yesterday, 'reply_count_cache'=> 0,'favlike_count_cache' => 4)); + + $builders[] = FixtureBuilder::build('posts', array('id'=> 361, 'post_id'=> 1361, 'author_user_id'=>$user_id, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=> 0,'favlike_count_cache' => 0)); + + $post_dao = new PostMySQLDAO(); + $posts = $post_dao->getMostFavCommentPostsByUserId($user_id, 'facebook'); + $this-> assertNotNull($posts); + foreach($posts as $post) { + $this->assertTrue($post instanceof Post); + $this->assertEqual($post->post_id, '1331'); + } + + } public function testSearchPostsByUsername() { $post_dao = new PostMySQLDAO(); diff --git a/webapp/find b/webapp/find new file mode 100644 index 0000000000..0f37d07d16 --- /dev/null +++ b/webapp/find @@ -0,0 +1,2599 @@ +./plugins/facebook/model/class.FacebookPlugin.php: $facebook_crawler = new FacebookCrawler($instance, $access_token, $max_crawl_time); +./plugins/facebook/model/class.FacebookCrawler.php: * ThinkUp/webapp/plugins/facebook/model/class.FacebookCrawler.php +./plugins/facebook/model/class.FacebookCrawler.php:class FacebookCrawler { +./plugins/facebook/model/class.FacebookCrawler.php: * @return FacebookCrawler +./plugins/facebook/tests/TestOfFacebookCrawler.php: * ThinkUp/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php +./plugins/facebook/tests/TestOfFacebookCrawler.php: * Test of FacebookCrawler +./plugins/facebook/tests/TestOfFacebookCrawler.php:require_once THINKUP_WEBAPP_PATH.'plugins/facebook/model/class.FacebookCrawler.php'; +./plugins/facebook/tests/TestOfFacebookCrawler.php:class TestOfFacebookCrawler extends ThinkUpUnitTestCase { +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile1_instance, 'fauxaccesstoken', 10); +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile1_instance, 'fauxaccesstoken', 10); +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile1_instance, 'fauxaccesstoken', 120); +./plugins/facebook/tests/TestOfFacebookCrawler.php: $this->assertFalse(preg_match('/FacebookCrawler::fetchPostsAndReplies,\d+ \| 0 Facebook posts found on page 2/', +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc2 = new FacebookCrawler($this->profile2_instance, 'fauxaccesstoken', 10); +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile3_instance, 'fauxaccesstoken', 10); +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->page1_instance, 'fauxaccesstoken', 10); +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->page2_instance, 'fauxaccesstoken', 10); +./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile5_instance, 'fauxaccesstoken', 10); +./plugins/facebook/tests/TestOfFacebookPlugin.php:require_once THINKUP_WEBAPP_PATH.'plugins/facebook/model/class.FacebookCrawler.php'; +./plugins/googleplus/tests/TestOfGooglePlusCrawler.php: * ThinkUp/webapp/plugins/googleplus/tests/TestOfFacebookCrawler.php +./data/logs/crawler.log:2014-05-29 23:41:43 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage +./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:41:46 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:41:52 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:41:52 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:52 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:52 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage +./data/logs/crawler.log:2014-05-29 23:41:52 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:52 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... +./data/logs/crawler.log:2014-05-29 23:41:52 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:53 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:41:53 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... +./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) +./data/logs/crawler.log:2014-05-29 23:41:57 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) +./data/logs/crawler.log:2014-05-29 23:47:03 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:47:06 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:47:12 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ +./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... +./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:47:14 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:47:14 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:14 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... +./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) +./data/logs/crawler.log:2014-05-29 23:47:16 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) +./data/logs/crawler.log:2014-05-29 23:49:25 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:49:28 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:49:34 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:49:36 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:49:36 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:36 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:36 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... +./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) +./data/logs/crawler.log:2014-05-29 23:49:38 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) +./data/logs/crawler.log:2014-05-29 23:49:56 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:49:59 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 +./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... +./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:06 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 +./data/logs/crawler.log:2014-05-29 23:50:06 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 +./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 +./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) +./data/logs/crawler.log:2014-05-29 23:50:09 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 +./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) +./data/logs/crawler.log:2014-06-01 15:40:12 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 158944054123704 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 158944054123704 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 439709542591 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 439709542591 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187898 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187899 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187900 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187902 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187903 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187905 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187920 on facebook for Chris Moyer:1... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187921 on facebook for Chris Moyer:2... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187922 on facebook for Chris Moyer:3... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187923 on facebook for Chris Moyer:4... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187924 on facebook for Chris Moyer:5... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187925 on facebook for Chris Moyer:6... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187926 on facebook for Chris Moyer:7... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187927 on facebook for Chris Moyer:8... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187928 on facebook for Chris Moyer:9... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187929 on facebook for Chris Moyer:10... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10151848164181985 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10151848164181985 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 151722324867461 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 151722324867461 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437524232591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 437524232591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 435724732591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 435724732591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 435193747591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 435193747591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 149548708418520 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 149548708418520 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 145562958818862 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 145562958818862 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 128550830526770 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 128550830526770 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 151660894852759 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 151660894852759 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 427489887591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 427489887591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 118686211514992 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 118686211514992 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 141093305930579 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 141093305930579 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 422431907591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 422431907591 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 141642905870455 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 141642905870455 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 148686895142561 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 148686895142561 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10150414865507812 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10150414865507812 +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-06-01 15:40:15 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10150328374252744 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10150328374252744 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10150357566827744 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10150357566827744 +./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::processStream,582 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... +./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437900891355 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 437900891355 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storeLinks,644 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437894121355 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:22 | 6.0MB | INFO | FacebookCrawler::processStream,565 | Added 1 like(s) for post 437894121355 +./data/logs/crawler.log:2014-06-01 15:40:22 | 6.0MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437660146355 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 437660146355 +./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::processStream,582 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934038 on facebook page for Hacking and Security::)... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... +./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 775180192497884 +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,565 | Added 25 like(s) for post 775180192497884 +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 671912336174291 +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,565 | Added 25 like(s) for post 671912336174291 +./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) +./data/logs/crawler.log:2014-06-01 15:40:25 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10151734003261985 +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,565 | Added 27 like(s) for post 10151734003261985 +./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) diff --git a/webapp/install/sql/mysql_migrations/2014-05-29_add-gender-to-users_issue1943.sql b/webapp/install/sql/mysql_migrations/2014-05-29_add-gender-to-users_issue1943.sql new file mode 100644 index 0000000000..80f8802907 --- /dev/null +++ b/webapp/install/sql/mysql_migrations/2014-05-29_add-gender-to-users_issue1943.sql @@ -0,0 +1 @@ +ALTER TABLE tu_users ADD gender VARCHAR ( 255 ) DEFAULT NULL; \ No newline at end of file diff --git a/webapp/plugins/insightsgenerator/insights/biggestfans.php b/webapp/plugins/insightsgenerator/insights/biggestfans.php index 394472b586..045dd14f92 100644 --- a/webapp/plugins/insightsgenerator/insights/biggestfans.php +++ b/webapp/plugins/insightsgenerator/insights/biggestfans.php @@ -1,4 +1,4 @@ -. + * + * + * GenderAnalysis (name of file) + * + * Description of what this class does + * + * Copyright (c) 2014 Anna Shkerina + * + * @author Anna Shkerina blond00792@gmail.com + * @license http://www.gnu.org/licenses/gpl.html + * @copyright 2014 Anna Shkerina + */ + +class GenderAnalysisInsight extends InsightPluginParent implements InsightPlugin { + + public function generateInsight(Instance $instance, $last_week_of_posts, $number_days) { + parent::generateInsight($instance, $last_week_of_posts, $number_days); + $this->logger->logInfo("Begin generating insight", __METHOD__.','.__LINE__); + + $filename = basename(__FILE__, ".php"); + + $post_dao = DAOFactory::getDAO('PostDAO'); + echo "post"; + $fpost_dao = DAOFactory::getDAO('FavoritePostDAO'); + echo "fav"; + $posts = $post_dao->getMostFavCommentPostsByUserId($instance->network_user_id, $instance->network); + echo "posts=" . Utils::varDumpToString($posts) . "
"; + echo "for_before"; + foreach ($posts as $post) { + $gender_fav = $fpost_dao->getGenderOfFavoriters($post->post_id); + $gender_comm = $fpost_dao->getGenderOfCommenters($post->post_id); + echo "post_id=".$post->post_id."
"; + echo "f_f=".$gender_fav['female_likes_count']."
"; + echo "m_f=".$gender_fav['male_likes_count']."
"; + echo "f_c=".$gender_comm['female_comm_count']."
"; + echo "m_c=".$gender_comm['male_comm_count']."
"; + $my_insight = new Insight(); + $my_insight->instance_id = $instance->id; + $my_insight->slug = 'insight_name_goes_here'.$post->post_id; + $my_insight->date = date('Y-m-d', strtotime($post->pub_date)); + $my_insight->headline = 'Gender Analysis'; + $my_insight->text = "".number_format($gender_fav['female_likes_count']). + " women who liked ". $instance->network_username."'s post"; + $my_insight->emphasis = Insight::EMPHASIS_HIGH; + $my_insight->filename = $filename; + $this->insight_dao->insertInsight($my_insight); + $my_insight = null; + } + + +// foreach ($last_week_of_posts as $post) { +// $my_insight = new Insight(); +// $my_insight->instance_id = $instance->id; +// $my_insight->slug = 'insight_name_goes_here'.$post->id; +// $my_insight->date = date('Y-m-d', strtotime($post->pub_date)); +// $my_insight->headline = 'Snappy headline'; +// $my_insight->text = 'Body of the insight'; +// $my_insight->emphasis = Insight::EMPHASIS_MED; +// $my_insight->filename = $filename; + +// //OPTIONAL: Attach related data of various types using Insight setter functions +// //$my_insight->setPosts($my_insight_posts); +// //$my_insight->setLinks($my_insight_links); +// //$my_insight->setPeople($my_insight_people); +// //etc + +// $this->insight_dao->insertInsight($my_insight); +// $my_insight = null; +// } + $this->logger->logInfo("Done generating insight", __METHOD__.','.__LINE__); + echo "Gender done\n"; + } +} + +$insights_plugin_registrar = PluginRegistrarInsights::getInstance(); +$insights_plugin_registrar->registerInsightPlugin('GenderAnalysisInsight'); + diff --git a/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php new file mode 100644 index 0000000000..b9aaa3230b --- /dev/null +++ b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php @@ -0,0 +1,105 @@ +. + * + * + * GenderAnalysis (name of file) + * + * Description of what this class does + * + * Copyright (c) 2013 Anna Shkerina + * + * @author Anna Shkerina blond00792@gmail.com + * @license http://www.gnu.org/licenses/gpl.html + * @copyright 2013 Anna Shkerina + */ + +require_once dirname(__FILE__) . '/../../../../tests/init.tests.php'; +require_once THINKUP_WEBAPP_PATH.'_lib/extlib/simpletest/autorun.php'; +require_once THINKUP_WEBAPP_PATH.'_lib/extlib/simpletest/web_tester.php'; +require_once THINKUP_ROOT_PATH. 'webapp/plugins/insightsgenerator/model/class.InsightPluginParent.php'; +require_once THINKUP_ROOT_PATH. 'webapp/plugins/insightsgenerator/insights/genderanalysis.php'; + +class TestOfGenderAnalysisInsight extends ThinkUpUnitTestCase { + + public function setUp() { + parent::setUp(); + } + + public function tearDown() { + parent::tearDown(); + } + + public function testGenderAnalysisForFaceBook() { + //$this->debug(Utils::varDumpToString($result)); + echo "start\n"; +/* $posts = array(); + $posts[] = new Post(array( + 'post_id' => 5, + 'author_user_id' => 1, + 'favlike_count_cache' => 3, + 'post_text' => "post1", + 'pub_date' => "2014-06-06 10:38:20", + 'in_reply_to_post_id' => "NULL", + 'reply_count_cache' => 1, + 'favlike_count_cache' => 1 + )); + $posts[] = new Post(array( + 'post_id' => 6, + 'author_user_id' => 1, + 'favlike_count_cache' => 0, + 'post_text' => "comm", + 'pub_date' => "2014-06-06 10:38:20", + 'in_reply_to_post_id' => "5", + 'reply_count_cache' => 0, + 'favlike_count_cache' => 0 + )); + $fpost_dao = DAOFactory::getDAO('PostDAO'); */ + + $builders = self::buildData(); + $instance = new Instance(); + $instance->id = 10; + $instance->network_user_id = 7654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new GenderAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 3); + echo "end\n"; + $this->assertFalse(true,"sss"); + } + private function buildData() { + $builders = array(); + + $now = date('Y-m-d H:i:s'); + $yesterday = date('Y-m-d H:i:s', strtotime('yesterday')); + + $builders[] = FixtureBuilder::build('posts', array('id'=>133, 'post_id'=>133, 'author_user_id'=>7654321, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>1, 'is_protected'=>0,'favlike_count_cache' => 1)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>134, 'post_id'=>134, 'author_user_id'=>7654321, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple cooment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0,'in_reply_to_post_id' => 133)); + } + + +} + diff --git a/webapp/plugins/insightsgenerator/view/genderanalysis.tpl b/webapp/plugins/insightsgenerator/view/genderanalysis.tpl new file mode 100644 index 0000000000..434fc2d185 --- /dev/null +++ b/webapp/plugins/insightsgenerator/view/genderanalysis.tpl @@ -0,0 +1,23 @@ +{include file=$tpl_path|cat:'_header.tpl'} + +{if !$expand} +
+{/if} + + {$i->headline} + + +{$i->text|link_usernames_to_twitter} + +{if !$expand} +
+eee +{/if} + +
 
+ {if !$expand} +
+{/if} + +{include file=$tpl_path|cat:'_footer.tpl'} + diff --git a/webapp/res b/webapp/res new file mode 100644 index 0000000000..e69de29bb2 From f1351dc4366a58a4274ac2a59e9177b7d7d7e12b Mon Sep 17 00:00:00 2001 From: anna Date: Sun, 15 Jun 2014 12:32:11 +0300 Subject: [PATCH 07/40] finish gender analysis tpl and php --- logs/access.log | 2415 +++++++++++++++++ logs/error.log | 114 + .../_lib/dao/class.FavoritePostMySQLDAO.php | 60 - webapp/_lib/dao/class.PostMySQLDAO.php | 2 +- .../insights/genderanalysis.php | 116 +- .../insightsgenerator/view/genderanalysis.tpl | 46 +- 6 files changed, 2623 insertions(+), 130 deletions(-) create mode 100644 logs/access.log create mode 100644 logs/error.log diff --git a/logs/access.log b/logs/access.log new file mode 100644 index 0000000000..7c3a2894fb --- /dev/null +++ b/logs/access.log @@ -0,0 +1,2415 @@ +127.0.0.1 - - [09/Jun/2014:03:18:04 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:06 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:08 +0300] "POST /session/login.php HTTP/1.1" 302 550 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET / HTTP/1.1" 200 5196 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:18 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:18:18 +0300] "GET /crawler/run.php HTTP/1.1" 200 2754 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET / HTTP/1.1" 200 5200 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:28 +0300] "GET / HTTP/1.1" 200 2310 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:45:35 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:03 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:03 +0300] "GET / HTTP/1.1" 200 5197 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 186 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:19 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 2918 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:24 +0300] "GET / HTTP/1.1" 200 5198 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:29 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014 HTTP/1.1" 200 3785 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:34 +0300] "GET / HTTP/1.1" 200 5197 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:39 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 2917 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:42 +0300] "GET / HTTP/1.1" 200 5197 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:49 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014 HTTP/1.1" 200 3786 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:09:46:57 +0300] "GET / HTTP/1.1" 200 5198 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:05 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:19 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:33 +0300] "GET / HTTP/1.1" 200 5760 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET / HTTP/1.1" 200 5858 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:18 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 3368 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:22 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:53 +0300] "GET / HTTP/1.1" 200 5858 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:08:54 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:21 +0300] "GET / HTTP/1.1" 200 5706 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:11:23 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:12:39 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:24:50 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:06 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:08 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:25:35 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:27:14 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:11 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:30 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:28:32 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:30:18 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:31:43 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:03 +0300] "GET / HTTP/1.1" 200 5922 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:05 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET / HTTP/1.1" 200 5924 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:32 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:32 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:32 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:41:34 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET / HTTP/1.1" 200 5924 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:43:26 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014 HTTP/1.1" 200 3786 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:43:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:44:11 +0300] "GET / HTTP/1.1" 200 5924 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:44:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:44:15 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 3277 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:44:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:44:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 3273 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:45:22 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:46:11 +0300] "GET / HTTP/1.1" 200 5875 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:46:12 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:46:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:11 +0300] "GET / HTTP/1.1" 200 5147 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:31 +0300] "GET / HTTP/1.1" 200 5223 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:33 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET / HTTP/1.1" 200 5848 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET / HTTP/1.1" 200 5845 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:22 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:39 +0300] "GET / HTTP/1.1" 200 5875 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:35 +0300] "GET / HTTP/1.1" 200 5832 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:03:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:03:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:03:47 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:05:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:03:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2314 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:07:26 +0300] "GET / HTTP/1.1" 200 5838 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:07:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:07:27 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:08:26 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:08:27 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:08:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:08:27 +0300] "GET /crawler/run.php HTTP/1.1" 200 2753 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:11:53 +0300] "GET / HTTP/1.1" 200 5862 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:11:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:12:17 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:36 +0300] "GET / HTTP/1.1" 200 5866 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:02 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET / HTTP/1.1" 200 5865 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:14:48 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET / HTTP/1.1" 200 5866 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:24 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:15:24 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:17:01 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:17:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:17:02 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:18:49 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:17:02 +0300] "GET /crawler/run.php HTTP/1.1" 200 2744 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:20:31 +0300] "GET / HTTP/1.1" 200 5869 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:20:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:20:32 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:08 +0300] "GET / HTTP/1.1" 200 2355 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:08 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:10 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:26 +0300] "GET / HTTP/1.1" 200 5866 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:28 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET / HTTP/1.1" 200 5879 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:21:42 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:43 +0300] "GET / HTTP/1.1" 200 5865 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [09/Jun/2014:11:22:45 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:21 +0300] "GET / HTTP/1.1" 200 2310 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [10/Jun/2014:08:56:30 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:21 +0300] "GET / HTTP/1.1" 200 2310 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:33 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:49:33 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:50:04 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:50:04 +0300] "GET / HTTP/1.1" 200 5852 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:50:06 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:50:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:50:07 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:50:07 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 186 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:15:50:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:16:37:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:16:37:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:16:37:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2889 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:16:41:49 +0300] "GET / HTTP/1.1" 200 7157 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:16:41:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:44 +0300] "GET / HTTP/1.1" 200 7159 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:46 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:50 +0300] "GET /assets/img/favicon.png HTTP/1.1" 200 852 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:54 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670676809674210 HTTP/1.1" 200 3235 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670676809674210" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:59 +0300] "GET / HTTP/1.1" 200 7158 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670676809674210" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:00:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:28:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:28:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:28:19 +0300] "GET /crawler/run.php HTTP/1.1" 200 2173 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:30:44 +0300] "GET / HTTP/1.1" 200 7314 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:30:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:30:45 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:31:53 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:31:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:31:54 +0300] "GET /crawler/run.php HTTP/1.1" 200 2171 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:34:05 +0300] "GET / HTTP/1.1" 200 7305 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:34:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:34:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:34:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:36:50 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:36:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:36:51 +0300] "GET /crawler/run.php HTTP/1.1" 200 2173 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:13 +0300] "GET / HTTP/1.1" 200 7299 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:13 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:13 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:14 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /post/?t=&n= HTTP/1.1" 200 2419 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/css/base.css HTTP/1.1" 200 3771 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/css/style.css HTTP/1.1" 200 8079 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/css/jquery-ui-1.8.13.css HTTP/1.1" 200 6352 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/js/jquery.min-1.4.js HTTP/1.1" 200 24078 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/js/jquery-ui.min-1.8.js HTTP/1.1" 200 51762 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:29 +0300] "GET /assets/img/favicon_twitter.png HTTP/1.1" 200 897 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:29 +0300] "GET /assets/img/favicon_facebook.png HTTP/1.1" 200 517 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:29 +0300] "GET /assets/img/favicon_googleplus.png HTTP/1.1" 200 880 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:39:35 +0300] "GET / HTTP/1.1" 200 7300 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:45:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:45:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:45:48 +0300] "GET /crawler/run.php HTTP/1.1" 200 2691 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:48:42 +0300] "GET / HTTP/1.1" 200 7300 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:48:42 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:48:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:48:43 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:50:24 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:50:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:50:25 +0300] "GET /crawler/run.php HTTP/1.1" 200 2607 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:53:52 +0300] "GET / HTTP/1.1" 200 7299 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:53:53 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:53:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:53:57 +0300] "GET / HTTP/1.1" 200 7298 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:53:58 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:53:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:53:58 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:54:09 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:54:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:54:10 +0300] "GET /crawler/run.php HTTP/1.1" 200 2624 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:55:55 +0300] "GET / HTTP/1.1" 200 7299 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:55:56 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:55:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:55:56 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET / HTTP/1.1" 200 7169 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:39 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:56:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2214 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:12 +0300] "GET / HTTP/1.1" 200 7316 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:24 +0300] "GET /post/?t=670703379671553&n=facebook HTTP/1.1" 200 3493 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/img/close-icon.gif HTTP/1.1" 200 683 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/js/extlib/Snowball.stemmer.min.js HTTP/1.1" 200 17117 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/js/word_frequency.js HTTP/1.1" 200 5092 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/js/grid_search.js HTTP/1.1" 200 3074 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/img/ui-bg_glass_65_ffffff_1x400.png HTTP/1.1" 200 387 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/img/ui-icons_222222_256x240.png HTTP/1.1" 200 4127 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:17:59:30 +0300] "GET / HTTP/1.1" 200 7315 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:07:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:07:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:07:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:10:10 +0300] "GET / HTTP/1.1" 200 7437 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:10:11 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:10:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:10:11 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:10:36 +0300] "GET /post/?t=670703379671553&n=facebook HTTP/1.1" 200 3527 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:10:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:10:49 +0300] "GET / HTTP/1.1" 200 7437 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET / HTTP/1.1" 200 7498 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:18 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:41 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:26:42 +0300] "GET /crawler/run.php HTTP/1.1" 200 2096 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET / HTTP/1.1" 200 7498 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:32:29 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:32:30 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:32:30 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:34:59 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:35:00 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:35:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:35:00 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:35:23 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:35:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:37:05 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553 HTTP/1.1" 200 3480 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:37:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:37:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:37:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:37:15 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:39:37 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=reply_high_30_day_1039 HTTP/1.1" 200 3793 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:39:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=reply_high_30_day_1039" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:39:43 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:42:12 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET / HTTP/1.1" 200 7475 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:18:59:51 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:25 +0300] "GET / HTTP/1.1" 200 7479 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:01:27 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET / HTTP/1.1" 200 7508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:46 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:46 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:46 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:02:47 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:50 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:05:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:06:48 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:43 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:08:10 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:15 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:09:15 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:27 +0300] "GET / HTTP/1.1" 200 3019 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:10:29 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:18:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:18:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:18:47 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:18:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2165 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:21:01 +0300] "GET / HTTP/1.1" 200 7451 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:21:02 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:21:02 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:21:02 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:26:36 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:26:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:26:37 +0300] "GET /crawler/run.php HTTP/1.1" 200 2090 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:28:30 +0300] "GET / HTTP/1.1" 200 7455 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:28:31 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:28:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:28:31 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:29:18 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:29:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:29:19 +0300] "GET /crawler/run.php HTTP/1.1" 200 2098 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:31:23 +0300] "GET / HTTP/1.1" 200 7443 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:31:24 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:31:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:31:24 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:32:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:32:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:32:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:36:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:36:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:36:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2103 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16992 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3134 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3078 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10535 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:45:47 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:02 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:47:05 +0300] "GET /assets/img/favicon.png HTTP/1.1" 200 852 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:48:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:48:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:48:51 +0300] "GET /crawler/run.php HTTP/1.1" 200 2105 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:51:48 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:51:49 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 200 2153 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:51:49 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 200 7188 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:51:49 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 200 443 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:31 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:37 +0300] "GET /session/login.php HTTP/1.1" 200 2527 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 200 1732 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /assets/js/linkify.js HTTP/1.1" 200 1163 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 200 48712 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:41 +0300] "GET / HTTP/1.1" 200 2527 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:43 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17297 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 200 2159 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 200 3615 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 200 1052 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 200 2164 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 200 2223 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 200 2591 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 200 3027 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 200 1921 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 200 2063 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 200 2091 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /assets/img/loading.gif HTTP/1.1" 200 4825 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:52:45 +0300] "GET /assets/flash/clippy.swf HTTP/1.1" 200 5970 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:31 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:32 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17547 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:37 +0300] "GET /account/?p=facebook&code=AQA4J0SGW001LUfYAEsn-CWOxYSwVuPMq2mHlc-BTWWErMEIyuZ1I8bV1F_uywQL0pKEDP7M-Ny9m4DLnNdXVuHXuiOROWi1WCi5BYTrF3bdlWNnh9D3U6Gp9amRgsiTiCot873nWU0EP-HJLi7uFvySeEVb0AYUt0JcimR0nayPD06Q9KqKEbq1EXuMlgWg_-KNBPsY6mBP1hW5c8RBeY7BbOh3N9zAEKeYPEOl4iMWFAoPfgxURYsVkhpb9Md71CByHu7I3kZBBiWI5RWXyAPjybjYKVmXwrYN8b083LcPVEFDO6oA933HM5TejeFHpos&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18751 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQA4J0SGW001LUfYAEsn-CWOxYSwVuPMq2mHlc-BTWWErMEIyuZ1I8bV1F_uywQL0pKEDP7M-Ny9m4DLnNdXVuHXuiOROWi1WCi5BYTrF3bdlWNnh9D3U6Gp9amRgsiTiCot873nWU0EP-HJLi7uFvySeEVb0AYUt0JcimR0nayPD06Q9KqKEbq1EXuMlgWg_-KNBPsY6mBP1hW5c8RBeY7BbOh3N9zAEKeYPEOl4iMWFAoPfgxURYsVkhpb9Md71CByHu7I3kZBBiWI5RWXyAPjybjYKVmXwrYN8b083LcPVEFDO6oA933HM5TejeFHpos&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/account/?p=facebook&code=AQA4J0SGW001LUfYAEsn-CWOxYSwVuPMq2mHlc-BTWWErMEIyuZ1I8bV1F_uywQL0pKEDP7M-Ny9m4DLnNdXVuHXuiOROWi1WCi5BYTrF3bdlWNnh9D3U6Gp9amRgsiTiCot873nWU0EP-HJLi7uFvySeEVb0AYUt0JcimR0nayPD06Q9KqKEbq1EXuMlgWg_-KNBPsY6mBP1hW5c8RBeY7BbOh3N9zAEKeYPEOl4iMWFAoPfgxURYsVkhpb9Md71CByHu7I3kZBBiWI5RWXyAPjybjYKVmXwrYN8b083LcPVEFDO6oA933HM5TejeFHpos&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:19:53:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2320 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:05:35 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:05:35 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:05:38 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:05:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:05:39 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:10:41 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:10:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:14:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:14:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:14:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2098 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:16:11 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:16:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:00 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:50:16 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:50:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:50:32 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:50:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:50:33 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:01 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:02 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:05 +0300] "GET /account/?m=manage HTTP/1.1" 200 15241 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:09 +0300] "GET /account/appconfig.php HTTP/1.1" 200 3209 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:26 +0300] "POST /account/appconfig.php HTTP/1.1" 200 444 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:34 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:36 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:52:36 +0300] "GET /crawler/run.php HTTP/1.1" 200 2096 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:54:49 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:20:54:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:47:52 +0300] "GET / HTTP/1.1" 200 2759 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:47:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:47:59 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:48:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:48:01 +0300] "GET /crawler/run.php HTTP/1.1" 200 2094 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:51:36 +0300] "GET /account/?m=manage HTTP/1.1" 200 15242 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:51:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:51:40 +0300] "GET /account/?p=facebook HTTP/1.1" 200 18720 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:51:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:52:14 +0300] "GET /account/index.php?instance_id=1&p=facebook&viewer_id=653822888026269&owner_id=&facebook_page_id=115205405188758&plugin_options_facebook_app_id=224721057725693&plugin_options_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&plugin_options_max_crawl_time=20 HTTP/1.1" 200 18721 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:52:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/account/index.php?instance_id=1&p=facebook&viewer_id=653822888026269&owner_id=&facebook_page_id=115205405188758&plugin_options_facebook_app_id=224721057725693&plugin_options_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&plugin_options_max_crawl_time=20" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:52:30 +0300] "GET / HTTP/1.1" 200 2759 "http://thinkup.my/account/index.php?instance_id=1&p=facebook&viewer_id=653822888026269&owner_id=&facebook_page_id=115205405188758&plugin_options_facebook_app_id=224721057725693&plugin_options_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&plugin_options_max_crawl_time=20" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:52:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:52:33 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:52:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:52:33 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:57:16 +0300] "GET / HTTP/1.1" 200 2759 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:57:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:57:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:57:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:21:57:38 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:00:17 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:00:51 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:00:58 +0300] "GET /session/login.php HTTP/1.1" 200 2526 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:00:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:01:01 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17296 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:01:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:04 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:05 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17546 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:08 +0300] "GET /account/?p=facebook&code=AQCP_Vm2fBaOjQgxydMRq4Ul06oFTTP4MD8im1idlljwoFm25wYrWhxMUmcS0ZnYJsMSiRwfpADff80XJXqsbe4U9tpKiosmaOLOMJbL7MLy2BtrBpECaujgNxCZ_BVr2qjdmQjvktUK83kuhAQuEdvYs8egmcLeb0a2WSkYlo2T2wfZyejXm2mmYc1hZoqfHsy0ttRBPWl0EU15RpfThOSfYUTU_N5ifL6yDVxcrnnLWGRxgMeKVZ7mdiuvB8a_PJiOrSFJZQDcRn6oMmGuDJsLMcOg4Hugv_n1c7R2T5P3TD2OHAqiZ-CArt9NXJsC6ss&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18750 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQCP_Vm2fBaOjQgxydMRq4Ul06oFTTP4MD8im1idlljwoFm25wYrWhxMUmcS0ZnYJsMSiRwfpADff80XJXqsbe4U9tpKiosmaOLOMJbL7MLy2BtrBpECaujgNxCZ_BVr2qjdmQjvktUK83kuhAQuEdvYs8egmcLeb0a2WSkYlo2T2wfZyejXm2mmYc1hZoqfHsy0ttRBPWl0EU15RpfThOSfYUTU_N5ifL6yDVxcrnnLWGRxgMeKVZ7mdiuvB8a_PJiOrSFJZQDcRn6oMmGuDJsLMcOg4Hugv_n1c7R2T5P3TD2OHAqiZ-CArt9NXJsC6ss&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:16 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/account/?p=facebook&code=AQCP_Vm2fBaOjQgxydMRq4Ul06oFTTP4MD8im1idlljwoFm25wYrWhxMUmcS0ZnYJsMSiRwfpADff80XJXqsbe4U9tpKiosmaOLOMJbL7MLy2BtrBpECaujgNxCZ_BVr2qjdmQjvktUK83kuhAQuEdvYs8egmcLeb0a2WSkYlo2T2wfZyejXm2mmYc1hZoqfHsy0ttRBPWl0EU15RpfThOSfYUTU_N5ifL6yDVxcrnnLWGRxgMeKVZ7mdiuvB8a_PJiOrSFJZQDcRn6oMmGuDJsLMcOg4Hugv_n1c7R2T5P3TD2OHAqiZ-CArt9NXJsC6ss&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:02:16 +0300] "GET /crawler/run.php HTTP/1.1" 200 2336 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:18:22 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:18:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:18:28 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:18:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:18:28 +0300] "GET /crawler/run.php HTTP/1.1" 200 2102 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:19:39 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:19:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:19:42 +0300] "GET / HTTP/1.1" 200 2748 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:19:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:20:12 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:20:48 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:12 +0300] "GET /session/login.php HTTP/1.1" 200 2749 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:17 +0300] "GET /account/?m=manage HTTP/1.1" 200 15200 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:20 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17299 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:46 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=224721057725693&option_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:47 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17544 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 209 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:51 +0300] "GET /account/?p=facebook&code=AQB3Z7EcFBplk_v6RYp6uQPC9YftsmkY15bB_2TlqIwoNzX2vMUlTNpTPMUkyjZNShRgKIZqg02NAVGa8IECaH5RB8beTw_lsGUmkcaYVHqYNdHYLnkxOm4eyv5aVwiRfYDEv0pSBe7E3A1BtCYNYTHOXVmKMtqKIcIO-fyY0qwDdNA-fsgwNMMr-OM__XG34kgTVLPdBq6Z85NIOYFsdzFT2awgjfi7opxInImdBdq_Sdh9ldtkDLABHs4wlVg7fejsiDYdECXAj4YFmzzTvv9-zh3FfFkghWGcxqeHhLE-0wHptRxIc9bWAfsFz9PfIY0&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18262 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:21:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQB3Z7EcFBplk_v6RYp6uQPC9YftsmkY15bB_2TlqIwoNzX2vMUlTNpTPMUkyjZNShRgKIZqg02NAVGa8IECaH5RB8beTw_lsGUmkcaYVHqYNdHYLnkxOm4eyv5aVwiRfYDEv0pSBe7E3A1BtCYNYTHOXVmKMtqKIcIO-fyY0qwDdNA-fsgwNMMr-OM__XG34kgTVLPdBq6Z85NIOYFsdzFT2awgjfi7opxInImdBdq_Sdh9ldtkDLABHs4wlVg7fejsiDYdECXAj4YFmzzTvv9-zh3FfFkghWGcxqeHhLE-0wHptRxIc9bWAfsFz9PfIY0&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:04 +0300] "POST /account/?p=facebook HTTP/1.1" 200 17579 "http://thinkup.my/account/?p=facebook&code=AQB3Z7EcFBplk_v6RYp6uQPC9YftsmkY15bB_2TlqIwoNzX2vMUlTNpTPMUkyjZNShRgKIZqg02NAVGa8IECaH5RB8beTw_lsGUmkcaYVHqYNdHYLnkxOm4eyv5aVwiRfYDEv0pSBe7E3A1BtCYNYTHOXVmKMtqKIcIO-fyY0qwDdNA-fsgwNMMr-OM__XG34kgTVLPdBq6Z85NIOYFsdzFT2awgjfi7opxInImdBdq_Sdh9ldtkDLABHs4wlVg7fejsiDYdECXAj4YFmzzTvv9-zh3FfFkghWGcxqeHhLE-0wHptRxIc9bWAfsFz9PfIY0&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:20 +0300] "GET /account/?p=facebook&code=AQBpj0nrw3MQ_Blf4KwBcuZtU-uxA5fwJHtFaVxHEdoq3QiGZW0FU3Y5tOdFMNpzhBCb-cA4Z2GyH6s09lYQkyk62DqpUUZ5aumIa85gwV5YQVW9ZtBJeD9w3rceWvuT_8u3ZZnFUhmToxHARBL5v0PBNKL-e9l_yUZ1HCQMXu28iFR2QTyqipvjVDZtw1G0ni9dZDlb6AHOiAO6YSSca7tIWdeVEYu2uYMnWZlX7A-zAcuYbPW9EJILwy-sCQ0n2AokNoEMY07VKDUtdp9grT7WxVTdRMJhEZo1EMbodVSB96Wvi52aRWBE3T2FEsTUPf4&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18750 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQBpj0nrw3MQ_Blf4KwBcuZtU-uxA5fwJHtFaVxHEdoq3QiGZW0FU3Y5tOdFMNpzhBCb-cA4Z2GyH6s09lYQkyk62DqpUUZ5aumIa85gwV5YQVW9ZtBJeD9w3rceWvuT_8u3ZZnFUhmToxHARBL5v0PBNKL-e9l_yUZ1HCQMXu28iFR2QTyqipvjVDZtw1G0ni9dZDlb6AHOiAO6YSSca7tIWdeVEYu2uYMnWZlX7A-zAcuYbPW9EJILwy-sCQ0n2AokNoEMY07VKDUtdp9grT7WxVTdRMJhEZo1EMbodVSB96Wvi52aRWBE3T2FEsTUPf4&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:28 +0300] "GET / HTTP/1.1" 200 2748 "http://thinkup.my/account/?p=facebook&code=AQBpj0nrw3MQ_Blf4KwBcuZtU-uxA5fwJHtFaVxHEdoq3QiGZW0FU3Y5tOdFMNpzhBCb-cA4Z2GyH6s09lYQkyk62DqpUUZ5aumIa85gwV5YQVW9ZtBJeD9w3rceWvuT_8u3ZZnFUhmToxHARBL5v0PBNKL-e9l_yUZ1HCQMXu28iFR2QTyqipvjVDZtw1G0ni9dZDlb6AHOiAO6YSSca7tIWdeVEYu2uYMnWZlX7A-zAcuYbPW9EJILwy-sCQ0n2AokNoEMY07VKDUtdp9grT7WxVTdRMJhEZo1EMbodVSB96Wvi52aRWBE3T2FEsTUPf4&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:32 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:22:32 +0300] "GET /crawler/run.php HTTP/1.1" 200 2313 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:35:53 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:35:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:35:56 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:35:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:35:57 +0300] "GET /crawler/run.php HTTP/1.1" 200 2100 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:37:33 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:37:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:37:58 +0300] "GET / HTTP/1.1" 200 2750 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:37:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:04 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:07 +0300] "GET /dashboard.php HTTP/1.1" 200 3679 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/css/base.css HTTP/1.1" 200 3771 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/css/style.css HTTP/1.1" 200 8079 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/css/jquery-ui-1.8.13.css HTTP/1.1" 200 6351 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/js/jquery.min-1.4.js HTTP/1.1" 200 24078 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/js/jquery-ui.min-1.8.js HTTP/1.1" 200 51762 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 200 456 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/img/favicon_twitter.png HTTP/1.1" 200 897 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/img/favicon_facebook.png HTTP/1.1" 200 517 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/img/favicon_googleplus.png HTTP/1.1" 200 880 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:23 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:27 +0300] "GET /dashboard.php HTTP/1.1" 200 3679 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:43 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:46 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:42:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:43:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:43:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:55 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:43:48 +0300] "GET /crawler/run.php HTTP/1.1" 200 2095 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:46:23 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:46:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [14/Jun/2014:22:46:24 +0300] "GET /crawler/run.php HTTP/1.1" 200 2099 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:13:57 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:13:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:13:58 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:15:24 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:15:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:16:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:16:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:16:38 +0300] "GET /crawler/run.php HTTP/1.1" 200 2100 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:19:13 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:19:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:00 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:40 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:45 +0300] "GET /session/login.php HTTP/1.1" 200 2749 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:50 +0300] "GET /account/?m=manage HTTP/1.1" 200 15201 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:53 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17298 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:20:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:24 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:25 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17545 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:29 +0300] "GET /account/?p=facebook&code=AQBNJALb1VaDSJhDGL6FDzEoKK9XihelCj5NJPPQC8I6av912ZlfrPDjtuwC6CfsJWefMCpJVSX4REovI7AN3HAMNGIWwojiMGXuzsh2HXVhGRZYE0xoqAHGHWjD7xvJoS_thrK9xsMiEdb_RR3qHcLOvXbCAiJGuxIC112Gkr3dJKoybEoM67fKPsHWvGVsdvltBH-8mHPE-ispNr0UiwWRskzxZpaZshJYxpBGXCFf0gtPa0Mcs8dxjmFO9jALJUKu-9ubHjSaf9Sk27lsFXbiW0IOIve7qwJAi1oNDPNbTmw1RaIrhb9CQC47BEz4PzE&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18750 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQBNJALb1VaDSJhDGL6FDzEoKK9XihelCj5NJPPQC8I6av912ZlfrPDjtuwC6CfsJWefMCpJVSX4REovI7AN3HAMNGIWwojiMGXuzsh2HXVhGRZYE0xoqAHGHWjD7xvJoS_thrK9xsMiEdb_RR3qHcLOvXbCAiJGuxIC112Gkr3dJKoybEoM67fKPsHWvGVsdvltBH-8mHPE-ispNr0UiwWRskzxZpaZshJYxpBGXCFf0gtPa0Mcs8dxjmFO9jALJUKu-9ubHjSaf9Sk27lsFXbiW0IOIve7qwJAi1oNDPNbTmw1RaIrhb9CQC47BEz4PzE&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:37 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/account/?p=facebook&code=AQBNJALb1VaDSJhDGL6FDzEoKK9XihelCj5NJPPQC8I6av912ZlfrPDjtuwC6CfsJWefMCpJVSX4REovI7AN3HAMNGIWwojiMGXuzsh2HXVhGRZYE0xoqAHGHWjD7xvJoS_thrK9xsMiEdb_RR3qHcLOvXbCAiJGuxIC112Gkr3dJKoybEoM67fKPsHWvGVsdvltBH-8mHPE-ispNr0UiwWRskzxZpaZshJYxpBGXCFf0gtPa0Mcs8dxjmFO9jALJUKu-9ubHjSaf9Sk27lsFXbiW0IOIve7qwJAi1oNDPNbTmw1RaIrhb9CQC47BEz4PzE&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:40 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:21:41 +0300] "GET /crawler/run.php HTTP/1.1" 200 2317 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:35:40 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:35:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:35:43 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:35:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:35:43 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:36:47 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:36:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:36:52 +0300] "GET /dashboard.php HTTP/1.1" 200 3841 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:36:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:37:12 +0300] "GET /dashboard.php?v=posts&u=Ann+Shkerina&n=facebook HTTP/1.1" 200 4156 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:37:13 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:37:15 +0300] "GET /dashboard.php?v=friends&u=Ann+Shkerina&n=facebook HTTP/1.1" 200 3226 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:37:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php?v=friends&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:37:23 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/dashboard.php?v=friends&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:37:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:43:14 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:43:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:43:15 +0300] "GET /crawler/run.php HTTP/1.1" 200 2097 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:45:14 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:00:45:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:02:45 +0300] "GET /crawler/run.php HTTP/1.1" 200 2187 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:04:11 +0300] "GET / HTTP/1.1" 200 3291 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:04:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:04:36 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=biggest_fans_last_7_days HTTP/1.1" 200 3121 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:04:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=biggest_fans_last_7_days" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:04:39 +0300] "GET / HTTP/1.1" 200 3290 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:05:07 +0300] "GET / HTTP/1.1" 200 3291 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:05:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:10:24 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:10:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:10:25 +0300] "GET /crawler/run.php HTTP/1.1" 200 2105 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:13:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2160 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:15:45 +0300] "GET / HTTP/1.1" 200 3897 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:15:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:15:59 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:03 +0300] "GET / HTTP/1.1" 200 3896 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:16 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:19 +0300] "GET / HTTP/1.1" 200 3896 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:25 +0300] "GET / HTTP/1.1" 200 3897 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:32 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:16:32 +0300] "GET /crawler/run.php HTTP/1.1" 200 2160 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:19:57 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:19:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:04 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:06 +0300] "GET / HTTP/1.1" 200 3982 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:09 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2717 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:11 +0300] "GET / HTTP/1.1" 200 3982 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:21:16 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:21:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:21:17 +0300] "GET /crawler/run.php HTTP/1.1" 200 2159 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:23:03 +0300] "GET / HTTP/1.1" 200 3984 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:23:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:23:21 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:23:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:23:24 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:23:53 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:29 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:33 +0300] "GET /session/login.php HTTP/1.1" 200 3983 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:43 +0300] "GET /account/?m=manage HTTP/1.1" 200 15199 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:48 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17297 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:58 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17544 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:25:02 +0300] "GET /account/?p=facebook&code=AQDisYzMaVruuo3g8AOWMlzNmhpsN5XaPSSB4HEIssAPpTaQeTfHAEixqPS-8R_QATC7meNM4zCsT5KngUC2hectpkgReoyFxcFZhO_kEFmM9DHxj9aE_vHZvLZT_FpAgVq2z1Tw_60qxHvIezXnAM3PSkPofgPNFBkydAnQJ3gexeCW2i18LhCHdmxttqU52Z_ryprrNQSkzWXOLeCUGbFnhbIHddqIq0xgnTrrfT3mLmN4aQYaWvUJbNxmC2RzVyI-YBHSewSDCkLLU8L6Jf93cCjIRtk21UiTWvo7ZlgHa8WTu3IGA9v_Zp_DXiYZIEI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18749 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:25:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQDisYzMaVruuo3g8AOWMlzNmhpsN5XaPSSB4HEIssAPpTaQeTfHAEixqPS-8R_QATC7meNM4zCsT5KngUC2hectpkgReoyFxcFZhO_kEFmM9DHxj9aE_vHZvLZT_FpAgVq2z1Tw_60qxHvIezXnAM3PSkPofgPNFBkydAnQJ3gexeCW2i18LhCHdmxttqU52Z_ryprrNQSkzWXOLeCUGbFnhbIHddqIq0xgnTrrfT3mLmN4aQYaWvUJbNxmC2RzVyI-YBHSewSDCkLLU8L6Jf93cCjIRtk21UiTWvo7ZlgHa8WTu3IGA9v_Zp_DXiYZIEI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:25:10 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/account/?p=facebook&code=AQDisYzMaVruuo3g8AOWMlzNmhpsN5XaPSSB4HEIssAPpTaQeTfHAEixqPS-8R_QATC7meNM4zCsT5KngUC2hectpkgReoyFxcFZhO_kEFmM9DHxj9aE_vHZvLZT_FpAgVq2z1Tw_60qxHvIezXnAM3PSkPofgPNFBkydAnQJ3gexeCW2i18LhCHdmxttqU52Z_ryprrNQSkzWXOLeCUGbFnhbIHddqIq0xgnTrrfT3mLmN4aQYaWvUJbNxmC2RzVyI-YBHSewSDCkLLU8L6Jf93cCjIRtk21UiTWvo7ZlgHa8WTu3IGA9v_Zp_DXiYZIEI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:25:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:25:13 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:25:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16993 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3135 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3077 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10534 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:25:14 +0300] "GET /crawler/run.php HTTP/1.1" 200 2262 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET / HTTP/1.1" 200 3286 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 200 48712 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 200 1732 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 200 457 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /assets/js/linkify.js HTTP/1.1" 200 1163 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:36:06 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:39:18 +0300] "GET / HTTP/1.1" 200 3286 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:39:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:39:26 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:39:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:39:26 +0300] "GET /crawler/run.php HTTP/1.1" 200 2161 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:40:33 +0300] "GET / HTTP/1.1" 200 3287 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:40:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:42:43 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:42:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:42:44 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:44:32 +0300] "GET / HTTP/1.1" 200 3895 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:44:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:46:08 +0300] "GET / HTTP/1.1" 200 3895 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:46:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:46:11 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:46:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:46:12 +0300] "GET /crawler/run.php HTTP/1.1" 200 2097 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:47:28 +0300] "GET / HTTP/1.1" 200 3901 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:47:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:59:01 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:59:02 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:59:07 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:59:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:59:11 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 3477 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:01:59:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:05:13 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:05:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:05:14 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:14:24 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:14:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:14:28 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 3477 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:14:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:14:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:14:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:14:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:18:08 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:18:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:18:21 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 3478 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:18:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:18:23 +0300] "GET / HTTP/1.1" 200 3899 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:18:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:19:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:19:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:19:05 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:20:53 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:20:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:20:54 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:21:59 +0300] "GET / HTTP/1.1" 200 3899 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:22:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:22:47 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:22:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:23:38 +0300] "GET /assets/img/favicon.png HTTP/1.1" 200 852 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:30:20 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:30:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:30:21 +0300] "GET /crawler/run.php HTTP/1.1" 200 2117 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:32:39 +0300] "GET / HTTP/1.1" 200 4003 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:32:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:32:55 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495 HTTP/1.1" 200 3473 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:32:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:33:25 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:33:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:33:26 +0300] "GET /crawler/run.php HTTP/1.1" 200 2170 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:39:20 +0300] "GET / HTTP/1.1" 200 4001 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:39:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:39:48 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:44 +0300] "GET / HTTP/1.1" 200 2955 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:42:46 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET / HTTP/1.1" 200 4001 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:06 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:41 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:39 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:41 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:47 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:21 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:22 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:27 +0300] "GET / HTTP/1.1" 200 3997 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:30 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:30 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:30 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:37 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:40 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:40 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:41 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:43 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:44 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:46:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2209 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:48 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:47:49 +0300] "GET /crawler/run.php HTTP/1.1" 200 2209 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:50:36 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:50:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:50:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:50:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:51:16 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:51:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:51:37 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:51:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:50:48 +0300] "GET /crawler/run.php HTTP/1.1" 200 2228 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:54:57 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:54:57 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:54:58 +0300] "GET /crawler/run.php HTTP/1.1" 200 2090 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:57:39 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:57:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:57:40 +0300] "GET /crawler/run.php HTTP/1.1" 200 2107 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:59:53 +0300] "GET / HTTP/1.1" 200 3999 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:02:59:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:00:01 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495 HTTP/1.1" 200 3473 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:00:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:00:06 +0300] "GET / HTTP/1.1" 200 3999 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:05:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:05:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:05:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2232 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:08 +0300] "GET / HTTP/1.1" 200 4100 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /dashboard.php HTTP/1.1" 200 3848 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/css/base.css HTTP/1.1" 200 3771 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/css/jquery-ui-1.8.13.css HTTP/1.1" 200 6352 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/css/style.css HTTP/1.1" 200 8080 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/js/jquery.min-1.4.js HTTP/1.1" 200 24078 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/img/favicon_twitter.png HTTP/1.1" 200 898 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:29 +0300] "GET /assets/img/favicon_facebook.png HTTP/1.1" 200 517 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:29 +0300] "GET /assets/img/favicon_googleplus.png HTTP/1.1" 200 880 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/js/jquery-ui.min-1.8.js HTTP/1.1" 200 51763 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:13:18 +0300] "GET /dashboard.php?v=posts&u=Ann+Shkerina&n=facebook HTTP/1.1" 200 4014 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:13:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:13:22 +0300] "GET / HTTP/1.1" 200 4099 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:13:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:03:13:23 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:15:42 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:15:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:15:43 +0300] "GET /crawler/run.php HTTP/1.1" 200 2108 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:20:28 +0300] "GET / HTTP/1.1" 200 4103 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:20:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:20:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:20:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:20:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:27:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:27:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:27:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2086 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:27:56 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:27:57 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:27:57 +0300] "GET /crawler/run.php HTTP/1.1" 200 2091 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:29:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:29:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:29:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2103 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:32:06 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:32:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:32:07 +0300] "GET /crawler/run.php HTTP/1.1" 200 2278 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:35:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:35:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:35:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:36:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:36:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:36:37 +0300] "GET /crawler/run.php HTTP/1.1" 200 2097 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:38:00 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:38:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:38:01 +0300] "GET /crawler/run.php HTTP/1.1" 200 2087 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:39:41 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:39:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:39:42 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:41:00 +0300] "GET /crawler/run.php HTTP/1.1" 200 2153 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /crawler/run.php HTTP/1.1" 200 2169 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:46:49 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:46:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:47:23 +0300] "GET / HTTP/1.1" 200 4104 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:47:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:46:50 +0300] "GET /crawler/run.php HTTP/1.1" 200 2685 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:48:27 +0300] "GET /crawler/run.php HTTP/1.1" 200 2176 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /crawler/run.php HTTP/1.1" 200 2093 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:51:02 +0300] "GET /crawler/run.php HTTP/1.1" 200 2037 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:52:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2179 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:56:10 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:56:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:56:11 +0300] "GET /crawler/run.php HTTP/1.1" 200 2163 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:57:46 +0300] "GET / HTTP/1.1" 200 4205 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:57:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:58:15 +0300] "GET / HTTP/1.1" 200 4205 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:58:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:59:31 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:59:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:09:59:31 +0300] "GET /crawler/run.php HTTP/1.1" 200 2179 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:02:02 +0300] "GET / HTTP/1.1" 200 4266 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:02:03 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 200 2153 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 200 7189 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 200 444 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:02 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:08 +0300] "GET /session/login.php HTTP/1.1" 200 4265 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET / HTTP/1.1" 200 2368 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16992 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3135 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10535 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3077 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:39 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:42 +0300] "POST /session/login.php HTTP/1.1" 200 2422 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:04:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:00 +0300] "POST /session/login.php HTTP/1.1" 200 2423 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:00 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:00 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "POST /session/login.php HTTP/1.1" 200 2423 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:26 +0300] "GET /?u=Ann+Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670947589647132 HTTP/1.1" 200 2474 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann+Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670947589647132" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:39 +0300] "GET /session/forgot.php HTTP/1.1" 200 431 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:39 +0300] "GET /favicon.ico HTTP/1.1" 404 499 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:47 +0300] "GET /session/forgot.php HTTP/1.1" 200 431 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:48 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:48 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:48 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:49 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:06:55 +0300] "GET /session/logout.php HTTP/1.1" 200 2310 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:07:03 +0300] "POST /session/login.php HTTP/1.1" 200 2423 "http://thinkup.my/session/logout.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:07:05 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:07:21 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:08:44 +0300] "GET /install/ HTTP/1.1" 200 1839 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:09:33 +0300] "GET / HTTP/1.1" 200 1778 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:09:35 +0300] "GET /install/ HTTP/1.1" 200 10042 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:10:08 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:10:12 +0300] "GET /session/login.php HTTP/1.1" 200 2600 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:10:15 +0300] "POST /session/login.php HTTP/1.1" 200 2709 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:10:17 +0300] "GET /session/forgot.php HTTP/1.1" 200 761 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:12:47 +0300] "GET /session/forgot.php HTTP/1.1" 200 431 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:12:50 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:13:04 +0300] "GET /session/login.php HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:13:07 +0300] "POST /session/login.php HTTP/1.1" 200 2422 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:13:09 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:13:22 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:00 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:04 +0300] "GET /session/forgot.php HTTP/1.1" 200 840 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:27 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:49 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:14:51 +0300] "GET / HTTP/1.1" 200 2309 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:44 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:44 +0300] "GET / HTTP/1.1" 200 2526 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:51 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17311 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 200 3616 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 200 2159 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 200 1053 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 200 2592 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 200 2165 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 200 2223 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 200 3027 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 200 1921 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 200 2063 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /assets/img/loading.gif HTTP/1.1" 200 4825 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 200 2091 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:17:54 +0300] "GET /assets/flash/clippy.swf HTTP/1.1" 200 5970 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:03 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=220739824539d48988da902.06058246 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:04 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17559 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:07 +0300] "GET /account/?p=facebook&code=AQC-VtgKhxJ-wzsSmcTaK7sSVpNYIXbkF7UijdIwzycHA7d_WqwehEagng4_H6-GJ3mgNob-xOkD6ddi0CM6A1d369PnVvLtkbOF5ct6DXX97Zb1xdAo3COgl2UraoyY73NZdxrjbEUJxYl1kjz9hNVUI6X7QaZ0zPE6ZWyYNhHdknSXc32hOllCGxIR63_pQJX1BJtvY7YBsZt68NnRMvyyD03G5IOShEwRVe9iBU_X9iLXQfmEf2mfJH1uorB3rQb2NkAShF_bn6J3aBrjMdtkwdQwmkOQ599dzA_BoyNudfxdfmMBea2PxTM3R95eLJI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18766 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQC-VtgKhxJ-wzsSmcTaK7sSVpNYIXbkF7UijdIwzycHA7d_WqwehEagng4_H6-GJ3mgNob-xOkD6ddi0CM6A1d369PnVvLtkbOF5ct6DXX97Zb1xdAo3COgl2UraoyY73NZdxrjbEUJxYl1kjz9hNVUI6X7QaZ0zPE6ZWyYNhHdknSXc32hOllCGxIR63_pQJX1BJtvY7YBsZt68NnRMvyyD03G5IOShEwRVe9iBU_X9iLXQfmEf2mfJH1uorB3rQb2NkAShF_bn6J3aBrjMdtkwdQwmkOQ599dzA_BoyNudfxdfmMBea2PxTM3R95eLJI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:14 +0300] "GET / HTTP/1.1" 200 2526 "http://thinkup.my/account/?p=facebook&code=AQC-VtgKhxJ-wzsSmcTaK7sSVpNYIXbkF7UijdIwzycHA7d_WqwehEagng4_H6-GJ3mgNob-xOkD6ddi0CM6A1d369PnVvLtkbOF5ct6DXX97Zb1xdAo3COgl2UraoyY73NZdxrjbEUJxYl1kjz9hNVUI6X7QaZ0zPE6ZWyYNhHdknSXc32hOllCGxIR63_pQJX1BJtvY7YBsZt68NnRMvyyD03G5IOShEwRVe9iBU_X9iLXQfmEf2mfJH1uorB3rQb2NkAShF_bn6J3aBrjMdtkwdQwmkOQ599dzA_BoyNudfxdfmMBea2PxTM3R95eLJI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:17 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:18:17 +0300] "GET /crawler/run.php HTTP/1.1" 200 3465 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:25:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:28:34 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:28:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:28:34 +0300] "GET /crawler/run.php HTTP/1.1" 200 2345 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:29:39 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:29:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:30:17 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:30:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:30:17 +0300] "GET /crawler/run.php HTTP/1.1" 200 2229 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:32:07 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:32:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:32:14 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:32:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:33:00 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:33:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:33:57 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:33:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:33:58 +0300] "GET /crawler/run.php HTTP/1.1" 200 2223 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:35:25 +0300] "GET / HTTP/1.1" 200 4451 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:35:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:36:25 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236 HTTP/1.1" 200 3489 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:36:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:36:28 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:37:35 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:37:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:37:36 +0300] "GET /crawler/run.php HTTP/1.1" 200 2231 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:39:52 +0300] "GET / HTTP/1.1" 200 2356 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:39:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET / HTTP/1.1" 200 4453 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:41:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:41:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:41:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2230 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:43:37 +0300] "GET / HTTP/1.1" 200 4443 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:43:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:43:58 +0300] "GET / HTTP/1.1" 200 4443 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:43:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:02 +0300] "GET / HTTP/1.1" 200 4456 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:02 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 186 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:51:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2231 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:52:38 +0300] "GET / HTTP/1.1" 200 4440 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:52:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET / HTTP/1.1" 200 4532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:53:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2231 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:54:39 +0300] "GET / HTTP/1.1" 200 4543 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:54:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:09 +0300] "GET / HTTP/1.1" 200 2357 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:21 +0300] "GET / HTTP/1.1" 200 2355 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:21 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:17 +0300] "GET / HTTP/1.1" 200 4466 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:17 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:25 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236 HTTP/1.1" 200 3485 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:31 +0300] "GET / HTTP/1.1" 200 4465 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET / HTTP/1.1" 200 4475 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET / HTTP/1.1" 200 4471 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET / HTTP/1.1" 200 4527 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:08 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET / HTTP/1.1" 200 4541 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET / HTTP/1.1" 200 4538 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET / HTTP/1.1" 200 4515 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET / HTTP/1.1" 200 4509 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET / HTTP/1.1" 200 4506 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:02:50 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET / HTTP/1.1" 200 4494 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:03:53 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:14 +0300] "GET / HTTP/1.1" 200 4495 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET / HTTP/1.1" 200 4496 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET / HTTP/1.1" 200 4485 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:17 +0300] "GET / HTTP/1.1" 200 4514 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET / HTTP/1.1" 200 4489 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:21 +0300] "GET / HTTP/1.1" 200 4470 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:10:14 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:10:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:10:15 +0300] "GET /crawler/run.php HTTP/1.1" 200 2160 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:12:06 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:12:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:12:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2158 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:14:39 +0300] "GET / HTTP/1.1" 200 4472 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:14:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:18:07 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19" +127.0.0.1 - - [15/Jun/2014:11:18:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19" +127.0.0.1 - - [15/Jun/2014:11:19:34 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:26:29 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:26:30 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:26:30 +0300] "GET /crawler/run.php HTTP/1.1" 200 2169 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:18 +0300] "GET / HTTP/1.1" 200 4555 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /post/?t=671069882968236&n=facebook HTTP/1.1" 200 3812 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/js/extlib/Snowball.stemmer.min.js HTTP/1.1" 200 17118 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/js/word_frequency.js HTTP/1.1" 200 5092 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/js/grid_search.js HTTP/1.1" 200 3073 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/img/close-icon.gif HTTP/1.1" 200 682 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:38 +0300] "GET /assets/img/ui-bg_glass_65_ffffff_1x400.png HTTP/1.1" 200 387 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:38 +0300] "GET /assets/img/ui-icons_222222_256x240.png HTTP/1.1" 200 4127 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:27:44 +0300] "GET / HTTP/1.1" 200 4556 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:32:34 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:32:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:32:35 +0300] "GET /crawler/run.php HTTP/1.1" 200 2174 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:33:28 +0300] "GET / HTTP/1.1" 200 4652 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:33:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:34:55 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:34:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:34:56 +0300] "GET /crawler/run.php HTTP/1.1" 200 2168 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:35:59 +0300] "GET / HTTP/1.1" 200 4741 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:36:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:05 +0300] "GET / HTTP/1.1" 200 4741 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET / HTTP/1.1" 200 2368 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16992 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3135 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10535 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3077 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:39 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:43 +0300] "POST /session/login.php HTTP/1.1" 302 550 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:43 +0300] "GET / HTTP/1.1" 200 4740 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 200 1732 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /assets/js/linkify.js HTTP/1.1" 200 1163 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 200 457 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 200 48712 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:38:51 +0300] "GET /crawler/run.php HTTP/1.1" 200 2166 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:40:30 +0300] "GET / HTTP/1.1" 200 4383 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:40:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:40:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:40:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:40:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2166 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:41:38 +0300] "GET / HTTP/1.1" 200 4382 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:41:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:04 +0300] "GET / HTTP/1.1" 200 4401 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:00 +0300] "GET / HTTP/1.1" 200 4400 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET / HTTP/1.1" 200 4399 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:52:15 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:55:27 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:55:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:55:28 +0300] "GET /crawler/run.php HTTP/1.1" 200 2170 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:57:03 +0300] "GET / HTTP/1.1" 200 4405 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:57:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:57:11 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:57:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:57:11 +0300] "GET /crawler/run.php HTTP/1.1" 200 2158 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:58:20 +0300] "GET / HTTP/1.1" 200 4408 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:58:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:59:31 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:59:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:11:59:31 +0300] "GET /crawler/run.php HTTP/1.1" 200 2173 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:01:01 +0300] "GET / HTTP/1.1" 200 4415 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:01:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:05:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:05:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:05:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2158 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:05:52 +0300] "GET / HTTP/1.1" 200 4410 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:05:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:07:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:07:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:07:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2166 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:11:16 +0300] "GET /account/?m=manage HTTP/1.1" 200 15257 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:11:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:11:21 +0300] "GET /account/?p=insightsgenerator HTTP/1.1" 200 17474 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:11:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=insightsgenerator" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:14:20 +0300] "GET / HTTP/1.1" 200 4394 "http://thinkup.my/account/?p=insightsgenerator" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:14:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:14:23 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:14:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:14:23 +0300] "GET /crawler/run.php HTTP/1.1" 200 2170 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:16:25 +0300] "GET / HTTP/1.1" 200 4394 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:16:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:21:49 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET / HTTP/1.1" 200 4402 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:26 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:28:26 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:47 +0300] "GET / HTTP/1.1" 200 4400 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" diff --git a/logs/error.log b/logs/error.log new file mode 100644 index 0000000000..a1737d15c2 --- /dev/null +++ b/logs/error.log @@ -0,0 +1,114 @@ +[Mon Jun 09 10:08:22 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 +[Mon Jun 09 10:08:54 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:11:23 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:12:39 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:24:50 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:25:08 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:25:35 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:27:14 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:28:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:28:32 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:30:18 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:31:43 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:41:05 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:41:34 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:42:59 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:44:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 +[Mon Jun 09 10:45:22 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 +[Mon Jun 09 10:46:12 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:47:12 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:47:33 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:47:59 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:48:22 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:48:40 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 10:50:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:03:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php +[Mon Jun 09 11:05:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php +[Mon Jun 09 11:07:27 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:08:27 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php +[Mon Jun 09 11:12:17 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:13:37 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:14:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:14:32 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:14:48 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:15:24 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:17:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php +[Mon Jun 09 11:18:49 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php +[Mon Jun 09 11:20:32 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:21:10 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:21:28 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:21:42 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 09 11:22:45 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sat Jun 14 17:30:45 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:34:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:34:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:39:13 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:39:14 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:48:42 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:48:43 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:53:53 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:53:58 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:53:58 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:55:56 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 17:55:56 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:10:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:10:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:26:17 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:26:17 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:26:18 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:31:04 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:31:04 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:35:00 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:35:00 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:37:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553 +[Sat Jun 14 18:37:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553 +[Sat Jun 14 18:42:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:42:12 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:59:50 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:59:50 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 18:59:51 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:01:26 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:01:27 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:02:46 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:02:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:06:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:06:48 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:07:57 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:07:57 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:08:10 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sat Jun 14 19:09:14 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:09:15 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sat Jun 14 19:09:15 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:10:29 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sat Jun 14 19:18:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php +[Sat Jun 14 19:21:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:21:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:28:31 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:28:31 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:31:24 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:31:24 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ +[Sat Jun 14 19:53:37 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Sat Jun 14 22:02:08 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Sat Jun 14 22:21:51 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Sat Jun 14 22:22:20 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Sun Jun 15 00:21:29 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Sun Jun 15 01:25:02 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Sun Jun 15 02:39:48 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 02:42:46 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 02:43:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 02:43:42 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 02:44:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 02:46:41 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 02:46:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php +[Sun Jun 15 03:13:23 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 10:06:39 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/favicon.ico +[Sun Jun 15 10:10:13 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '/var/www/ThinkU...')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/install/index.php?step=3 +[Sun Jun 15 10:10:15 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '/var/www/ThinkU...')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/session/login.php +[Sun Jun 15 10:10:17 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/session/login.php +[Sun Jun 15 10:14:04 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! ThinkUp could not execute the following query: REPLACE INTO tu_sessions (session_id, data, updated) VALUES (:session_id, :data, NOW()) Details: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'thinkup.tu_sessions' doesn't exist' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/ +[Sun Jun 15 10:18:07 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Sun Jun 15 11:18:07 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 11:18:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 11:19:34 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 12:21:49 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Sun Jun 15 12:28:26 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ diff --git a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php index b8206da83c..5f0543dd97 100755 --- a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php +++ b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php @@ -467,64 +467,4 @@ public function getGenderOfCommenters($post_id) { } return $gender; } - - // public function getFavoritedToday($author_user_id, $network) { - // echo "getFavoritedToday"; - // $q = "SELECT * FROM #prefix#posts "; - // $q .= "WHERE author_user_id = :author_user_id AND network = :network "; - // $q .= "AND DATE(pub_date - interval #gmt_offset# hour) = CURRENT_DATE() "; - // $q .= "AND reply_count_cache + favlike_count_cache = "; - // $q .= "(SELECT MAX(reply_count_cache + favlike_count_cache) FROM #prefix#posts "; - // $q .= "WHERE author_user_id = :author_user_id AND network = :network "; - // $q .= "AND DATE(pub_date - interval #gmt_offset# hour) = CURRENT_DATE()) "; - - // $vars = array( - // ':author_user_id'=> $author_user_id, - // ':network'=>$network - // ); - // if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - // $ps = $this->execute($q, $vars); - // $rows = $this->getDataRowsAsArrays($ps); - // $posts = array(); - // foreach ($rows as $row) { - // Post $post = new Post($row); - // $q = "SELECT #prefix#users.gender, COUNT(*) as count_gender FROM #prefix#favorites, #prefix#users "; - // $q .= "WHERE #prefix#favorites.post_id = ".$post->post_id." "; - // $q.= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; - // $q .= "GROUP BY #prefix#users.gender"; - - // if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - // $ps_likes = $this->execute($q); - // $rows_likes = $this->getDataRowsAsArrays($ps_likes); - - // foreach ($rows_likes as $row_likes) { - // if ($row_likes['gender'] == "female") - // $post->female_likes_count = $row_likes['count_gender']; - // if ($row_likes['gender'] == "male") - // $post->male_likes_count = $row_likes['count_gender']; - // } - - // $q = "SELECT #prefix#users.gender, COUNT(*) as count_gender FROM #prefix#posts, #prefix#users "; - // $q .= "WHERE #prefix#posts.in_reply_to_post_id = ".$post->post_id." "; - // $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; - // $q .= "GROUP BY #prefix#users.gender"; - - // if ($this->profiler_enabled) { Profiler::setDAOMethod(__METHOD__); } - - // $ps_comm = $this->execute($q); - // $rows_comm = $this->getDataRowsAsArrays($ps_comm); - - // foreach ($rows_comm as $row_comm) { - // if ($row_comm['gender'] == "female") - // $post->female_comm_count = $row_comm['count_gender']; - // if ($row_comm['gender'] == "male") - // $post->male_comm_count = $row_comm['count_gender']; - // } - // $posts[] = $post; - // } - - // return $posts; - // } } diff --git a/webapp/_lib/dao/class.PostMySQLDAO.php b/webapp/_lib/dao/class.PostMySQLDAO.php index c2e5d32471..ccee18ad04 100644 --- a/webapp/_lib/dao/class.PostMySQLDAO.php +++ b/webapp/_lib/dao/class.PostMySQLDAO.php @@ -2846,7 +2846,7 @@ public function searchPostsByHashtag($keywords, Hashtag $hashtag, $network, $pag } public function getMostFavCommentPostsByUserId($author_id, $network) { - $q = "SELECT * FROM #prefix#posts "; + $q = "SELECT *, pub_date + interval #gmt_offset# hour AS adj_pub_date FROM #prefix#posts "; $q .= "WHERE author_user_id = :author_user_id AND network = :network "; $q .= "AND DATE(pub_date + interval #gmt_offset# hour) = CURRENT_DATE() "; $q .= "AND reply_count_cache + favlike_count_cache = "; diff --git a/webapp/plugins/insightsgenerator/insights/genderanalysis.php b/webapp/plugins/insightsgenerator/insights/genderanalysis.php index cea4784165..a1eff67636 100644 --- a/webapp/plugins/insightsgenerator/insights/genderanalysis.php +++ b/webapp/plugins/insightsgenerator/insights/genderanalysis.php @@ -1,9 +1,10 @@ . * * @@ -33,68 +34,57 @@ * @license http://www.gnu.org/licenses/gpl.html * @copyright 2014 Anna Shkerina */ - class GenderAnalysisInsight extends InsightPluginParent implements InsightPlugin { + public function generateInsight(Instance $instance, $last_week_of_posts, $number_days) { + parent::generateInsight ( $instance, $last_week_of_posts, $number_days ); + $this->logger->logInfo ( "Begin generating insight", __METHOD__ . ',' . __LINE__ ); + + $insight_baseline_dao = DAOFactory::getDAO ( 'InsightBaselineDAO' ); + $filename = basename ( __FILE__, ".php" ); + + $post_dao = DAOFactory::getDAO ( 'PostDAO' ); + $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); + $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); + foreach ( $posts as $post ) { + $gender_fav = $fpost_dao->getGenderOfFavoriters ( $post->post_id ); + $gender_comm = $fpost_dao->getGenderOfCommenters ( $post->post_id ); - public function generateInsight(Instance $instance, $last_week_of_posts, $number_days) { - parent::generateInsight($instance, $last_week_of_posts, $number_days); - $this->logger->logInfo("Begin generating insight", __METHOD__.','.__LINE__); - - $filename = basename(__FILE__, ".php"); - - $post_dao = DAOFactory::getDAO('PostDAO'); - echo "post"; - $fpost_dao = DAOFactory::getDAO('FavoritePostDAO'); - echo "fav"; - $posts = $post_dao->getMostFavCommentPostsByUserId($instance->network_user_id, $instance->network); - echo "posts=" . Utils::varDumpToString($posts) . "
"; - echo "for_before"; - foreach ($posts as $post) { - $gender_fav = $fpost_dao->getGenderOfFavoriters($post->post_id); - $gender_comm = $fpost_dao->getGenderOfCommenters($post->post_id); - echo "post_id=".$post->post_id."
"; - echo "f_f=".$gender_fav['female_likes_count']."
"; - echo "m_f=".$gender_fav['male_likes_count']."
"; - echo "f_c=".$gender_comm['female_comm_count']."
"; - echo "m_c=".$gender_comm['male_comm_count']."
"; - $my_insight = new Insight(); - $my_insight->instance_id = $instance->id; - $my_insight->slug = 'insight_name_goes_here'.$post->post_id; - $my_insight->date = date('Y-m-d', strtotime($post->pub_date)); - $my_insight->headline = 'Gender Analysis'; - $my_insight->text = "".number_format($gender_fav['female_likes_count']). - " women who liked ". $instance->network_username."'s post"; - $my_insight->emphasis = Insight::EMPHASIS_HIGH; - $my_insight->filename = $filename; - $this->insight_dao->insertInsight($my_insight); - $my_insight = null; - } - - -// foreach ($last_week_of_posts as $post) { -// $my_insight = new Insight(); -// $my_insight->instance_id = $instance->id; -// $my_insight->slug = 'insight_name_goes_here'.$post->id; -// $my_insight->date = date('Y-m-d', strtotime($post->pub_date)); -// $my_insight->headline = 'Snappy headline'; -// $my_insight->text = 'Body of the insight'; -// $my_insight->emphasis = Insight::EMPHASIS_MED; -// $my_insight->filename = $filename; - -// //OPTIONAL: Attach related data of various types using Insight setter functions -// //$my_insight->setPosts($my_insight_posts); -// //$my_insight->setLinks($my_insight_links); -// //$my_insight->setPeople($my_insight_people); -// //etc + $female = $gender_fav ['female_likes_count'] + $gender_comm ['female_comm_count']; + $male = $gender_fav ['male_likes_count'] + $gender_comm ['male_comm_count']; -// $this->insight_dao->insertInsight($my_insight); -// $my_insight = null; -// } - $this->logger->logInfo("Done generating insight", __METHOD__.','.__LINE__); - echo "Gender done\n"; - } + $gender_data = array ( + 'gender' => 'value', + 'female' => $female, + 'male' => $male + ); + $simplified_post_date = date('Y-m-d', strtotime($post->pub_date)); + echo "time= ".$simplified_post_date; + + if ($female > $male) { + $this->insight_dao->insertInsightDeprecated ( 'gender_analysis' . $post->post_id, $instance->id, + $simplified_post_date, "Women favorite!", "" . number_format ( $female ) . + " times women interested in ". $instance->network_username . "'s post", $filename, + Insight::EMPHASIS_HIGH, serialize ( array ($post, $gender_data) ) ); + } elseif ($male > $female) { + $this->insight_dao->insertInsightDeprecated ( 'Gender Analysis' . $post->post_id, $instance->id, + $simplified_post_date, "Men favorite!", "" . number_format ( $male ) . + " times men interested in " . $instance->network_username . "'s post", $filename, + Insight::EMPHASIS_HIGH, serialize ( array ($post, $gender_data) ) ); + } else { + $this->insight_dao->insertInsightDeprecated ( 'Gender Analysis' . $post->post_id, $instance->id, + $simplified_post_date, "Loved by all!", "" . number_format ( $female+$male). + " times women and men interested in " + . $instance->network_username . "'s post", $filename, + Insight::EMPHASIS_HIGH, serialize (array ($post, $gender_data) ) ); + } + } + + $this->logger->logInfo ( "Done generating insight", __METHOD__ . ',' . __LINE__ ); + echo "Gender done\n"; + } } +$insights_plugin_registrar = PluginRegistrarInsights::getInstance (); +$insights_plugin_registrar->registerInsightPlugin ( 'GenderAnalysisInsight' ); -$insights_plugin_registrar = PluginRegistrarInsights::getInstance(); -$insights_plugin_registrar->registerInsightPlugin('GenderAnalysisInsight'); + diff --git a/webapp/plugins/insightsgenerator/view/genderanalysis.tpl b/webapp/plugins/insightsgenerator/view/genderanalysis.tpl index 434fc2d185..df091b6186 100644 --- a/webapp/plugins/insightsgenerator/view/genderanalysis.tpl +++ b/webapp/plugins/insightsgenerator/view/genderanalysis.tpl @@ -1,23 +1,57 @@ {include file=$tpl_path|cat:'_header.tpl'} -{if !$expand} +{if !$expand}
{/if} - {$i->headline} + {$i->headline} {$i->text|link_usernames_to_twitter} +
+ {include file=$tpl_path|cat:"_post.tpl" post=$i->related_data[0] hide_insight_header=true} +
+ {if !$expand}
-eee {/if} + +
 
+ + +{if !$expand}
{/if} {include file=$tpl_path|cat:'_footer.tpl'} - From 6106e3c0e57ca39e88816af5435d31c000e6b67c Mon Sep 17 00:00:00 2001 From: anna Date: Sun, 15 Jun 2014 20:18:38 +0300 Subject: [PATCH 08/40] sql changes for birthday field --- webapp/_lib/model/class.User.php | 3 +++ webapp/install/sql/build-db_mysql-upcoming-release.sql | 1 + .../2014-06-15_add-birthday-to-users_issue1944.sql | 1 + .../class.FacebookPluginConfigurationController.php | 2 +- .../plugins/insightsgenerator/insights/genderanalysis.php | 3 +-- .../tests/TestOfGenderAnalysisInsight.php | 8 ++------ 6 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 webapp/install/sql/mysql_migrations/2014-06-15_add-birthday-to-users_issue1944.sql diff --git a/webapp/_lib/model/class.User.php b/webapp/_lib/model/class.User.php index bb108e8a9f..e019aa9e4a 100644 --- a/webapp/_lib/model/class.User.php +++ b/webapp/_lib/model/class.User.php @@ -164,6 +164,9 @@ public function __construct($val = false, $found_in = false) { if (isset($val['gender'])) { $this->gender = $val['gender']; } + if (isset($val['birthday'])) { + $this->gender = $val['birthday']; + } $this->location = $val['location']; $this->description = $val['description']; $this->url = $val['url']; diff --git a/webapp/install/sql/build-db_mysql-upcoming-release.sql b/webapp/install/sql/build-db_mysql-upcoming-release.sql index 67dde4ae10..f8846f4a0c 100644 --- a/webapp/install/sql/build-db_mysql-upcoming-release.sql +++ b/webapp/install/sql/build-db_mysql-upcoming-release.sql @@ -550,6 +550,7 @@ CREATE TABLE tu_users ( full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', + birthday datetime DEFAULT NULL COMMENT 'Birthday of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', diff --git a/webapp/install/sql/mysql_migrations/2014-06-15_add-birthday-to-users_issue1944.sql b/webapp/install/sql/mysql_migrations/2014-06-15_add-birthday-to-users_issue1944.sql new file mode 100644 index 0000000000..d480f7d6cb --- /dev/null +++ b/webapp/install/sql/mysql_migrations/2014-06-15_add-birthday-to-users_issue1944.sql @@ -0,0 +1 @@ +ALTER TABLE tu_users ADD birthday datetime DEFAULT NULL; \ No newline at end of file diff --git a/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php b/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php index 76fca46dc7..d23275c899 100644 --- a/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php +++ b/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php @@ -124,7 +124,7 @@ protected function setUpFacebookInteractions($options) { } if ($this->do_show_add_button) { - $params = array('scope'=>'read_stream,user_likes,user_location,user_website,'. + $params = array('scope'=>'read_stream,user_birthday,user_likes,user_location,user_website,'. 'read_friendlists,friends_location,manage_pages,read_insights,manage_pages', 'state'=>SessionCache::get('facebook_auth_csrf'), 'redirect_uri'=> (Utils::getApplicationURL(). 'account/?p=facebook') diff --git a/webapp/plugins/insightsgenerator/insights/genderanalysis.php b/webapp/plugins/insightsgenerator/insights/genderanalysis.php index a6bfce3545..d87b499e5a 100644 --- a/webapp/plugins/insightsgenerator/insights/genderanalysis.php +++ b/webapp/plugins/insightsgenerator/insights/genderanalysis.php @@ -59,8 +59,7 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number 'male' => $male ); $simplified_post_date = date('Y-m-d', strtotime($post->pub_date)); - echo "time= ".$simplified_post_date; - + if ($female > $male) { $this->insight_dao->insertInsightDeprecated ( 'gender_analysis', $instance->id, $simplified_post_date, "Women favorite!", "" . number_format ( $female ) . diff --git a/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php index b9aaa3230b..7911d7f45a 100644 --- a/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php +++ b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php @@ -47,9 +47,7 @@ public function tearDown() { } public function testGenderAnalysisForFaceBook() { - //$this->debug(Utils::varDumpToString($result)); - echo "start\n"; -/* $posts = array(); + $posts = array(); $posts[] = new Post(array( 'post_id' => 5, 'author_user_id' => 1, @@ -70,7 +68,7 @@ public function testGenderAnalysisForFaceBook() { 'reply_count_cache' => 0, 'favlike_count_cache' => 0 )); - $fpost_dao = DAOFactory::getDAO('PostDAO'); */ + $fpost_dao = DAOFactory::getDAO('PostDAO'); $builders = self::buildData(); $instance = new Instance(); @@ -80,8 +78,6 @@ public function testGenderAnalysisForFaceBook() { $instance->network = 'facebook'; $insight_plugin = new GenderAnalysisInsight(); $insight_plugin->generateInsight($instance, $last_week_of_posts, 3); - echo "end\n"; - $this->assertFalse(true,"sss"); } private function buildData() { $builders = array(); From 2025b6c82f46f4bd40104ae17b9416e0cb1c5994 Mon Sep 17 00:00:00 2001 From: anna Date: Sun, 15 Jun 2014 22:10:06 +0300 Subject: [PATCH 09/40] TestOfUserMySQLDAO changes for birthday field --- logs/access.log | 2 ++ tests/TestOfUserMySQLDAO.php | 25 +++++++++++++------ webapp/_lib/dao/class.UserMySQLDAO.php | 10 +++++--- webapp/_lib/model/class.User.php | 7 +++++- .../sql/build-db_mysql-upcoming-release.sql | 8 +++--- 5 files changed, 36 insertions(+), 16 deletions(-) diff --git a/logs/access.log b/logs/access.log index 7c3a2894fb..b63daccdee 100644 --- a/logs/access.log +++ b/logs/access.log @@ -2413,3 +2413,5 @@ 127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" 127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" 127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:21:41:50 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 1906 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [15/Jun/2014:21:42:18 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 1906 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" diff --git a/tests/TestOfUserMySQLDAO.php b/tests/TestOfUserMySQLDAO.php index d375a8f899..5d72e4a327 100644 --- a/tests/TestOfUserMySQLDAO.php +++ b/tests/TestOfUserMySQLDAO.php @@ -43,13 +43,13 @@ public function setUp() { protected function buildData() { //Insert test data into test table $builders[] = FixtureBuilder::build('users', array('user_id'=>12, 'user_name'=>'jack', - 'full_name'=>'Jack Dorsey', 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'San Francisco', + 'full_name'=>'Jack Dorsey', 'avatar'=>'avatar.jpg', 'gender'=>'', 'birthday'=>'', 'location'=>'San Francisco', 'is_verified'=>1, 'network'=>'twitter')); //Insert test data into test table $builders[] = FixtureBuilder::build('users', array('user_id'=>13, 'user_name'=>'zuck', - 'full_name'=>'Mark Zuckerberg', 'avatar'=>'avatar.jpg', 'gender'=>'Male', 'location'=>'San Francisco', - 'network'=>'facebook')); + 'full_name'=>'Mark Zuckerberg', 'avatar'=>'avatar.jpg', 'gender'=>'Male', 'birthday'=>'06/11/1992', + 'location'=>'San Francisco', 'network'=>'facebook')); $this->logger = Logger::getInstance(); return $builders; @@ -103,12 +103,14 @@ public function testGetDetailsUserExists() { $this->assertEqual($user->user_id, 12); $this->assertEqual($user->username, 'jack'); $this->assertEqual($user->gender, ''); + $this->assertEqual($user->birthday, ''); $this->assertEqual($user->network, 'twitter'); $user = $user_dao->getDetails(13, 'facebook'); $this->assertEqual($user->id, 2); $this->assertEqual($user->user_id, 13); $this->assertEqual($user->username, 'zuck'); $this->assertEqual($user->gender, 'Male'); + $this->assertEqual($user->birthday, '06/11/1992'); $this->assertEqual($user->network, 'facebook'); $user = $user_dao->getDetails(13, 'twitter'); @@ -131,7 +133,7 @@ public function testUpdateUser() { $user_dao = DAOFactory::getDAO('UserDAO'); $user_array = array('user_id'=>'13', 'user_name'=>'ginatrapani', 'full_name'=>'Gina Trapani', - 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatar.jpg', 'gender'=>'', 'birthday'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter', 'last_post_id'=>'abc102'); $user = new User($user_array, 'Test Insert'); @@ -141,11 +143,12 @@ public function testUpdateUser() { $this->assertEqual($user_from_db->username, 'ginatrapani'); $this->assertEqual($user_from_db->avatar, 'avatar.jpg'); $this->assertEqual($user_from_db->gender, ''); + $this->assertEqual($user_from_db->birthday, ''); $this->assertEqual($user_from_db->location, 'NYC'); $this->assertTrue($user_from_db->is_verified); $user_array = array('user_id'=>13, 'user_name'=>'ginatrapanichanged', 'full_name'=>'Gina Trapani ', - 'avatar'=>'avatara.jpg', 'gender'=>'', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatara.jpg', 'gender'=>'', 'birthday'=>'', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>0, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter'); $user1 = new User($user_array, 'Test Update'); @@ -155,12 +158,13 @@ public function testUpdateUser() { $this->assertEqual($user_from_db->username, 'ginatrapanichanged'); $this->assertEqual($user_from_db->avatar, 'avatara.jpg'); $this->assertEqual($user_from_db->gender, ''); + $this->assertEqual($user_from_db->birthday, ''); $this->assertEqual($user_from_db->location, 'San Diego'); $this->assertFalse($user_from_db->is_verified); //Test no username set $user_array = array('user_id'=>13, 'user_name'=>null, 'full_name'=>'Gina Trapani ', - 'avatar'=>'avatara.jpg', 'gender'=>'', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatara.jpg', 'gender'=>'', 'birthday'=>'', 'location'=>'San Diego', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter'); $user1 = new User($user_array, 'Test Update'); @@ -174,12 +178,12 @@ public function testUpdateUsers() { $user_dao = DAOFactory::getDAO('UserDAO'); $user_array1 = array('id'=>2, 'user_id'=>'13', 'user_name'=>'ginatrapani', 'full_name'=>'Gina Trapani', - 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatar.jpg', 'gender'=>'', 'birthday'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter', 'last_post_id'=>'abc123'); $user1 = new User($user_array1, 'Test'); $user_array2 = array('id'=>3, 'user_id'=>'14', 'user_name'=>'anildash', 'full_name'=>'Anil Dash', - 'avatar'=>'avatar.jpg', 'gender'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', + 'avatar'=>'avatar.jpg', 'gender'=>'', 'birthday'=>'', 'location'=>'NYC', 'description'=>'Blogger', 'url'=>'http://ginatrapani.org', 'is_verified'=>1, 'is_protected'=>0, 'follower_count'=>5000, 'post_count'=>1000, 'joined'=>'2007-03-06 13:48:05', 'network'=>'twitter', 'last_post_id'=>'abc456'); $user2 = new User($user_array2, 'Test'); @@ -201,6 +205,7 @@ public function testGetUserByNameUserExists() { $this->assertEqual($user->username, 'jack'); $this->assertEqual($user->full_name, 'Jack Dorsey'); $this->assertEqual($user->gender, ''); + $this->assertEqual($user->birthday, ''); $this->assertEqual($user->location, 'San Francisco'); } @@ -262,6 +267,7 @@ private function buildSearchData() { 'author_username' => 'ecucurella', 'author_fullname' => 'Eduard Cucurella', 'author_gender' => '', + 'author_birthday' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => '#Messi is the best http://flic.kr/p/ http://flic.kr/a/', @@ -293,6 +299,7 @@ private function buildSearchData() { 'author_username' => 'vetcastellnou', 'author_fullname' => 'Veterans Castellnou', 'author_gender' => '', + 'author_birthday' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => 'Post without any hashtag http://flic.kr/p/', @@ -324,6 +331,7 @@ private function buildSearchData() { 'author_username' => 'efectivament', 'author_fullname' => 'efectivament', 'author_gender' => '', + 'author_birthday' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => 'Post with #Messi hashtag http://flic.kr/p/', @@ -355,6 +363,7 @@ private function buildSearchData() { 'author_username' => 'efectivament', 'author_fullname' => 'efectivament', 'author_gender' => '', + 'author_birthday' => '', 'author_avatar' => 'http://aa.com', 'author_follower_count' => 0, 'post_text' => 'Post without any hashtag 2', diff --git a/webapp/_lib/dao/class.UserMySQLDAO.php b/webapp/_lib/dao/class.UserMySQLDAO.php index 1921274d05..7675bac82f 100644 --- a/webapp/_lib/dao/class.UserMySQLDAO.php +++ b/webapp/_lib/dao/class.UserMySQLDAO.php @@ -99,6 +99,7 @@ public function updateUser($user) { ':full_name'=>$user->full_name, ':avatar'=>$user->avatar, ':gender'=>$user->gender, + ':birthday'=>$user->birthday, ':location'=>$user->location, ':description'=>$user->description, ':url'=>$user->url, @@ -114,19 +115,22 @@ public function updateUser($user) { $is_user_in_storage = false; $is_user_in_storage = $this->isUserInDB($user->user_id, $user->network); if (!$is_user_in_storage) { - $q = "INSERT INTO #prefix#users (user_id, user_name, full_name, avatar, gender, location, description, url, "; + $q = "INSERT INTO #prefix#users (user_id, user_name, full_name, avatar, gender, birthday, location, "; + $q .= "description, url, "; $q .= "is_verified, is_protected, follower_count, post_count, ". ($has_friend_count ? "friend_count, " : "")." ". ($has_favorites_count ? "favorites_count, " : "")." ". ($has_last_post ? "last_post, " : "")." found_in, joined, network ". ($has_last_post_id ? ", last_post_id" : "").") "; - $q .= "VALUES ( :user_id, :username, :full_name, :avatar, :gender, :location, :description, :url, :is_verified, "; + $q .= "VALUES ( :user_id, :username, :full_name, :avatar, :gender, :birthday, :location, :description, "; + $q .= ":url, :is_verified, "; $q .= ":is_protected, :follower_count, :post_count, ".($has_friend_count ? ":friend_count, " : "")." ". ($has_favorites_count ? ":favorites_count, " : "")." ". ($has_last_post ? ":last_post, " : "")." :found_in, :joined, :network ". ($has_last_post_id ? ", :last_post_id " : "")." )"; } else { - $q = "UPDATE #prefix#users SET full_name = :full_name, avatar = :avatar, gender = :gender, location = :location, "; + $q = "UPDATE #prefix#users SET full_name = :full_name, avatar = :avatar, gender = :gender, "; + $q .= "birthday = :birthday, location = :location, "; $q .= "user_name = :username, description = :description, url = :url, is_verified = :is_verified, "; $q .= "is_protected = :is_protected, follower_count = :follower_count, post_count = :post_count, ". ($has_friend_count ? "friend_count= :friend_count, " : "")." ". diff --git a/webapp/_lib/model/class.User.php b/webapp/_lib/model/class.User.php index e019aa9e4a..8c13d31b83 100644 --- a/webapp/_lib/model/class.User.php +++ b/webapp/_lib/model/class.User.php @@ -59,6 +59,11 @@ class User { * @var str */ var $gender; + /** + * + * @var str + */ + var $birthday; /** * * @var location @@ -165,7 +170,7 @@ public function __construct($val = false, $found_in = false) { $this->gender = $val['gender']; } if (isset($val['birthday'])) { - $this->gender = $val['birthday']; + $this->birthday = $val['birthday']; } $this->location = $val['location']; $this->description = $val['description']; diff --git a/webapp/install/sql/build-db_mysql-upcoming-release.sql b/webapp/install/sql/build-db_mysql-upcoming-release.sql index f8846f4a0c..b046251975 100644 --- a/webapp/install/sql/build-db_mysql-upcoming-release.sql +++ b/webapp/install/sql/build-db_mysql-upcoming-release.sql @@ -1,6 +1,6 @@ -- -- ThinkUp Database Creation Script --- Auto-generated by thinkup/extras/scripts/migratedb script on 2014-03-11 +-- Auto-generated by thinkup/extras/scripts/migratedb script on 2014-06-15 -- ALTER DATABASE DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; @@ -549,8 +549,6 @@ CREATE TABLE tu_users ( user_name varchar(255) NOT NULL COMMENT 'Username on a given network, like a user''s Twitter username or Facebook user name.', full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', - gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', - birthday datetime DEFAULT NULL COMMENT 'Birthday of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', @@ -566,6 +564,8 @@ CREATE TABLE tu_users ( last_post_id varchar(80) NOT NULL DEFAULT '' COMMENT 'Network post ID of the latest post the user authored.', network varchar(20) NOT NULL DEFAULT 'twitter' COMMENT 'Originating network in lower case, i.e., twitter or facebook.', favorites_count int(11) DEFAULT NULL COMMENT 'Total number of posts the user has favorited.', + gender varchar(255) DEFAULT NULL, + birthday varchar(255) DEFAULT NULL, PRIMARY KEY (id), UNIQUE KEY user_id (user_id,network) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Service user details.'; @@ -594,7 +594,7 @@ CREATE TABLE tu_videos ( ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Videos which appear in posts.'; --- Dump completed on 2014-03-11 11:30:55 +-- Dump completed on 2014-06-15 21:58:43 -- -- Insert DB Version From ac7f15ad50311c7007c521c3ad2e210d3be95b0d Mon Sep 17 00:00:00 2001 From: anna Date: Mon, 16 Jun 2014 00:21:29 +0300 Subject: [PATCH 10/40] changed testdata and TestOfFacebookCrawler for birthday field --- .../facebook/model/class.FacebookCrawler.php | 9 +- .../facebook/tests/TestOfFacebookCrawler.php | 6 +- .../facebook/tests/testdata/100001078428730 | 1 + .../facebook/tests/testdata/100001241452656 | 1 + .../facebook/tests/testdata/1034402187 | 1 + .../facebook/tests/testdata/1036552729 | 1 + .../testdata/107982202636989-metadata=true | 3 +- .../facebook/tests/testdata/1184584231 | 1 + .../facebook/tests/testdata/1316858804 | 1 + .../facebook/tests/testdata/1333740280 | 3 +- .../133954286636768_144568048938151_comments | 75 +++-- .../133954286636768_144568048938151_likes | 6 +- ...5180192497884_comments-limit=25-after=MjY= | 3 +- ...5180192497884_comments-limit=25-after=NTQ= | 75 +++-- .../tests/testdata/133954286636768_feed | 300 ++++++++++++------ .../tests/testdata/133954286636768_posts | 12 +- ...44568048938151_comments-limit=25-offset=25 | 75 +++-- ...44568048938151_comments-limit=25-offset=50 | 63 ++-- .../facebook/tests/testdata/1479111505 | 1 + .../facebook/tests/testdata/1560315625 | 1 + .../facebook/tests/testdata/1704653001 | 1 + .../plugins/facebook/tests/testdata/24404996 | 1 + .../plugins/facebook/tests/testdata/500941232 | 1 + .../plugins/facebook/tests/testdata/501771984 | 1 + .../plugins/facebook/tests/testdata/503315820 | 3 +- .../plugins/facebook/tests/testdata/510971571 | 3 +- .../plugins/facebook/tests/testdata/533302090 | 1 + .../plugins/facebook/tests/testdata/535362181 | 1 + .../plugins/facebook/tests/testdata/606837591 | 1 + .../606837591_153956564638648_comments | 57 ++-- .../facebook/tests/testdata/606837591_feed | 102 ++++-- .../facebook/tests/testdata/606837591_friends | 3 +- .../facebook/tests/testdata/606837591_posts | 39 ++- .../plugins/facebook/tests/testdata/625158327 | 1 + .../plugins/facebook/tests/testdata/641265671 | 3 +- .../plugins/facebook/tests/testdata/653790081 | 3 +- .../plugins/facebook/tests/testdata/677588391 | 1 + .../plugins/facebook/tests/testdata/682523675 | 3 +- .../plugins/facebook/tests/testdata/691270740 | 3 +- .../plugins/facebook/tests/testdata/729597743 | 1 + .../facebook/tests/testdata/729597743_feed | 3 +- .../facebook/tests/testdata/729597743_friends | 3 +- .../facebook/tests/testdata/729597743_posts | 3 +- ...1728144886356_comments-limit=25-after=Njk= | 61 ++-- .../testdata/7568536355_437612826355_comments | 42 ++- .../testdata/7568536355_437894121355_comments | 12 +- .../testdata/7568536355_437894121355_likes | 6 +- .../testdata/7568536355_437900891355_comments | 24 +- .../facebook/tests/testdata/7568536355_feed | 78 +++-- .../facebook/tests/testdata/7568536355_posts | 12 +- ...til=2010-09-29T19%3A49%3A57%2B0000-since=0 | 9 +- .../plugins/facebook/tests/testdata/833828624 | 1 + webapp/plugins/facebook/tests/testdata/me | 3 +- 53 files changed, 756 insertions(+), 368 deletions(-) diff --git a/webapp/plugins/facebook/model/class.FacebookCrawler.php b/webapp/plugins/facebook/model/class.FacebookCrawler.php index 84c8162cec..f733de1de8 100644 --- a/webapp/plugins/facebook/model/class.FacebookCrawler.php +++ b/webapp/plugins/facebook/model/class.FacebookCrawler.php @@ -79,7 +79,7 @@ public function fetchUser($user_id, $found_in, $force_reload_from_facebook=false $user_object = null; if ($force_reload_from_facebook || !$user_dao->isUserInDB($user_id, $network)) { // Get owner user details and save them to DB - $fields = $network!='facebook page'?'id,name,gender,about,location,website':''; + $fields = $network!='facebook page'?'id,name,gender,birthday,about,location,website':''; $user_details = FacebookGraphAPIAccessor::apiRequest('/'.$user_id, $this->access_token, $fields ); if (isset($user_details)) { @@ -126,6 +126,7 @@ private function parseUserDetails($details) { $user_vals["full_name"] = $details->name; $user_vals["user_id"] = $details->id; $user_vals["gender"] = $details->gender; + $user_vals["birthday"] = $details->birthday; $user_vals["avatar"] = 'https://graph.facebook.com/'.$details->id.'/picture'; $user_vals['url'] = isset($details->website)?$details->website:''; $user_vals["follower_count"] = 0; @@ -368,6 +369,7 @@ private function processStream($stream, $network, $page_number) { "author_username"=>$c->from->name, "author_fullname"=>$c->from->name, "author_gender"=>$c->from->gender, + "author_birthday"=>$c->from->birthday, "author_avatar"=>'https://graph.facebook.com/'.$c->from->id.'/picture', "author_user_id"=>$c->from->id,"post_text"=>$c->message, "pub_date"=>$c->created_time, "in_reply_to_user_id"=>$profile->user_id, @@ -418,6 +420,7 @@ private function processStream($stream, $network, $page_number) { $comment_to_process = array("post_id"=>$comment_id, "author_username"=>$c->from->name, "author_fullname"=>$c->from->name, "author_gender"=>$c->from->gender, + "author_birthday"=>$c->from->birthday, "author_avatar"=>'https://graph.facebook.com/'. $c->from->id.'/picture', "author_user_id"=>$c->from->id, "post_text"=>$c->message, "pub_date"=>$c->created_time, @@ -475,7 +478,7 @@ private function processStream($stream, $network, $page_number) { if (isset($l->name) && isset($l->id)) { //Get users $user_to_add = array("user_name"=>$l->name, "full_name"=>$l->name, - "user_id"=>$l->id, "gender"=>$l->gender, "avatar"=>'https://graph.facebook.com/'.$l->id. + "user_id"=>$l->id, "gender"=>$l->gender, "birthday"=>$l->birthday, "avatar"=>'https://graph.facebook.com/'.$l->id. '/picture', "location"=>'', "description"=>'', "url"=>'', "is_protected"=>1, "follower_count"=>0, "post_count"=>0, "joined"=>'', "found_in"=>"Likes", "network"=>'facebook'); //Users are always set to network=facebook @@ -524,7 +527,7 @@ private function processStream($stream, $network, $page_number) { if (isset($l->name) && isset($l->id)) { //Get users $user_to_add = array("user_name"=>$l->name, "full_name"=>$l->name, - "user_id"=>$l->id, "gender"=>$l->gender, "avatar"=>'https://graph.facebook.com/'.$l->id. + "user_id"=>$l->id, "gender"=>$l->gender, "birthday"=>$l->birthday, "avatar"=>'https://graph.facebook.com/'.$l->id. '/picture', "location"=>'', "description"=>'', "url"=>'', "is_protected"=>1, "follower_count"=>0, "post_count"=>0, "joined"=>'', "found_in"=>"Likes", "network"=>'facebook'); //Users are always set to network=facebook diff --git a/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php b/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php index 58b868dcdc..afd3ff8335 100644 --- a/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php +++ b/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php @@ -137,6 +137,7 @@ public function testFetchUser() { $this->assertEqual($user->full_name, 'Gina Trapani'); $this->assertEqual($user->user_id, 606837591); $this->assertEqual($user->gender, "female"); + $this->assertEqual($user->birthday, "01/02/03"); $this->assertEqual($user->location, "San Diego, California"); $this->assertEqual($user->description, 'Blogger and software developer. Project Director at Expert Labs. Co-host of This Week in Google.'); @@ -199,6 +200,7 @@ public function testFetchPostsAndRepliesForProfile1() { $this->assertEqual($user->avatar, 'https://graph.facebook.com/606837591/picture'); $this->assertTrue($user->is_protected); $this->assertEqual($user->gender, 'female'); + $this->assertEqual($user->birthday, "01/02/03"); $this->assertEqual($user->location, 'San Diego, California'); //sleep(1000); $user = $user_dao->getUserByName('Mitch Wagner', 'facebook'); @@ -207,6 +209,7 @@ public function testFetchPostsAndRepliesForProfile1() { $this->assertEqual($user->avatar, 'https://graph.facebook.com/697015835/picture'); $this->assertTrue($user->is_protected); $this->assertEqual($user->gender, 'male'); + $this->assertEqual($user->birthday, "07/23"); $this->assertEqual($user->location, 'La Mesa, California'); $user = $user_dao->getUserByName('Jeffrey McManus', 'facebook'); @@ -215,6 +218,7 @@ public function testFetchPostsAndRepliesForProfile1() { $this->assertEqual($user->avatar, 'https://graph.facebook.com/691270740/picture'); $this->assertTrue($user->is_protected); $this->assertEqual($user->gender, 'male'); + $this->assertEqual($user->birthday, "01/02/03"); $this->assertEqual($user->location, ''); } @@ -286,7 +290,7 @@ public function testFetchPostsAndRepliesForPage() { $post = $post_dao->getPost('437900891355', 'facebook page'); $this->assertEqual($post->post_text, 'Top 10 iOS Jailbreak Hacks'); $this->assertFalse($post->is_protected); - $this->assertEqual($post->reply_count_cache, 45); + $this->assertEqual($post->reply_count_cache, 25); //test link with image $this->assertEqual(sizeof($post->links), 1); diff --git a/webapp/plugins/facebook/tests/testdata/100001078428730 b/webapp/plugins/facebook/tests/testdata/100001078428730 index 870beded84..a5cb4d86c1 100644 --- a/webapp/plugins/facebook/tests/testdata/100001078428730 +++ b/webapp/plugins/facebook/tests/testdata/100001078428730 @@ -5,6 +5,7 @@ "last_name": "Snively", "link": "http://www.facebook.com/profile.php?id=100001078428730", "gender": "female", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-10-01T19:40:24+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/100001241452656 b/webapp/plugins/facebook/tests/testdata/100001241452656 index 2191e76f92..bd073a27d4 100644 --- a/webapp/plugins/facebook/tests/testdata/100001241452656 +++ b/webapp/plugins/facebook/tests/testdata/100001241452656 @@ -6,6 +6,7 @@ "link": "https://www.facebook.com/turkishTheajan", "username": "turkishTheajan", "gender": "male", + "birthday": "01/02/03", "locale": "tr_TR", "updated_time": "2011-08-29T13:08:01+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/1034402187 b/webapp/plugins/facebook/tests/testdata/1034402187 index 61927f54f8..6aa7b8344a 100644 --- a/webapp/plugins/facebook/tests/testdata/1034402187 +++ b/webapp/plugins/facebook/tests/testdata/1034402187 @@ -6,6 +6,7 @@ "last_name": "Carrico", "link": "http://www.facebook.com/marcy.carrico", "gender": "female", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-09-17T11:36:25+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/1036552729 b/webapp/plugins/facebook/tests/testdata/1036552729 index 2f0836d5b8..c3e450d187 100644 --- a/webapp/plugins/facebook/tests/testdata/1036552729 +++ b/webapp/plugins/facebook/tests/testdata/1036552729 @@ -6,6 +6,7 @@ "link": "https://www.facebook.com/matthew.fleisher", "username": "matthew.fleisher", "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2011-08-06T02:48:49+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true b/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true index dc81626b1b..8c732f4742 100644 --- a/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true +++ b/webapp/plugins/facebook/tests/testdata/107982202636989-metadata=true @@ -1,7 +1,8 @@ { "id": "107982202636989", "name": "Sample Cause", - "gender":"", + "gender": "", + "birthday": "", "picture": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/276798_107982202636989_4098521_s.jpg", "link": "https://www.facebook.com/pages/Sample-Cause/107982202636989", "likes": 1, diff --git a/webapp/plugins/facebook/tests/testdata/1184584231 b/webapp/plugins/facebook/tests/testdata/1184584231 index 812089ae4a..128f271120 100644 --- a/webapp/plugins/facebook/tests/testdata/1184584231 +++ b/webapp/plugins/facebook/tests/testdata/1184584231 @@ -6,6 +6,7 @@ "link": "http://www.facebook.com/bill.goodman", "about": "You thought I had my eyes closed but I was looking at you the whole fucking time \n-Ed Vedder", "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-09-29T23:49:44+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/1316858804 b/webapp/plugins/facebook/tests/testdata/1316858804 index 87f1748652..9fe2f04a46 100644 --- a/webapp/plugins/facebook/tests/testdata/1316858804 +++ b/webapp/plugins/facebook/tests/testdata/1316858804 @@ -4,6 +4,7 @@ "first_name": "Zack", "last_name": "Murtha", "gender": "male", + "birthday": "01/02/03", "link": "http://www.facebook.com/profile.php?id=1316858804", "about": "\"Life is tough, but it's tougher if you're stupid. \"", "locale": "en_US", diff --git a/webapp/plugins/facebook/tests/testdata/1333740280 b/webapp/plugins/facebook/tests/testdata/1333740280 index 5897f005d4..4ac3f34db7 100644 --- a/webapp/plugins/facebook/tests/testdata/1333740280 +++ b/webapp/plugins/facebook/tests/testdata/1333740280 @@ -5,7 +5,8 @@ "last_name": "Sablok", "link": "https://www.facebook.com/ankit.sablok", "username": "ankit.sablok", - "gender": "male", + "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2011-08-21T09:36:51+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments index 4dcdffe403..71b1aae917 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_comments @@ -5,7 +5,8 @@ "from": { "name": "Brian Poole", "id": "510971571", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Congrats to all and happy hacking!", "created_time": "2011-02-06T00:06:11+0000" @@ -15,7 +16,8 @@ "from": { "name": "Aditya Permana", "id": "1302210867", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "first", "created_time": "2011-02-06T00:07:23+0000" @@ -25,7 +27,8 @@ "from": { "name": "Imen En Tu Estereo", "id": "100000576705814", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "yeah\u00a1\u00a1", "created_time": "2011-02-06T00:07:32+0000" @@ -35,7 +38,8 @@ "from": { "name": "Jarrod Parker", "id": "24409159", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "lmao only 150 made it out of 1673 or whatever it was", "created_time": "2011-02-06T00:08:49+0000" @@ -45,7 +49,8 @@ "from": { "name": "Jarrod Parker", "id": "24409159", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "well, got one right", "created_time": "2011-02-06T00:09:00+0000" @@ -55,7 +60,8 @@ "from": { "name": "Ville Hellman", "id": "517413587", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Congrats to the top 150 for correct solutions, disappointed that some problem definitions changed halfway through the competition...", "created_time": "2011-02-06T00:11:16+0000", @@ -66,7 +72,8 @@ "from": { "name": "Gutzsu Lyla Yusuf", "id": "100000058303131", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "prettttttt", "created_time": "2011-02-06T00:12:25+0000" @@ -76,7 +83,8 @@ "from": { "name": "Steve Wallis", "id": "818460536", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "It would be nice if they could give us the stats on how many qualified people actually participated in each round. (e.g. this round had 1,673 qualified people. How many of them actually participated during the 3-hour duration? It's obviously more than the 364 people who submitted something.)", "created_time": "2011-02-06T00:14:42+0000", @@ -87,7 +95,8 @@ "from": { "name": "Andre Holzner", "id": "100000773664809", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "interesting.. I see one O(N *M) solution for problem 1 which has passed...", "created_time": "2011-02-06T00:15:35+0000", @@ -98,7 +107,8 @@ "from": { "name": "Brian Poole", "id": "510971571", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "So I've got a biased idea! How about everyone who participated in round 2 gets a tshirt. I mean.. it's only 64 more tshirts than anticipated!", "created_time": "2011-02-06T00:16:09+0000", @@ -109,7 +119,8 @@ "from": { "name": "Audrey Pierrot", "id": "667404345", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I can't :(((", "created_time": "2011-02-06T00:16:13+0000" @@ -119,7 +130,8 @@ "from": { "name": "Francisco Fernandez Berrocal", "id": "1452734980", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Too brutal questions!", "created_time": "2011-02-06T00:16:26+0000", @@ -130,7 +142,8 @@ "from": { "name": "Arnab Bose", "id": "665721288", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Andre - Interesting... where?", "created_time": "2011-02-06T00:16:53+0000", @@ -141,7 +154,8 @@ "from": { "name": "Daniel Saunders", "id": "1123122807", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Google chrome ......your mine", "created_time": "2011-02-06T00:17:07+0000" @@ -151,7 +165,8 @@ "from": { "name": "Eric Alejandro Destefanis", "id": "1123359465", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Hey! somehow, my source is in the place of my output (and the output in the place of my source)... does anyone know if this is rejudgable? Or who may I email?", "created_time": "2011-02-06T00:18:09+0000" @@ -161,7 +176,8 @@ "from": { "name": "Hongliang Liu", "id": "682021444", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "\u0040Eric, just forget about it. Have fun in your weekend.", "created_time": "2011-02-06T00:20:44+0000", @@ -172,7 +188,8 @@ "from": { "name": "Arnab Bose", "id": "665721288", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Eric, I'd say it should definitely be considered (though that's my personal opinion). Hopefully the organizers will see your post here!", "created_time": "2011-02-06T00:22:58+0000", @@ -183,7 +200,8 @@ "from": { "name": "Kamil Sadkowski", "id": "100000694633914", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "\u0040Andre Holzner I see even more than one.", "created_time": "2011-02-06T00:25:56+0000", @@ -194,7 +212,8 @@ "from": { "name": "Arnab Bose", "id": "665721288", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Andre, Kamil - I wonder what computer / language they were using. In my system, which is fairly modern, running _empty_ nested loop of 250000 iterations each takes (estimated) 30-40 minutes.", "created_time": "2011-02-06T00:27:58+0000" @@ -204,7 +223,8 @@ "from": { "name": "Greg Knox", "id": "510782039", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "After looking at some of these solutions, don't feel so bad about not getting any of them right -- Well done anyone who actually got any of these things :)", "created_time": "2011-02-06T00:28:14+0000", @@ -215,7 +235,8 @@ "from": { "name": "Jozef Vodicka", "id": "1240057308", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Congrats guys, enjoy Palo Alto & Hacker Cup T-Shirt :)", "created_time": "2011-02-06T00:30:37+0000" @@ -225,7 +246,8 @@ "from": { "name": "Erik Ramsgaard Wognsen", "id": "738668796", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Brian Poole: 364 is the number of people who uploaded anything; the number of participants is larger. But yeah, t-shirts ftw :-P", "created_time": "2011-02-06T00:31:20+0000" @@ -235,7 +257,8 @@ "from": { "name": "Robert Burke", "id": "23917679", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Brian: No, a lot of people did the contest and got 0 correct answers and 0 wrong answers. 364 is only the number of people who got 1 or more answers.", "created_time": "2011-02-06T00:32:08+0000" @@ -245,7 +268,8 @@ "from": { "name": "Steve Wallis", "id": "818460536", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Andre, Kamil, Arnab... perhaps they knew a way to download the source file without starting the timer, like in previous rounds?", "created_time": "2011-02-06T00:33:55+0000" @@ -255,7 +279,8 @@ "from": { "name": "Edward T. Tonai", "id": "520613319", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I think that the 5 people who solved 2 problems who weren't in the top 25 should get invited to the finals anyway. I wasn't one of them, btw. Considering how many people failed at every stage, and how we weren't even close to 3000 in round 2, and only 150 are getting a T-Shirt. I think solving 2 is a major major accomplishment!", "created_time": "2011-02-06T00:37:01+0000", diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes index d147587cb3..bebfc1a3c0 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_144568048938151_likes @@ -3,12 +3,14 @@ { "id": "100002586603826", "name": "Sade Tolgahan", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100000931059876", "name": "Kosso Thierry", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, ], "paging": { diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= index 07d5677493..2a852973b4 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=MjY= @@ -5,7 +5,8 @@ "from": { "name": "Ayush Shrivastava", "id": "100005963640296", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Do you want to hack somebody's facebook account? Use this program that can steal facebook password 100% Working here http://fbhackerz.blogspot.com/", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= index 9ef7051ff7..9cacf0e6d8 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_775180192497884_comments-limit=25-after=NTQ= @@ -5,7 +5,8 @@ "from": { "name": "Ayush Shrivastava", "id": "100005963640296", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Do you want to hack somebody's facebook account? Use this program that can steal facebook password 100% Working here http://fbhackerz.blogspot.com/", "can_remove": false, @@ -18,7 +19,8 @@ "from": { "name": "Michael Gidron", "id": "1144454524", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "wow.. I over looked the single # sign as being a valid square.", "can_remove": false, @@ -31,7 +33,8 @@ "from": { "name": "Hafiz Ahmad", "id": "100000987379715", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "<<<<<<<<\nHack facebook account online,You can hack facebook passwords for free with this online hacking tool. No download needed,Hack facebook account online,check this site :- http://www.hack-fb-online.com\n<<<<<<<<", @@ -45,7 +48,8 @@ "from": { "name": "IntērnàTïônàl Bräñðêð Bâçhíì", "id": "100002169050570", - "gender": "" + "gender": "", + "birthday": "" }, "message": "i need help. if any know how to to hack fb page. inbox me :'(", "can_remove": false, @@ -58,7 +62,8 @@ "from": { "name": "Marcin Krnąbny", "id": "100001089217022", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Download: http://www.sharfiles.com/download/2/2983000/Hack", "can_remove": false, @@ -71,7 +76,8 @@ "from": { "name": "Anubhav Joshi", "id": "100000429699776", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "can anybody tell what does source with a red cross signify??? Please reply..", "can_remove": false, @@ -84,7 +90,8 @@ "from": { "name": "Yoandry Martinez Rodriguez", "id": "100000071074557", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I think -with all respect- you my friend did not completely understood the problem.", "can_remove": false, @@ -97,7 +104,8 @@ "from": { "name": "Anis Imanis", "id": "100001420300757", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "dam i forget it !", "can_remove": false, @@ -110,7 +118,8 @@ "from": { "name": "Narendra Yadav", "id": "100005808700499", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Facebook Hacker Cup Pl upload input and outfull file of these problems.", "message_tags": [ @@ -132,7 +141,8 @@ "from": { "name": "Atul Anand", "id": "855354123", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "for square detection problem, i tweaked the classic algorithm of finding maximum square within a matrix with all ones i.e min(DP[i-1][j-1],DP[i-1][j] , DP[i][j-])+1 if input[i][j]==1.To make sure that we have found the max square , we just need to take care that DP[i-1][j-1],DP[i][j-1],DP[i-1][j] are equal . keep updating x-axis square boundary and y-axis square boundary.now just traverse the whole input[][] once again so that there is no more '1' (i.e #) expect the final square bounday found using DP[][].", "can_remove": false, @@ -145,7 +155,8 @@ "from": { "name": "Diego Arcos", "id": "100006184567958", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Alejandro R. Arzola ya viste los problemas tipo icpc, y las soluciones!", "message_tags": [ @@ -167,7 +178,8 @@ "from": { "name": "Muhammad Ridwan Apriansyah", "id": "100000075861819", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Well i prefer to use deque and do some simple simulation to attack problem 2 :v", "can_remove": false, @@ -180,7 +192,8 @@ "from": { "name": "Eduardo Cuesta", "id": "100001049452062", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I have a question about the following assertion in Tennison problem:\n\n\"Luckily for Tennison, whenever he wins a set, the probability that there will be sun increases by pu with probability pw. Unfortunately, when Tennison loses a set, the probability of sun decreases by pd with probability pl.\"\n\nDoes this mean that when Tennison wins a set (that is P(win) is 1) then P(sun) += pu * pw else (that is 1 - P(win) is 0) then P(sun) -= pd * pl?\n\nIf so then the problem can be solved with less temporal and spatial complexity by a FORMULA.", "can_remove": false, @@ -193,7 +206,8 @@ "from": { "name": "Muhammad Shufi", "id": "100006628740846", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Nice", "can_remove": false, @@ -206,7 +220,8 @@ "from": { "name": "Anubhav Joshi", "id": "100000429699776", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "why is my second question wrong it uses the same algorithm????", "can_remove": false, @@ -219,7 +234,8 @@ "from": { "name": "Victor Borisov", "id": "100001024632246", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Третья задача это кабзец какой-то просто!", "can_remove": false, @@ -232,7 +248,8 @@ "from": { "name": "Omar Rivera", "id": "1565831002", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "The order players in Basketball game result is important?", "can_remove": false, @@ -245,7 +262,8 @@ "from": { "name": "Baljeet Singh", "id": "100007113308231", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "My Solution for Square Detector give the same output as accepted solution but My final solution is not accepted.Correct me if I am wrong.Thanks in advance. http://ideone.com/tjcp0D", "can_remove": false, @@ -258,7 +276,8 @@ "from": { "name": "Durgesh Kumar", "id": "100001847357742", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "the 4th case is not cleared...... \"sixth decimal place\"... output gives Case #4: 0.999954 but Case #4: 0.999956. why??", "can_remove": false, @@ -271,7 +290,8 @@ "from": { "name": "Ollo Akhtom", "id": "100003231711648", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I used the same approach stated above.But the Fourth case gives me wrong output for the sixth decimal place. My output gives Case #4: 0.999954 .It should have been Case #4: 0.999956 , I don't know why ?", "can_remove": false, @@ -284,7 +304,8 @@ "from": { "name": "David Machaj", "id": "6203047", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I agree with the \"run out of time\" comment for Tennyson. At least half of the time I spent on that problems was optimizing and parallelizing it to handle 100 cases of 100 rounds to be sure that my program could finish in under 6 minutes (C#). In the end I only got 20 cases and it took 15 seconds to run. ", "can_remove": false, @@ -297,7 +318,8 @@ "from": { "name": "Zakka Fauzan Muhammad", "id": "1177864071", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "can anyone explain the third answer in more detail?", "can_remove": false, @@ -310,7 +332,8 @@ "from": { "name": "Irvan", "id": "1548822479", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Thanks for your solution \"No.3\" -_- Perfect ! you win .", "can_remove": false, @@ -323,7 +346,8 @@ "from": { "name": "Ashutosh Kumar", "id": "100001917451288", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Can some one explain me how they have tried to solve square detector", "can_remove": false, @@ -336,7 +360,8 @@ "from": { "name": "Kondal Chinnu", "id": "100002177566168", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Hi hackers", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_feed b/webapp/plugins/facebook/tests/testdata/133954286636768_feed index bd7167a4ce..c861f1f235 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_feed +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_feed @@ -40,127 +40,152 @@ { "id": "100002526577162", "name": "Sultan Bajalan", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "632661716", "name": "Riham Magdy", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100000063019464", "name": "Jinsean Tee", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1228678051", "name": "Warsito Raharjo", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1664847556", "name": "Fn Lion", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100003738152592", "name": "Marc Albrightun", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100002077698098", "name": "Hardik Patel", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100007089823970", "name": "Digvijay Kirti Verma", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1409951512", "name": "Amal Dev", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100001875705436", "name": "Akhmad Amin", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100000396618817", "name": "Haron Shihab", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1727363100", "name": "Raktai Choomeechai", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100005041530255", "name": "Julio César Vidal Garcia", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100006846763128", "name": "Sritanu Chakraborty", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100003184362516", "name": "Praveen Minz", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100003122999128", "name": "Raphael Miranda", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100004268793723", "name": "Hafidz SA", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100002366359603", "name": "Mohamad Fazeli", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "750619142", "name": "Khristian Fabian Robayo Garcia", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100000641970489", "name": "Pankaj Jakhar", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1187442680", "name": "Tri Nguyen", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100006262693277", "name": "Ramadan", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1496594985", "name": "Ramun Berger", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100000642606673", "name": "Parth Soni", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100002365850833", "name": "Daniel Joshua", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" } ], "paging": { @@ -178,7 +203,8 @@ "from": { "name": "Ahmed Gamal", "id": "1046294762", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I hate this Tennison", "can_remove": false, @@ -191,7 +217,8 @@ "from": { "name": "Daniel Zhi", "id": "1306697257", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Agree that Basketball game requires no simulation. You can simply put players in playing order and use modular to identify top P after M rounds.", "can_remove": false, @@ -204,7 +231,8 @@ "from": { "name": "Eugene Serkin", "id": "100000076041242", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Would be interesting to see programming language statistics at the end of the tournament.", "can_remove": false, @@ -217,7 +245,8 @@ "from": { "name": "Roman Vorobets", "id": "100001065080101", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "There are not enough tests for problem 1!\nMy colleague's solution got accepted, even though it returns 'YES' for the following test input:\n1\n3\n#.#\n...\n#.#", "can_remove": false, @@ -230,7 +259,8 @@ "from": { "name": "Gal Appelbaum", "id": "740952671", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "You should also add the questions on top of the solution explanation so people can read the question again before reading the explanation, or if they don't understand something they can look back at the question.", "can_remove": false, @@ -243,7 +273,8 @@ "from": { "name": "Shreyas Subramaniam", "id": "682765760", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "The basketball problem becomes a whole lot simpler if you use a min-heap.", "can_remove": false, @@ -256,7 +287,8 @@ "from": { "name": "Maria Jose Patron", "id": "1170794705", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Angel :P", "message_tags": [ @@ -278,7 +310,8 @@ "from": { "name": "Mahsum Yılmaz", "id": "100000840472540", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Nice :)", "can_remove": false, @@ -291,7 +324,8 @@ "from": { "name": "Ahmed Fahmy", "id": "1544147638", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Basketball ,, just reverse the first K then use modulus \nit doesn't need to be that difficult !", "can_remove": false, @@ -304,7 +338,8 @@ "from": { "name": "Arman Prayudi", "id": "100006804304956", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "mas, bantuin menghacking facebook ya... rumah tangga saya terancam. please inbox balesan caranya.. tolong ya mas admin.", "can_remove": false, @@ -317,7 +352,8 @@ "from": { "name": "Andrey Nevolin", "id": "1614833825", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Hello Facebook!\r\nHow can I contact the author of \"Tennison\" problem?\r\nLooks like exists solution for this problem that makes 10 000 times less multiplications (in worst case) and gives much more accurate results than author's one. Additional accuracy in this solution doesn't allow to pass author's testing. I'd like to discuss this solution with the author", "can_remove": false, @@ -330,7 +366,8 @@ "from": { "name": "Katalin Brányiné Sulák", "id": "100007139493100", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Tennison: it is very easy to calculate it in an array of K*3+2 rows and 1001 coloumns for sun probabilities, and in 2*K-1 steps of 4*(K+1)*1001 calculation each, using something similar recursive method as mentioned above, but doing it blind for all the elements regardless whether they are 0 or not. (The \"important\" part of the table is sliding so that it has enough place to do the \"inside-line\" modifications in the case of a losing. Every step is calculated - after adding the containt of the row, which represents the K won sets in that step, to the total sum - from the most possible won sets to 0 direction.) For the given 20 testcases this program runs less than 5 seconds written in java. (Actually I won't get the points for this solution because I made accidentally a truncation to 5 and not to 6 decimals...)", "can_remove": false, @@ -343,7 +380,8 @@ "from": { "name": "Dmitry Stepanenko", "id": "100000241245915", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "2 FB Team: guys, you forgot to send emails with reminder about this round :)", "can_remove": false, @@ -356,7 +394,8 @@ "from": { "name": "René van den Berg", "id": "100000015903907", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "After having a look at the solutions given by the top 10, I conclude there is still much to learn about writing elegant solutions. For me, at least :)", "can_remove": false, @@ -369,7 +408,8 @@ "from": { "name": "Kamil Dębowski", "id": "100002474965959", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "please clarify:\nFAQ: \"Round 1: The top 500 finishers will advance to Round 2. Everyone that gets the same NUMBER OF POINTS as the person in 500th place will also advance to Round 2.\"\ne-mail: \"anyone who correctly solves as many PROBLEMS as the competitor in 500th place will also advance to Round 2.\"", "can_remove": false, @@ -382,7 +422,8 @@ "from": { "name": "Parker Zhang", "id": "100000489555914", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "For problem 2. no simulation is required though.", "can_remove": false, @@ -395,7 +436,8 @@ "from": { "name": "Valerie Tumnous", "id": "100006602342768", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "This man has contacts with minors everyday on facebook. He has been ordered to have \"no contact\" with minors. He is on Facebook everyday talking with minors. How can you hackers take him out. It is an obvious violation. But it is a violation the community Pulaski Virginia, does not care about or have the resources to care about. http://www.roanoke.com/news/nrv/2111811-12/former-pulaski-county-volunteer-coach-arrested-on-new.html", "can_remove": false, @@ -408,7 +450,8 @@ "from": { "name": "Valerie Tumnous", "id": "100006602342768", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Now put theory to practice. http://www.roanoke.com/news/nrv/2111811-12/former-pulaski-county-volunteer-coach-arrested-on-new.html", "can_remove": false, @@ -421,7 +464,8 @@ "from": { "name": "Ay Se Zarar", "id": "100007051626693", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "https://www.facebook.com/ApommmM?ref=ts&fref=ts heres 1 to hack", "can_remove": false, @@ -434,7 +478,8 @@ "from": { "name": "Jinsean Tee", "id": "100000063019464", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "helo are you know hack to slotomania coins ???", "can_remove": false, @@ -448,7 +493,8 @@ "category": "Computers/internet website", "name": "Hacking and Security", "id": "206586276069602", - "gender": "" + "gender": "", + "birthday": "" }, "message": ":)", "can_remove": false, @@ -461,7 +507,8 @@ "from": { "name": "Çûtê Moi", "id": "100006399125805", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Do you want to hack somebody's facebook account? Use this program that can steal facebook password 100% Working here http://fbhackerz.blogspot.com/", "can_remove": false, @@ -474,7 +521,8 @@ "from": { "name": "Rockie Abineno", "id": "100005737810147", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "http://www.fb-hacker.net/hack.php?id=171594", "can_remove": false, @@ -487,7 +535,8 @@ "from": { "name": "Adam Ad", "id": "100001969645357", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "<<<<<<<<\nHack facebook account online,You can hack facebook passwords for free with this online hacking tool. No download needed,Hack facebook account online,check this site :- http://www.hack-fb-online.com\n<<<<<<<<", "can_remove": false, @@ -500,7 +549,8 @@ "from": { "name": "Micael Melo", "id": "100002650086570", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "http://www.youtube.com/watch?v=9GfT5CTgK-Q&feature=youtu.be&hd=1", "can_remove": false, @@ -562,127 +612,152 @@ { "id": "100007131154707", "name": "Ankit Kumar", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100004607914407", "name": "Narendra Agrawal", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100001488021086", "name": "Rajat Pal", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100007089823970", "name": "Digvijay Kirti Verma", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100005227441659", "name": "Gadieng Theblues Chelsea", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100006177341038", "name": "Okan VVestly", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1409951512", "name": "Amal Dev", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100002824866487", "name": "Pradyumna Cheerala", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1446396999", "name": "Bakhodir Ashirmatov", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100002366359603", "name": "Mohamad Fazeli", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1228359709", "name": "Stephan Mühlstrasser", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "510454756", "name": "Yunduz R", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100004211803440", "name": "Myu Mithapara", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100003678582445", "name": "Shikhor Roy", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100002606505562", "name": "Mohammed Al Samawi", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100003517224742", "name": "Tahmid Hamim Ratul", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100001214007485", "name": "Ankita Kalantri", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, { "id": "100003250194462", "name": "Riaz Gull", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100001173606228", "name": "Yoga Anand", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "687779353", "name": "Tarek Ashraf", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "1258986227", "name": "Ziad Ouf", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100003617358781", "name": "Ashfaque Hossain Akand", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100001324314963", "name": "Roland Yeghiazaryan", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100002390600599", "name": "Subhrajyoti Senapati", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "id": "100001288311439", "name": "Betto Lima", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" } ], "paging": { @@ -700,7 +775,8 @@ "from": { "name": "Sarah Eaglesfield", "id": "1557887825", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "You had 7,500 participants... yet 391K people 'like' this page. Doesn't that sugget you need another qualifying round, or at least need to work on the algorhythm to promote Facebook Pages' internal posts?", "can_remove": false, @@ -713,7 +789,8 @@ "from": { "name": "Rory O'Logan", "id": "1076958099", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Darn I thought a single Hash wouldn't be considered a filled square, Oh well.", "can_remove": false, @@ -726,7 +803,8 @@ "from": { "name": "Chuột Bạch", "id": "100004043929299", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "1425 :)", "can_remove": false, @@ -739,7 +817,8 @@ "from": { "name": "Eli Mullis", "id": "1814672596", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Why is my source code suddenly not correct even though I got a green checkmark when I submitted yesterday? You guys need something a little less ambiguous to denote that the source and solution were received but haven't been graded yet.", "can_remove": false, @@ -752,7 +831,8 @@ "from": { "name": "Martin Böschen", "id": "701481590", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "My solution for square detector is wrong, yet i got the full score for that problem.\nThis input breaks my algorithm:\n#.#\n...\n#.#", "can_remove": false, @@ -765,7 +845,8 @@ "from": { "name": "Keyvhinng Espinoza", "id": "100000839867024", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Will fb publish an official discussion about the problems ?", "can_remove": false, @@ -778,7 +859,8 @@ "from": { "name": "Randy Augustus", "id": "212404024", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "So we don't get notified when it starts we have to check the page? Lame.", "can_remove": false, @@ -791,7 +873,8 @@ "from": { "name": "Oswaldo Zavala", "id": "1207729328", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "718 =)", "can_remove": false, @@ -804,7 +887,8 @@ "from": { "name": "Ankit Kumar", "id": "100007131154707", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "i want to become.................", "can_remove": false, @@ -817,7 +901,8 @@ "from": { "name": "Lasha Lakirbaia", "id": "1057089246", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "There should be a better way to notify people that the contest is coming. I missed it just because I didn't know it was happening. I didn't get an email or anything", "can_remove": false, @@ -830,7 +915,8 @@ "from": { "name": "Betsu Melaku", "id": "601609715", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Has Petr Mitrichev participated this year?", "can_remove": false, @@ -843,7 +929,8 @@ "from": { "name": "Ramazan Aşkın", "id": "100004948027524", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "https://www.facebook.com/aylin.aslan.77964201?fref=ts allah rızası için bunu patlatıp şifresini bana gönderin", "can_remove": false, @@ -856,7 +943,8 @@ "from": { "name": "Ramazan Aşkın", "id": "100004948027524", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "https://www.facebook.com/aylin.aslan.77964201?fref=ts", "can_remove": false, @@ -869,7 +957,8 @@ "from": { "name": "Yogeesh Seralathan", "id": "100001023588299", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Hollyshit! i have submitted the unedited version of program :@ :( solution accepted but source code rejected :@ :( #ShitHappens", "can_remove": false, @@ -882,7 +971,8 @@ "from": { "name": "Anubhav Joshi", "id": "100000429699776", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "can anybody tell what does source with a red cross signify??? Please reply..", "can_remove": false, @@ -895,7 +985,8 @@ "from": { "name": "Minseok Jang", "id": "100000878314124", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "3334 :) see u on second round", "can_remove": false, @@ -908,7 +999,8 @@ "from": { "name": "Santosh Kumar Siddharth", "id": "100002196449131", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Sanjeev >:o", "message_tags": [ @@ -930,7 +1022,8 @@ "from": { "name": "Gergely Varsanyi", "id": "635372289", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I wish we could see programming language stats. Or gender, age, country, region and language stats for that matter :)", "can_remove": false, @@ -943,7 +1036,8 @@ "from": { "name": "Sathish Palanisamy", "id": "100000611973398", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "for the second problem my source is wrong.Which means,my entire logic is wrong or there is some specific format for the source? any constrains? Friends please assist me", "can_remove": false, @@ -956,7 +1050,8 @@ "from": { "name": "Deepanshu Mehta", "id": "627562277", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "When is round 1 is scheduled ?", "can_remove": false, @@ -969,7 +1064,8 @@ "from": { "name": "Samarth Agarwal", "id": "1310613804", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Can someone explain solution to problem 3?", "can_remove": false, @@ -982,7 +1078,8 @@ "from": { "name": "Muhammad Arslan Dogar", "id": "100002867305975", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "i don't want anything but the shirt ......plzzzz", "can_remove": false, @@ -995,7 +1092,8 @@ "from": { "name": "Samanun Chotkiatikhun", "id": "652907192", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Hello, Do anyone miss the output format?\nIn the question 1 my friend printf Yes/No instead of YES/NO.\nCould it possible to rejudge it?\n\nThank you very much", "can_remove": false, @@ -1008,7 +1106,8 @@ "from": { "name": "Carlos Martinez", "id": "1144500711", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I don't understand, I had the correct output for the first 2 problems, why didn't I qualified?", "can_remove": false, @@ -1021,7 +1120,8 @@ "from": { "name": "Jesus David Pacheco Cantero", "id": "100006752292748", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "http://gemhacks.jimdo.com/newgemhack2121", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/133954286636768_posts b/webapp/plugins/facebook/tests/testdata/133954286636768_posts index 7226bc4009..25f00bac58 100644 --- a/webapp/plugins/facebook/tests/testdata/133954286636768_posts +++ b/webapp/plugins/facebook/tests/testdata/133954286636768_posts @@ -20,22 +20,26 @@ { "name": "York Mw", "id": "100000234593146", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "name": "Sabbar Khatib", "id": "100001478065484", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "name": "Shih-Chiang Lin", "id": "792519448", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, { "name": "David Sanchez Jimenez", "id": "100000103487278", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" } ], "count": 97 diff --git a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 index da6fccc3dd..e62a89d15e 100644 --- a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 +++ b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=25 @@ -5,7 +5,8 @@ "from": { "name": "Govind Chandrasekhar", "id": "508111053", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "T-shits for those who submitted wrong answers? That's unfair to those who had the foresight to know that their answers were buggy, and hence didn't bother with submission.", "created_time": "2011-02-06T00:37:22+0000", @@ -16,7 +17,8 @@ "from": { "name": "Mark Zammata", "id": "733775875", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Cmd -> color a -> h4cker", "created_time": "2011-02-06T00:44:39+0000", @@ -27,7 +29,8 @@ "from": { "name": "David Berthelot", "id": "100000859513781", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "lol a T-shirt for a wrong answer :) I love the sense of humor that some people have here. So you could just upload a bunch of random numbers and printf(\"Hello mum\");. Hehehe", "created_time": "2011-02-06T00:45:49+0000", @@ -38,7 +41,8 @@ "from": { "name": "Mark Karpel\u00e8s", "id": "532974378", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "shouldn't have done that half alsleep, missed the 6 minutes limit ~", "created_time": "2011-02-06T00:52:00+0000" @@ -48,7 +52,8 @@ "from": { "name": "Hongliang Liu", "id": "682021444", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "FB financial department is happy to save 150$ T-shirts.", "created_time": "2011-02-06T00:52:05+0000", @@ -59,7 +64,8 @@ "from": { "name": "Martin Cifko \u0160tef\u010dek", "id": "791864198", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "just give 2 t-shirt to the first 150 people ;-) and no, i'm not one of them", "created_time": "2011-02-06T01:00:26+0000", @@ -70,7 +76,8 @@ "from": { "name": "Wayne Colvin", "id": "503383185", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Steve : Downloading the file always started the timer whether your browser showed it right or not. Those people (including me) knew full well that they were forfeiting a question they couldn't answer if they downloaded the input. :/", "created_time": "2011-02-06T01:01:01+0000" @@ -80,7 +87,8 @@ "from": { "name": "Jon Adams", "id": "1374900264", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "there should totally be a pity round for the remaining 150 t-shirts", "created_time": "2011-02-06T01:03:20+0000", @@ -91,7 +99,8 @@ "from": { "name": "Pradeep Chelani", "id": "1393001281", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "some people used sine cosine function and some people use left right bit operators to solve first problem...never thought it was so diff to solve large numbers...still unable to understand their logic...can someone explain me", "created_time": "2011-02-06T01:06:38+0000", @@ -102,7 +111,8 @@ "from": { "name": "Martin Cifko \u0160tef\u010dek", "id": "791864198", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I don't really get the solution for problem 1, i downloaded a few source codes\nI have the same algorithm, but it's still not fast enough on my computer ;-))", "created_time": "2011-02-06T01:07:37+0000" @@ -112,7 +122,8 @@ "from": { "name": "Pradeep Chelani", "id": "1393001281", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Martin...same here..some people O(N*M) solution was accepted while mine O(P*P) is not even working on my machine", "created_time": "2011-02-06T01:10:31+0000" @@ -122,7 +133,8 @@ "from": { "name": "Martin Cifko \u0160tef\u010dek", "id": "791864198", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "i got O(P*L) :-))", "created_time": "2011-02-06T01:11:14+0000" @@ -132,7 +144,8 @@ "from": { "name": "Pradeep Chelani", "id": "1393001281", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "i dont think their is much diff in O(P*L) and O(P*P)", "created_time": "2011-02-06T01:16:16+0000" @@ -142,7 +155,8 @@ "from": { "name": "Martin Cifko \u0160tef\u010dek", "id": "791864198", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040pradeep just a little, but in O(P*L) u dont have to check if (i*j\u003cl), because it's always true... anyway that doesn't help...", "created_time": "2011-02-06T01:23:32+0000", @@ -153,7 +167,8 @@ "from": { "name": "Wonjohn-Wonjun Choi", "id": "100000150076278", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "OMGOMGOMOGMOGMOGMG Can we have another subround please? I completely forgot about this T_T", "created_time": "2011-02-06T01:30:12+0000" @@ -163,7 +178,8 @@ "from": { "name": "Abhiraj Pande", "id": "100000492868617", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Studious student's output and solution was wrong.", "created_time": "2011-02-06T01:32:33+0000" @@ -173,7 +189,8 @@ "from": { "name": "Pradeep Chelani", "id": "1393001281", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040abhiraj which output is wrong?", "created_time": "2011-02-06T01:40:56+0000" @@ -183,7 +200,8 @@ "from": { "name": "Abhiraj Pande", "id": "100000492868617", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040pradeep: they have given that c is a character from substring but they are considering it a or b.", "created_time": "2011-02-06T01:53:02+0000" @@ -193,7 +211,8 @@ "from": { "name": "Pradeep Chelani", "id": "1393001281", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "it means c is any character in substring not 'c' as character", "created_time": "2011-02-06T02:29:01+0000", @@ -204,7 +223,8 @@ "from": { "name": "Noor Ali", "id": "1424405954", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Hmmm...sorry I don't participate about this competition. Caused I very busy yesterday. When I can paticipate round again?", "created_time": "2011-02-06T02:35:22+0000" @@ -214,7 +234,8 @@ "from": { "name": "Luca Ambrosi", "id": "510426156", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "can anyone write here the problem statements pls?", "created_time": "2011-02-06T02:39:10+0000" @@ -224,7 +245,8 @@ "from": { "name": "Sam Rose", "id": "544780370", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Maaaaaan they were some difficult problems. Major kudos to anyone that managed to get any of them. I racked my brains on the Bonus Assignment one for 2 and a half hours and got no where even close to the answer ^_^\n\nI'm gonna side with the \"Give everyone from round 2 t-shirts\" party :p", "created_time": "2011-02-06T02:41:57+0000", @@ -236,7 +258,8 @@ "name": "Erik Ramsgaard Wognsen", "id": "738668796" },, - "gender": "male" + "gender": "male", + "birthday": "01/02/03" "message": "Maybe they don't print the t-shirts until they know the sizes of the lucky people, so I don't think any will go to waste either way ^^", "created_time": "2011-02-06T03:30:46+0000" }, @@ -245,7 +268,8 @@ "from": { "name": "Anshul Goyal", "id": "1406403734", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I can't say about T-shirts ..\nBut problems were damn good although I wasn't able to solve any one of them correctly.", "created_time": "2011-02-06T03:30:54+0000" @@ -255,7 +279,8 @@ "from": { "name": "Rafael Telles Muller", "id": "536776067", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I guess Facebook will have to keep 150 shirts..LMAO. This first Hacker cup was a complete failure.", "created_time": "2011-02-06T04:17:38+0000" diff --git a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 index e4545b6afe..68c8b6cb2e 100644 --- a/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 +++ b/webapp/plugins/facebook/tests/testdata/144568048938151_comments-limit=25-offset=50 @@ -5,7 +5,8 @@ "from": { "name": "Rafael Telles Muller", "id": "536776067", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I guess Facebook will have to keep 150 shirts..LMAO. This first Hacker cup was a complete failure.", "created_time": "2011-02-06T04:17:38+0000" @@ -15,7 +16,8 @@ "from": { "name": "Akhil Kunnath", "id": "800223221", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Can anybody pls share all the 3 qns here ?? I'm not able to see the problem statements............", "created_time": "2011-02-06T04:47:37+0000" @@ -25,7 +27,8 @@ "from": { "name": "Aditya Permana", "id": "1302210867", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Little Scott recently learned how to perform arithmetic operations modulo some prime number P. As a training set he picked two sequences a of length N and b of length M, generated in the following way:\na1=A1\na2=A2\nai=(ai-2 * A3 + ai-1*A4 + A5) mod P, for i=3...N\nb1=B1\nb2=B2\nbj=(bj-2 * B3 + bj-1 * B4 + B5) mod P, for j=3...M\n\nNow he wants to find the number of pairs (i, j), where 1 \u2264 i \u2264 N and 1 \u2264 j \u2264 M, such that (ai * bj) mod P \u003c L, for given number L. He asked you to do the same to help him check his answers.\nInput\n\nThe first line of input file consists of a single number T, the number of test cases. Each test consists of three lines. The first line of a test case contains two integers: prime number P and positive integer L. The second line consists of six non-negative integers N, A1, A2, A3, A4, A5. Likewise, the third line contains six non-negative integers M, B1, B2, B3, B4, B5.\nOutput\n\nOutput T lines, with the answer to each test case on a single line.\nConstraints\n\nT = 20\n2 \u2264 P \u003c 250,000\nP is prime\n1 \u2264 L \u2264 P\n2 \u2264 N, M \u2264 10,000,000\n0 \u2264 A1, A2, A3, A4, A5, B1, B2, B3, B4, B5 \u003c P \n\nExample inputExample output\n\n5\n3 1\n4 0 2 2 2 2\n2 1 2 1 0 0\n3 1\n5 2 0 0 1 1\n5 1 1 2 0 0\n3 3\n5 0 0 1 2 2\n3 2 1 1 1 1\n5 1\n5 2 0 4 0 4\n3 2 1 2 4 4\n5 4\n2 2 1 3 1 4\n5 1 0 2 3 3\n\n6\n10\n15\n3\n9", "created_time": "2011-02-06T05:53:29+0000" @@ -35,7 +38,8 @@ "from": { "name": "Aditya Permana", "id": "1302210867", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Studious Student II\n\nYou've decided to make up another string manipulation game instead of paying attention in class. Starting with a string composed entirely of 'a' and 'b' characters, you will iteratively apply the following operation:\n\nFor a string s of length len, choose indices i and j, where i \u003c j \u003c len. Choose a character c that occurs in the substring which begins at zero-based index i of string s and extends to the index j (inclusive). Replace all characters in s with zero-based index in [i, j] with a single instance of c to generate s'. Set s to be s'.\n\nAs an example of sequence of operations consider the string 'abba'. Some of the possible transformations are shown below. The substring being replaced is enclosed in square brackets.\n\n 1. [abb]a \u2192 [aa] \u2192 a\n 2. a[bba] \u2192 [aa] \u2192 a\n 3. ab[ba] \u2192 [abb] \u2192 a\n 4. a[bb]a \u2192 aba\n\nThe goal of your game is simple: calculate how many different sequences of operations you can perform. As this number can be very large, you decide to calculate it modulo 1,000,000,007. Two sequences of operations are considered different if they differ in length, or if they differ in at least one position. Note that the order of operations is a factor. The empty sequence of operations should be counted as well. Operations can be considered triples of (i, j, c) as described above, and these are the only values used when computing whether two operations are the same.\nInput\n\nThe first line of the input file contains a single number N, the number of test cases. Each test case is written on a separate line, and contains a string consisting of letters 'a' and 'b'.\nOutput\n\nOutput N lines, with the answer to each test case on a single line.\nConstraints\n\nN = 20\n1 \u2264 len \u2264 60\ns only contains the lowercase characters 'a' and 'b'.\n\nExample input\n\n5\nab\naba\naabb\nababa\nbbbbb\nExample output\n3\n13\n57\n642\n120", "created_time": "2011-02-06T05:54:21+0000" @@ -45,7 +49,8 @@ "from": { "name": "Aditya Permana", "id": "1302210867", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Bonus Assignments\n\nYou are in charge of a group of N workers, and you want to pay a one-time bonus to each of them. The bonus for each worker is an integer number of dollars. According to state law the bonus of the worker who gets the least should be no less than A, but no more than B. To motivate your staff, the bonus of the worker who gets the most should be no less than C and no more than D.\n\nWorkers tend to spend their entire bonuses on HackerCola. Each of them buys bottles of HackerCola until he runs out of money, i.e., until amount of money left is less than the price of one bottle. Workers are very individualistic and each of them uses his own money only, so they never pool to buy HackerCola. Unfortunately you don't remember the price of one bottle of HackerCola, but you are pretty sure that it is an integer number of dollars greater than 1.\n\nSince you care about the working class you want to assign bonuses to workers in such a way that there would be at least one worker who would have some money left after buying as much HackerCola as possible regardless of the price of the bottle. Calculate the number of possible bonus assignments that fit this constraint. Two bonus assignments are different if at least one worker gets different bonus in each assignment. Since the answer can be large, calculate it modulo 1,000,000,007.\nInput\n\nThe first line of the input contains one integer T, the number of test cases. Each of the next T lines consists of 5 integers separated by spaces: N, A, B, C and D.\nOutput\n\nFor each of the test cases print a line containing number of possible bonus assignments modulo 1,000,000,007.\nConstraints\n\nT = 20\n1 \u2264 N \u2264 10^6\n1 \u2264 A \u2264 B \u2264 10^6\n1 \u2264 C \u2264 D \u2264 10^6\n\nExample input\n5\n2 1 2 4 5\n2 2 4 3 5\n1 5 10 5 10\n5 5 7 2 3\n5 2 7 5 12\nExample output\n6\n10\n0\n0\n149190", "created_time": "2011-02-06T05:55:29+0000" @@ -55,7 +60,8 @@ "from": { "name": "Abhiraj Pande", "id": "100000492868617", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "hey does anyone think studios student is wrong? I think its wrong. Its mentioned that c is a character from substring. Now consider the example of bbbbb. 'a' is not present in this string still 120 solution comes when we replace it with 'a' or 'b'", "created_time": "2011-02-06T06:04:40+0000" @@ -65,7 +71,8 @@ "from": { "name": "Vladimir Basunkov", "id": "100002004060331", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "WOW! Great solutions with FFT for first problem!Really cool=) I feel so stupid...=/", "created_time": "2011-02-06T06:09:12+0000", @@ -76,7 +83,8 @@ "from": { "name": "Pradeep Balakrishna", "id": "1081351919", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "can anyone pls share the idea behind scott's new trick", "created_time": "2011-02-06T07:58:13+0000" @@ -86,7 +94,8 @@ "from": { "name": "Ananya Mallik", "id": "1560315625", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "O(M*N) passed xD", "created_time": "2011-02-06T08:08:23+0000" @@ -96,7 +105,8 @@ "from": { "name": "Parth Shah", "id": "100001898527166", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "d hell wid these solutions who bloody cares..........", "created_time": "2011-02-06T11:57:22+0000" @@ -106,7 +116,8 @@ "from": { "name": "Robert Burke", "id": "23917679", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Abhiraj: For input 'bbbbb'...\nThere is 1 sequence in which you do nothing.\nThere is 1 sequence in which your first move is [bbbbb].\nThere are 4 sequences in which your first move is [bbbb]b or b[bbbb].\nThere are 18 sequences in which your first move is [bbb]bb, b[bbb]b, or bb[bbb].\nThere are 96 sequences in which your first move is [bb]bbb, b[bb]bb, bb[bb]b, or bbb[bb]\n1+1+4+18+96 = 120", "created_time": "2011-02-06T12:39:03+0000", @@ -117,7 +128,8 @@ "from": { "name": "Adam Folwarczny", "id": "1273118667", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "University of Warsaw ... Gz xd", "created_time": "2011-02-06T13:09:37+0000" @@ -127,7 +139,8 @@ "from": { "name": "Thomas Dybdahl Ahle", "id": "755563278", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "A few people passed with O(P*P) or O(P*L) by using massive parallelization. Kind of cheating perhaps, but then I suppose the problem authors wanted it to be solvable with slightly simpler algorithms than FFT, like Karatsuba.", "created_time": "2011-02-06T13:57:18+0000" @@ -137,7 +150,8 @@ "from": { "name": "Thomas Dybdahl Ahle", "id": "755563278", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\u0040Robert Burke I wish they had put explanations under the examples.", "created_time": "2011-02-06T14:03:55+0000" @@ -147,7 +161,8 @@ "from": { "name": "Akhil Kunnath", "id": "800223221", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "thnx Aditya.. thnx very much..........", "created_time": "2011-02-06T16:42:23+0000" @@ -157,7 +172,8 @@ "from": { "name": "Jos\u00e9 Ram\u00f3n Garc\u00eda Alvarado", "id": "654687405", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Looks like HE made it ...\nCan't wait to see Petr on action again!\nIs ACRush competing with a different name BTW?", "created_time": "2011-02-06T21:31:32+0000" @@ -167,7 +183,8 @@ "from": { "name": "Sreesasanka Gunturi", "id": "1581787658", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Guys, Is it happening to me or everyone. I cant see the problem set. Just that I did not qualify for round 2 does not mean I can never the problems(but download solutions!!!) for this round. Plzz post the problems if possible thanks...", "created_time": "2011-02-06T23:49:33+0000" @@ -177,7 +194,8 @@ "from": { "name": "Dario Lepre Battistin", "id": "1704653001", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Se solo qualcuno mi insegnasse quest'arte ci proverei anch'io.", "created_time": "2011-02-07T00:14:19+0000" @@ -187,7 +205,8 @@ "from": { "name": "Ananya Mallik", "id": "1560315625", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "yeah acrush is rank 8 i suppose .\nhttp://forums.topcoder.com/;jsessionid=A066C5A0E84294BEB6ADA6FEC3D836E9?module=Thread&threadID=695777&start=800&mc=830#1320829", "created_time": "2011-02-07T02:16:57+0000" @@ -197,7 +216,8 @@ "from": { "name": "Mehmet Ali Karata\u015f", "id": "100001241452656", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "hacked bay facebook xd !!! zaaaaaaaaaaaaa", "created_time": "2011-02-07T10:39:20+0000" @@ -207,7 +227,8 @@ "from": { "name": "Ankit Sablok", "id": "1333740280", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "who all r u giving t shirts", "created_time": "2011-02-07T21:08:37+0000" diff --git a/webapp/plugins/facebook/tests/testdata/1479111505 b/webapp/plugins/facebook/tests/testdata/1479111505 index 4b0922b99c..69781ad639 100644 --- a/webapp/plugins/facebook/tests/testdata/1479111505 +++ b/webapp/plugins/facebook/tests/testdata/1479111505 @@ -5,6 +5,7 @@ "last_name": "Chuchlik", "link": "http://www.facebook.com/harald.chuchlik", "gender": "male", + "birthday": "01/02/03", "locale": "de_DE", "updated_time": "2009-10-14T21:25:52+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/1560315625 b/webapp/plugins/facebook/tests/testdata/1560315625 index 5a6f195731..5fa8a2babf 100644 --- a/webapp/plugins/facebook/tests/testdata/1560315625 +++ b/webapp/plugins/facebook/tests/testdata/1560315625 @@ -6,6 +6,7 @@ "link": "https://www.facebook.com/ananya.mallik", "username": "ananya.mallik", "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2011-08-06T13:46:50+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/1704653001 b/webapp/plugins/facebook/tests/testdata/1704653001 index dea2a0cf40..bf539fa33a 100644 --- a/webapp/plugins/facebook/tests/testdata/1704653001 +++ b/webapp/plugins/facebook/tests/testdata/1704653001 @@ -6,6 +6,7 @@ "last_name": "Battistin", "link": "https://www.facebook.com/profile.php?id=1704653001", "gender": "male", + "birthday": "01/02/03", "locale": "en_GB", "updated_time": "2011-07-17T20:36:51+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/24404996 b/webapp/plugins/facebook/tests/testdata/24404996 index 2635aa6cc9..4464c5e3f1 100644 --- a/webapp/plugins/facebook/tests/testdata/24404996 +++ b/webapp/plugins/facebook/tests/testdata/24404996 @@ -5,6 +5,7 @@ "last_name": "Lawley", "link": "http://www.facebook.com/mamamusings", "gender": "female", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-06-27T06:05:01+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/500941232 b/webapp/plugins/facebook/tests/testdata/500941232 index a71ee7e0b6..024e808ba8 100644 --- a/webapp/plugins/facebook/tests/testdata/500941232 +++ b/webapp/plugins/facebook/tests/testdata/500941232 @@ -7,6 +7,7 @@ "locale": "en_US", "updated_time": "2010-05-28T04:38:31+0000", "gender": "male", + "birthday": "01/02/03", "location": { "id": "109324835754083", "name": "Buffalo, New York" diff --git a/webapp/plugins/facebook/tests/testdata/501771984 b/webapp/plugins/facebook/tests/testdata/501771984 index b91acbf8fe..631adbeb37 100644 --- a/webapp/plugins/facebook/tests/testdata/501771984 +++ b/webapp/plugins/facebook/tests/testdata/501771984 @@ -7,6 +7,7 @@ "name": "Chris Moyer", "id": "501771984", "gender": "male", + "birthday": "01/02/03", "location": { "name": "Clarence, New York", "id": "108077575886746" diff --git a/webapp/plugins/facebook/tests/testdata/503315820 b/webapp/plugins/facebook/tests/testdata/503315820 index 1cc29258f5..0298e80ea0 100644 --- a/webapp/plugins/facebook/tests/testdata/503315820 +++ b/webapp/plugins/facebook/tests/testdata/503315820 @@ -39,7 +39,8 @@ "end_date": "2011-07" } ], - "gender": "male", + "gender": "male", + "birthday": "01/02/03", "website": "http://xn.pinkhamster.net/", "timezone": -7, "locale": "en_US", diff --git a/webapp/plugins/facebook/tests/testdata/510971571 b/webapp/plugins/facebook/tests/testdata/510971571 index 8f007be9c9..a1799499ec 100644 --- a/webapp/plugins/facebook/tests/testdata/510971571 +++ b/webapp/plugins/facebook/tests/testdata/510971571 @@ -5,7 +5,8 @@ "last_name": "Poole", "link": "https://www.facebook.com/p00le", "username": "p00le", - "gender": "male", + "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2011-06-21T09:59:32+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/533302090 b/webapp/plugins/facebook/tests/testdata/533302090 index af1d3e4ff9..564b573672 100644 --- a/webapp/plugins/facebook/tests/testdata/533302090 +++ b/webapp/plugins/facebook/tests/testdata/533302090 @@ -5,6 +5,7 @@ "last_name": "Lam", "link": "http://www.facebook.com/kennethhkg", "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-08-28T02:52:22+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/535362181 b/webapp/plugins/facebook/tests/testdata/535362181 index 98af484065..388a18974a 100644 --- a/webapp/plugins/facebook/tests/testdata/535362181 +++ b/webapp/plugins/facebook/tests/testdata/535362181 @@ -5,6 +5,7 @@ "last_name": "Settlemier", "link": "http://www.facebook.com/liteguru", "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-07-31T08:22:08+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/606837591 b/webapp/plugins/facebook/tests/testdata/606837591 index fd7ba5fbae..c16040cf0c 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591 +++ b/webapp/plugins/facebook/tests/testdata/606837591 @@ -2,6 +2,7 @@ "id": "606837591", "name": "Gina Trapani", "gender": "female", + "birthday": "01/02/03", "location": { "id": "110714572282163", "name": "San Diego, California" diff --git a/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments b/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments index b65f3812f3..ce7f942314 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments +++ b/webapp/plugins/facebook/tests/testdata/606837591_153956564638648_comments @@ -5,7 +5,8 @@ "from": { "name": "Neil Kelly", "id": "653790081", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I sincerely believe that Brittany is to Glee what Creed is to The Office ... One or two lines every episode but they're alway pure comedy gold. ", "created_time": "2010-09-28T18:06:11+0000" @@ -15,7 +16,8 @@ "from": { "name": "Jeffrey McManus", "id": "691270740", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I think my cat may be reading my diary.", "created_time": "2010-09-28T18:10:13+0000" @@ -25,7 +27,8 @@ "from": { "name": "Gina Trapani", "id": "606837591", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Did you know that dolphins are just gay sharks?", "created_time": "2010-09-28T18:15:19+0000" @@ -35,7 +38,8 @@ "from": { "name": "Jeffrey McManus", "id": "691270740", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Neil, I think that Brittney is better than her one-liners! They just haven't given her her shot yet. The monologue in season 1 where she ODed on cold medicine and confessed to making out with every boy, girl and janitor in school to achieve popularity was pretty well acted.", "created_time": "2010-09-28T18:17:11+0000" @@ -45,7 +49,8 @@ "from": { "name": "Jeffrey McManus", "id": "691270740", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Also: I find recipes confusing.", "created_time": "2010-09-28T18:17:51+0000" @@ -55,7 +60,8 @@ "from": { "name": "Neil Kelly", "id": "653790081", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "My fave, although not spoken by her, is that she thinks the square root of four is rainbows. ", "created_time": "2010-09-28T18:18:18+0000" @@ -65,7 +71,8 @@ "from": { "name": "Neil Kelly", "id": "653790081", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Tonight may just be her breakout...", "created_time": "2010-09-28T18:19:28+0000" @@ -75,7 +82,8 @@ "from": { "name": "Gina Trapani", "id": "606837591", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "When I pulled my hamstring I went to a misogynist.", "created_time": "2010-09-28T18:21:14+0000" @@ -85,7 +93,8 @@ "from": { "name": "Jeffrey McManus", "id": "691270740", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Sometimes I add a teaspoon of sand.", "created_time": "2010-09-28T18:24:43+0000" @@ -95,7 +104,8 @@ "from": { "name": "Yael Kropsky", "id": "500941232", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I kind of wanted to touch *her* boobs.", "created_time": "2010-09-28T20:14:01+0000" @@ -105,7 +115,8 @@ "from": { "name": "Yael Kropsky", "id": "500941232", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Ooh, and: Sometimes I forget my middle name.", "created_time": "2010-09-28T20:18:16+0000" @@ -115,7 +126,8 @@ "from": { "name": "Neil Kelly", "id": "653790081", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Finn can fly?", "created_time": "2010-09-29T01:45:55+0000" @@ -125,7 +137,8 @@ "from": { "name": "Mitch Wagner", "id": "697015835", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Very disappointed by this episode. Starting to fear that \"Glee\" may be another \"Heroes.\"", "created_time": "2010-09-29T13:42:02+0000" @@ -135,7 +148,8 @@ "from": { "name": "Gina Trapani", "id": "606837591", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Really, Mitch? Why disappointed? Slave 4 U and One More Time were awesome. Stronger and Toxic could have been better. But overall I thought it was pretty entertaining.", "created_time": "2010-09-29T16:02:30+0000" @@ -145,7 +159,8 @@ "from": { "name": "Neil Kelly", "id": "653790081", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "It was very entertaining but felt forced - like they jammed Britney in instead of working the music into the plot. The Madonna episode felt the same way, and to a lesser extent, Lady Gaga. Maybe stop with the themes and just use the right song for the plot?", "created_time": "2010-09-29T16:08:30+0000" @@ -155,7 +170,8 @@ "from": { "name": "Jeffrey McManus", "id": "691270740", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Wait, Glee has a plot?", "created_time": "2010-09-29T16:17:08+0000" @@ -165,7 +181,8 @@ "from": { "name": "Jeffrey McManus", "id": "691270740", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Also, may I say I appreciated the internet fan service in this one. It was such a no-brainer for them to have someone say \"is this real life?\" but they did it, and I frickin' love them for that.", "created_time": "2010-09-29T16:32:21+0000" @@ -175,7 +192,8 @@ "from": { "name": "Mitch Wagner", "id": "697015835", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I'm not the target demographic for this. I don't like Britney Spears music. I barely know it.\n\nThe episode still had its moments, though. \"Is this real life\" was awesome. She had the facial expression right too. And Sue Sylvester and the principal were, of course, fantastic. Couple of great lines there.", "created_time": "2010-09-29T16:51:27+0000" @@ -185,7 +203,8 @@ "from": { "name": "Yael Kropsky", "id": "500941232", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I think Sue stole the episode (again) with Gloria Allred being her lawyer and, \"you wear more vests than the cast of Blossom.\" My main issue with Glee is the voice correction/overproduction of the songs. And not enough leotards and legwarmers. \n\nCheck out http://www.youtube.com/watch?v=W3aCAMRjuBM to see how it's done.", "created_time": "2010-09-30T14:27:39+0000" diff --git a/webapp/plugins/facebook/tests/testdata/606837591_feed b/webapp/plugins/facebook/tests/testdata/606837591_feed index ab9f714f01..480ba8386f 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_feed +++ b/webapp/plugins/facebook/tests/testdata/606837591_feed @@ -101,7 +101,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -114,7 +115,8 @@ "from": { "name": "Jeffrey McManus", "id": "691270740", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -127,7 +129,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -140,7 +143,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -153,7 +157,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -166,7 +171,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -179,7 +185,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -192,7 +199,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -205,7 +213,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -218,7 +227,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -231,7 +241,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -244,7 +255,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -257,7 +269,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -270,7 +283,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -283,7 +297,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -296,7 +311,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -309,7 +325,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -322,7 +339,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -335,7 +353,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -348,7 +367,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -361,7 +381,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -374,7 +395,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -387,7 +409,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -400,7 +423,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -413,7 +437,8 @@ "from": { "name": "Chris Moyer", "id": "501771984", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "user_likes": false, "can_remove": true, @@ -529,7 +554,8 @@ "from": { "name": "Marcy Bailey Carrico", "id": "1034402187", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "id": "606837591_435724732591_13699089" }, @@ -539,7 +565,8 @@ "from": { "name": "Gina Trapani", "id": "606837591", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "id": "606837591_435724732591_13699456" } @@ -667,7 +694,8 @@ "from": { "name": "Dan Tentler", "id": "501805642", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "id": "606837591_128550830526770_817240" }, @@ -677,7 +705,8 @@ "from": { "name": "Zack Murtha", "id": "1316858804", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "id": "606837591_128550830526770_817252" }, @@ -687,7 +716,8 @@ "from": { "name": "Marcy Bailey Carrico", "id": "1034402187", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "id": "606837591_128550830526770_818549" } @@ -773,7 +803,8 @@ "from": { "name": "Mitch Wagner", "id": "697015835", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "id": "606837591_427489887591_13559353" }, @@ -783,7 +814,8 @@ "from": { "name": "Elizabeth Lawley", "id": "24404996", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "id": "606837591_427489887591_13687827" } @@ -915,7 +947,8 @@ "from": { "name": "Mitch Wagner", "id": "697015835", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "id": "606837591_141642905870455_1143876" }, @@ -925,7 +958,8 @@ "from": { "name": "Marcy Bailey Carrico", "id": "1034402187", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "id": "606837591_141642905870455_1144238" } diff --git a/webapp/plugins/facebook/tests/testdata/606837591_friends b/webapp/plugins/facebook/tests/testdata/606837591_friends index f3b405801a..6a998dfaff 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_friends +++ b/webapp/plugins/facebook/tests/testdata/606837591_friends @@ -3,7 +3,8 @@ { "name": "Adrian Valera", "id": "833828624", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" } ] } diff --git a/webapp/plugins/facebook/tests/testdata/606837591_posts b/webapp/plugins/facebook/tests/testdata/606837591_posts index b245ef73d8..8a4ea3cbcf 100644 --- a/webapp/plugins/facebook/tests/testdata/606837591_posts +++ b/webapp/plugins/facebook/tests/testdata/606837591_posts @@ -92,7 +92,8 @@ "from": { "name": "Mitch Wagner", "id": "697015835", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I'm not the target demographic for this. I don't like Britney Spears music. I barely know it.\n\nThe episode still had its moments, though. \"Is this real life\" was awesome. She had the facial expression right too. And Sue Sylvester and the principal were, of course, fantastic. Couple of great lines there.", "created_time": "2010-09-29T16:51:27+0000" @@ -102,7 +103,8 @@ "from": { "name": "Yael Kropsky", "id": "500941232", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I think Sue stole the episode (again) with Gloria Allred being her lawyer and, \"you wear more vests than the cast of Blossom.\" My main issue with Glee is the voice correction/overproduction of the songs. And not enough leotards and legwarmers. \n\nCheck out http://www.youtube.com/watch?v=W3aCAMRjuBM to see how it's done.", "created_time": "2010-09-30T14:27:39+0000" @@ -218,7 +220,8 @@ "from": { "name": "Marcy Bailey Carrico", "id": "1034402187", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "seriously? Can we see it online? (okay, and 6 hours after the fact...) When are you going to be on national news where we can see you? I'll even turn my tv channel off of Fox News to see you ;)", "created_time": "2010-09-21T19:34:51+0000" @@ -228,7 +231,8 @@ "from": { "name": "Gina Trapani", "id": "606837591", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Oh I wasn't on! I was there to see a friend of mine do her last segment before she leaves for SF. Just kind of checking things out. Photo in the (very small, TV looks are deceiving) studio:\nhttp://www.flickr.com/photos/ginatrapani/5011175441/", "created_time": "2010-09-21T20:38:25+0000" @@ -354,7 +358,8 @@ "from": { "name": "Dan Tentler", "id": "501805642", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "depends on what channel and what the context is. \n\nI'd go on G4 probably, penn and tellers bullshit, absolutely.", "created_time": "2010-09-17T02:51:52+0000" @@ -364,7 +369,8 @@ "from": { "name": "Zack Murtha", "id": "1316858804", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I'm always hoping for the call to Max after Dark. Never seems to come though.", "created_time": "2010-09-17T02:54:11+0000" @@ -374,7 +380,8 @@ "from": { "name": "Marcy Bailey Carrico", "id": "1034402187", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "I want to see you on tv. When and what channel?", "created_time": "2010-09-17T08:19:42+0000" @@ -414,7 +421,8 @@ "from": { "name": "Kevin Purdy", "id": "677588391", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "But, Gina! He/she has something that they \"know your readers will find interesting\"!", "created_time": "2010-09-04T18:53:23+0000" @@ -463,7 +471,8 @@ "from": { "name": "Mitch Wagner", "id": "697015835", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Getting a fit bit? Let us know what you think please.", "created_time": "2010-08-29T17:03:42+0000" @@ -473,7 +482,8 @@ "from": { "name": "Elizabeth Lawley", "id": "24404996", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "/want", "created_time": "2010-09-20T03:15:39+0000" @@ -606,7 +616,8 @@ "from": { "name": "Mitch Wagner", "id": "697015835", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Delicious, delicious culinary terrorism. ", "created_time": "2010-08-11T22:35:51+0000" @@ -616,7 +627,8 @@ "from": { "name": "Marcy Bailey Carrico", "id": "1034402187", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "I have only one thing for you: www.thisiswhyyourefat.com <3", "created_time": "2010-08-11T23:49:45+0000" @@ -656,7 +668,8 @@ "from": { "name": "Kevin Purdy", "id": "677588391", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Happens all the time. Now just don't go too deep into their Facebook profiles.", "created_time": "2010-08-07T11:21:17+0000" diff --git a/webapp/plugins/facebook/tests/testdata/625158327 b/webapp/plugins/facebook/tests/testdata/625158327 index 75c28f8dee..5370c68d5e 100644 --- a/webapp/plugins/facebook/tests/testdata/625158327 +++ b/webapp/plugins/facebook/tests/testdata/625158327 @@ -6,6 +6,7 @@ "last_name": "Akmol", "link": "http://www.facebook.com/rahulnakmol", "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-07-23T13:46:30+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/641265671 b/webapp/plugins/facebook/tests/testdata/641265671 index d3b7987562..8776005832 100644 --- a/webapp/plugins/facebook/tests/testdata/641265671 +++ b/webapp/plugins/facebook/tests/testdata/641265671 @@ -5,7 +5,8 @@ "last_name": "Pike", "link": "https://www.facebook.com/tigger.pike", "username": "tigger.pike", - "gender": "female", + "gender": "female", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2011-08-26T18:55:57+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/653790081 b/webapp/plugins/facebook/tests/testdata/653790081 index e80eb83fb2..d86d564260 100644 --- a/webapp/plugins/facebook/tests/testdata/653790081 +++ b/webapp/plugins/facebook/tests/testdata/653790081 @@ -6,6 +6,7 @@ "id": "109324835754083", "name": "Buffalo, New York" }, - "gender": "male" + "gender": "male", + "birthday": "01/02/03" } diff --git a/webapp/plugins/facebook/tests/testdata/677588391 b/webapp/plugins/facebook/tests/testdata/677588391 index 4ffc0671e2..e82b6808a4 100644 --- a/webapp/plugins/facebook/tests/testdata/677588391 +++ b/webapp/plugins/facebook/tests/testdata/677588391 @@ -91,6 +91,7 @@ } ], "gender": "male", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2010-07-25T22:53:13+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/682523675 b/webapp/plugins/facebook/tests/testdata/682523675 index f8847f9e47..f6a3c3227e 100644 --- a/webapp/plugins/facebook/tests/testdata/682523675 +++ b/webapp/plugins/facebook/tests/testdata/682523675 @@ -5,7 +5,8 @@ "last_name": "Linford", "link": "https://www.facebook.com/poppynicole", "username": "poppynicole", - "gender": "female", + "gender": "female", + "birthday": "01/02/03", "locale": "en_US", "updated_time": "2011-03-28T17:48:49+0000", "type": "user" diff --git a/webapp/plugins/facebook/tests/testdata/691270740 b/webapp/plugins/facebook/tests/testdata/691270740 index 8cd163334f..8e6013eb0f 100644 --- a/webapp/plugins/facebook/tests/testdata/691270740 +++ b/webapp/plugins/facebook/tests/testdata/691270740 @@ -1,6 +1,7 @@ { "id": "691270740", "name": "Jeffrey McManus", - "gender": "male", + "gender": "male", + "birthday": "01/02/03", "type": "user" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/729597743 b/webapp/plugins/facebook/tests/testdata/729597743 index 80bccc138a..afe519f251 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743 +++ b/webapp/plugins/facebook/tests/testdata/729597743 @@ -2,5 +2,6 @@ "id": "729597743", "name": "Mark Linford", "gender": "male", + "birthday": "01/02/03", "about": "Old school proto-geek winding his way through this life" } diff --git a/webapp/plugins/facebook/tests/testdata/729597743_feed b/webapp/plugins/facebook/tests/testdata/729597743_feed index e7b36d0bfe..2739b5e688 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743_feed +++ b/webapp/plugins/facebook/tests/testdata/729597743_feed @@ -12,7 +12,8 @@ "from": { "id": "729597743", "name": "Mark Linford", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "source": "http://www.youtube.com/v/DC1g_Aq3dUc?feature=autoshare&version=3&autohide=1&autoplay=1", "caption": "Liked on www.youtube.com", diff --git a/webapp/plugins/facebook/tests/testdata/729597743_friends b/webapp/plugins/facebook/tests/testdata/729597743_friends index 03738adeb0..4d55f34473 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743_friends +++ b/webapp/plugins/facebook/tests/testdata/729597743_friends @@ -3,7 +3,8 @@ { "name": "Poppy Linford", "id": "682523675", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" } ] } diff --git a/webapp/plugins/facebook/tests/testdata/729597743_posts b/webapp/plugins/facebook/tests/testdata/729597743_posts index edb7346188..8d6bd94a0f 100644 --- a/webapp/plugins/facebook/tests/testdata/729597743_posts +++ b/webapp/plugins/facebook/tests/testdata/729597743_posts @@ -15,7 +15,8 @@ "from": { "id": "729597743", "name": "Mark Linford", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "privacy": { "description": "Friends Only", diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= b/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= index 3fc46f1ed0..9633108b4c 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= +++ b/webapp/plugins/facebook/tests/testdata/7568536355_10151728144886356_comments-limit=25-after=Njk= @@ -5,7 +5,8 @@ "from": { "name": "Justin Wall", "id": "333500103", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "RAM is free these days: http://downloadmoreram.com", "can_remove": false, @@ -18,7 +19,8 @@ "from": { "name": "Jessica A Thomas", "id": "604622899", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "ram is like cowbell, you always need more", "can_remove": false, @@ -31,7 +33,8 @@ "from": { "name": "Howard Davies", "id": "100000073694609", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "If a person is still using Windows 32bit they are wasting their money on more RAM, anyways. It will only use 3+gigs of RAM only.", "can_remove": false, @@ -43,8 +46,8 @@ "id": "437900891355_28177015", "from": { "name": "Swapnil Reloaded", - "id": "100002389208464", - "gender": "male" + "id": "10000238920, + "birthday": "01/02/03" }, "message": "Wait for DDR4 to come out ;)", "can_remove": false, @@ -57,7 +60,8 @@ "from": { "name": "Wade Stubblefield", "id": "668312109", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "I run StarCraft II and Diablo III just fine on 4 GB DDR3. If I upgraded that, I would replace it all with 4 GB DDR3 with a higher frequency.\n\nThat's important but most people have no idea about it. Higher megahertz RAM, people.", "can_remove": false, @@ -70,7 +74,8 @@ "from": { "name": "Robert Williams", "id": "100002380802361", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "or you know if youre still running a dual core intel pentium, it might be time to swap that out", "can_remove": false, @@ -83,7 +88,8 @@ "from": { "name": "Mart Marandi", "id": "100001110528726", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Ram or Lamb?", "can_remove": false, @@ -96,7 +102,8 @@ "from": { "name": "Maximilian Bocchine", "id": "1198561283", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "This article was clearly not meant for me.\n/installed 16 gigs & doing fine now", "can_remove": false, @@ -109,7 +116,8 @@ "from": { "name": "Jean-Français Carmer", "id": "796205273", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Pier-Olivier Leclair :)", "message_tags": [ @@ -131,7 +139,8 @@ "from": { "name": "Bro PanDa", "id": "100000173096804", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Well if anyone wants to add more to RAM, go to \"Computer\" and add more RAM... O_O", "can_remove": false, @@ -144,7 +153,8 @@ "from": { "name": "Jan Andrew Bloxham", "id": "555279771", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "It hasn't been the case for many years.", "can_remove": false, @@ -157,7 +167,8 @@ "from": { "name": "Roman Nahal", "id": "1023357430", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Not unless you harness the power through software via a USB. www.dramdisk.com", "can_remove": false, @@ -170,7 +181,8 @@ "from": { "name": "Sylwen Cabose", "id": "100000618350257", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "The price of ram has doubled in the pass year, why is that?", "can_remove": false, @@ -183,7 +195,8 @@ "from": { "name": "Sif Lord", "id": "100000600778454", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Pushing the Limits of Windows: Physical Memory\nhttp://blogs.technet.com/b/markrussinovich/archive/2008/07/21/3092070.aspx", "can_remove": false, @@ -196,7 +209,8 @@ "from": { "name": "Alexander Hoke", "id": "100000656926595", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Linus! :D", "can_remove": false, @@ -209,7 +223,8 @@ "from": { "name": "Mat Babyak", "id": "100002389438263", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "6gb is more than enough for even a gaming rig, more is overkill", "can_remove": false, @@ -222,7 +237,8 @@ "from": { "name": "Dapper Dab", "id": "100003025575055", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "While he has some good points... he's leaving out some good things as well...", "can_remove": false, @@ -235,7 +251,8 @@ "from": { "name": "Jonathon Wisnoski", "id": "576534241", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Well now with computers coming with 8+ gigs, I cannot think that you are likely to even used all the ram you have 99% of the time.", "can_remove": false, @@ -248,7 +265,8 @@ "from": { "name": "Mark Quitoriano", "id": "734732932", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "if only i can put 32GB of ram", "can_remove": false, @@ -261,7 +279,8 @@ "from": { "name": "Ian Graves", "id": "1549913136", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I had 32gb in my machine and most of it wasn't even used", "can_remove": false, diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments b/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments index 1a2f4a7707..9240cfef12 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437612826355_comments @@ -5,7 +5,8 @@ "from": { "name": "Danyelle Davis", "id": "672175726", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "how about those single white female heels.. that should work like a center punch ", "created_time": "2010-10-01T17:09:21+0000" @@ -15,7 +16,8 @@ "from": { "name": "Lesley Arak", "id": "711306615", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Mythbusters did a whole bit on this. If you wait for the car to fill with enough water, you can open the door and swim away.", "created_time": "2010-10-01T17:17:15+0000" @@ -25,7 +27,8 @@ "from": { "name": "David Perreko", "id": "1016922173", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "farting lots will pump out water and make the car go up", "created_time": "2010-10-01T17:18:42+0000" @@ -35,7 +38,8 @@ "from": { "name": "H\u00e5var Ingmund Henriksen \u272b", "id": "549455565", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I've heard that it also is possible/easier to kick out the windshield of the car (the front window).", "created_time": "2010-10-01T17:24:56+0000" @@ -45,7 +49,8 @@ "from": { "name": "T.j. Fogarty", "id": "1278735591", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I felt it wasn't realistic enough. I wanted to see them go 40mph into a lake and then try get out.", "created_time": "2010-10-01T17:27:49+0000" @@ -55,7 +60,8 @@ "from": { "name": "Ernst Sullivan", "id": "624306676", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Indeed T.J", "created_time": "2010-10-01T17:31:54+0000" @@ -65,7 +71,8 @@ "from": { "name": "Jacky Chan", "id": "797338851", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "just ask the mythbusters instead..", "created_time": "2010-10-01T17:37:01+0000" @@ -75,7 +82,8 @@ "from": { "name": "David Omnomnomagon Norman", "id": "657290652", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Top Gear did this aages ago. Must be a common thing shows get asked.", "created_time": "2010-10-01T17:50:09+0000" @@ -85,7 +93,8 @@ "from": { "name": "Allan Clark", "id": "100000770145448", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "A spring-loaded machinist's center punch works beautifully. It's the size of a fat ballpoint pen, and should cost less than $20. Useless against the windscreen, but works a treat on the tempered side glass. Hyperventilate, hold your breath, pop the glass, wait a bit for the water to fill the cabin, and swim out. Leave the gun, and the canolis.", "created_time": "2010-10-01T18:16:57+0000" @@ -95,7 +104,8 @@ "from": { "name": "Peggy Jantzen", "id": "1602455008", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "The Mythbusters method is on the same link. Just scroll down.", "created_time": "2010-10-01T18:22:22+0000" @@ -105,7 +115,8 @@ "from": { "name": "Edward Palmer", "id": "673353389", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "lol..considering recent current events..How about changing #1 to \"Drop Cell Phone, not ask your daughter to call the Ins. Company.\"", "created_time": "2010-10-01T18:28:32+0000" @@ -115,7 +126,8 @@ "from": { "name": "Ryan Evan Zupfer", "id": "1362247319", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "saw this on mythbusters", "created_time": "2010-10-01T19:35:55+0000" @@ -125,7 +137,8 @@ "from": { "name": "Alberto Alonso", "id": "616400947", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I love solutions to common everyday problems and hiccups, like trying to get out of a sinking car...", "created_time": "2010-10-01T23:50:23+0000" @@ -135,7 +148,8 @@ "from": { "name": "Alexander Schelasin", "id": "564811788", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Don't drive into a body of water in the first place! Jeeze.", "created_time": "2010-10-02T03:41:06+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments index 888ac7c220..df4899bd70 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_comments @@ -5,7 +5,8 @@ "from": { "name": "Matthew Fleisher", "id": "1036552729", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "The only way to make an iphone useful?", "created_time": "2010-10-02T16:13:09+0000" @@ -15,7 +16,8 @@ "from": { "name": "Harsh Wardhan Gunthey", "id": "1137640742", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "@mattews \n\nso true..!", "created_time": "2010-10-02T16:15:51+0000" @@ -25,7 +27,8 @@ "from": { "name": "Harald Chuchlik", "id": "1479111505", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Troll somewhere else", "created_time": "2010-10-02T16:44:28+0000" @@ -35,7 +38,8 @@ "from": { "name": "Chad Settlemier", "id": "535362181", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "What about iPhone 4 top ten Jailbroken apps?", "created_time": "2010-10-02T18:10:52+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes index dfebb4d6e4..2830e531a2 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437894121355_likes @@ -3,12 +3,14 @@ { "id": "100002586603826", "name": "Sade Tolgahan", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, { "id": "100000931059876", "name": "Kosso Thierry", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, ], "paging": { diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments b/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments index bec713024d..67f42d20b7 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments +++ b/webapp/plugins/facebook/tests/testdata/7568536355_437900891355_comments @@ -5,7 +5,8 @@ "from": { "name": "Kevin Hulett", "id": "1102363732", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "SBRotator and LSRotator are both great, allowing you to use your iPhone/iPod in landscape all the time! ", "created_time": "2010-10-02T16:33:35+0000" @@ -15,7 +16,8 @@ "from": { "name": "Alex Smith", "id": "667992894", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Been wondering I this is what I want to do?", "created_time": "2010-10-02T16:37:14+0000" @@ -25,7 +27,8 @@ "from": { "name": "Mohsin Saleem", "id": "1297248120", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Blackrain was the only jailbreak which was all time best.", "created_time": "2010-10-02T16:54:03+0000" @@ -35,7 +38,8 @@ "from": { "name": "Jocelyn Martina Hood", "id": "535531069", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "I admit it. My phone is not jailbroken. But that's only because I'm too chicken. What are some benefits?... Drawbacks?", "created_time": "2010-10-02T17:20:44+0000" @@ -45,7 +49,8 @@ "from": { "name": "Bj Melo", "id": "1402383719", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Can't believe you mention My3G, but not the superior 3G Unrestrictor.", "created_time": "2010-10-02T18:13:16+0000" @@ -55,7 +60,8 @@ "from": { "name": "Max Kurmayev", "id": "1605905218", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I think the LockInfo has more options than Element LockScreen Cydget by teehan and lax and it's much faster.\n\nCheck out this LockInfo install and tutorial\n\nhttp://tinyurl.com/LockInfo-iPhoneTechie", "created_time": "2010-10-02T20:05:18+0000" @@ -65,7 +71,8 @@ "from": { "name": "Adrian Valera", "id": "833828624", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Cool Top 10", "created_time": "2010-10-03T01:58:01+0000" @@ -75,7 +82,8 @@ "from": { "name": "Rahul Narasimha Akmol", "id": "625158327", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Really a good post which showed me the better amplified iphone ", "created_time": "2010-10-03T04:58:05+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_feed b/webapp/plugins/facebook/tests/testdata/7568536355_feed index baf1ce1c5e..b78e10b953 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_feed +++ b/webapp/plugins/facebook/tests/testdata/7568536355_feed @@ -50,7 +50,8 @@ "from": { "name": "Paul Cassidy", "id": "100000028811048", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Maybe you should have added a 6th box labelled \"Safe from spying by your own government\". That one would go unticked for all of them, I'd say.", "can_remove": false, @@ -63,7 +64,8 @@ "from": { "name": "Dave Myers", "id": "44100633", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Protect from everyone but the government, of course.", "can_remove": false, @@ -76,7 +78,8 @@ "from": { "name": "Dave F. Samuel", "id": "18417420", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "This is missing a 6th box... \"Hands data over to the NSA\"", "can_remove": false, @@ -89,7 +92,8 @@ "from": { "name": "Alex Wright", "id": "518042907", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Well good thing the NSA doesn't give a crap and vacuums up all the data anyway.\n\nDon't think for a SECOND that large scale corporate and government forces don't use your data against you and have been since the early 1960's. \n\nEven implying that NSA doesn't already hold all of the crypto keys to unlock ALL of the encryption standards.\n\nWhat the HELL do you think they're building this for:\n\nhttp://en.wikipedia.org/wiki/Utah_Data_Center", "can_remove": false, @@ -102,7 +106,8 @@ "from": { "name": "Ben Stanley", "id": "1046979495", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Doesn't really matter if they keep 'improving' my privacy settings, though.", "can_remove": false, @@ -115,7 +120,8 @@ "from": { "name": "Christina Rockwood", "id": "1064132204", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "\"Protecting\" my data? LOL!....interesting that i browse products on other websites only to find those exact same products appearing in the ads on my FB page later.... i wonder how FB could POSSIBLY have known the exact products i was browsing for on completely different websites.... coincidence? Doubtful... ", "can_remove": false, @@ -128,7 +134,8 @@ "from": { "name": "Sean Lancaster", "id": "22419216", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "\"everyone else, not so much\" as you proceed to show a chart showing Google and a few others with green nearly all across or all across. Are they not part of \"everyone else\"?", "can_remove": false, @@ -141,7 +148,8 @@ "from": { "name": "Jan Gvdp", "id": "61309586", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "of course you protect it, when you can sell it", "can_remove": false, @@ -154,7 +162,8 @@ "from": { "name": "Leonardo Dutra", "id": "100000047561578", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Why is Facebook on the title if Google, and others, are one step ahead?", "can_remove": false, @@ -167,7 +176,8 @@ "from": { "name": "Leo Gharapetian", "id": "1280168112", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "In progress and pending should not have a green box!", "can_remove": false, @@ -180,7 +190,8 @@ "from": { "name": "Damon Freinik", "id": "1655356726", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "If you put it on the internets kiss it goodbye...", "can_remove": false, @@ -193,7 +204,8 @@ "from": { "name": "Joe McLaughlin", "id": "100001277313216", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "The difference is, Amazon dont catalog every bit of your being for evil. They just keep a log of what you bought so you can see it later..", "can_remove": false, @@ -206,7 +218,8 @@ "from": { "name": "Joe Pepersack", "id": "556987515", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Of course they protect it. Your data is their product. If they let someone steal it, they can't sell it.", "can_remove": false, @@ -219,7 +232,8 @@ "from": { "name": "Eric Tiberius Blue", "id": "560992307", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Of course they protect it. They want to make as much money off of it as possible.... and keep it safe for the NSA to review.", "can_remove": false, @@ -232,7 +246,8 @@ "from": { "name": "Matt Stratton", "id": "500557137", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "As mentioned, by some others, the whole \"I was looking at honda.com and then Facebook showed me ads for Hondas\" is not because Facebook is spying out you. \n\nIt's because Facebook and Honda participate in a data exchange where Honda sets a cookie that Facebook (or anyone else who is part of that exchange) can read/use. \n\nIs it morally right? Dunno. Is Facebook \"tracking you without your knowledge\"? Sorta. But not the way you think it is.", "can_remove": false, @@ -245,7 +260,8 @@ "from": { "name": "Jarek Niskiewicz", "id": "100000641653272", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Sure they do, makes it so much more valuable to their clients :D", "can_remove": false, @@ -258,7 +274,8 @@ "from": { "name": "Banlu Anumart", "id": "100003784651128", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Good guy Dropbox.", "can_remove": false, @@ -271,7 +288,8 @@ "from": { "name": "Daniel Fugisawa", "id": "564295957", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Yeah, right. Just to sell it to the highest bidder for a higher price. And to give it away to all P5 + Israel intelligence services.", "can_remove": false, @@ -284,7 +302,8 @@ "from": { "name": "Meghan Carnowski", "id": "100000290596817", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Richard?", "message_tags": [ @@ -306,7 +325,8 @@ "from": { "name": "Chris Whitman", "id": "100000891619230", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "It doesn't really matter how secure their databases are if hackers just get all of the data from all of them for hacking the nsa", "can_remove": false, @@ -319,7 +339,8 @@ "from": { "name": "Michelle Genée", "id": "888230692", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Jonathan FYI", "message_tags": [ @@ -341,7 +362,8 @@ "from": { "name": "Ma Sheila A Magboo", "id": "1291663317", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Really?", "can_remove": false, @@ -354,7 +376,8 @@ "from": { "name": "Diane Thomas", "id": "1302225487", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Thank you, Brian Thomas, and Facebook crew!!! :)", "message_tags": [ @@ -376,7 +399,8 @@ "from": { "name": "Marcus Randall", "id": "1049255840", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Similar to comparing amored trucks vs pizza delivery drivers. Regardless, individuals are independant varriables when it comes to their privacy", "can_remove": false, @@ -441,7 +465,8 @@ "from": { "name": "Harald Chuchlik", "id": "1479111505", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Troll somewhere else", "created_time": "2010-10-02T16:44:28+0000" @@ -451,7 +476,8 @@ "from": { "name": "Chad Settlemier", "id": "535362181", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "What about iPhone 4 top ten Jailbroken apps?", "created_time": "2010-10-02T18:10:52+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_posts b/webapp/plugins/facebook/tests/testdata/7568536355_posts index cfed03a333..e103bae340 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_posts +++ b/webapp/plugins/facebook/tests/testdata/7568536355_posts @@ -38,7 +38,8 @@ "from": { "name": "Adrian Valera", "id": "833828624", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Cool Top 10", "created_time": "2010-10-03T01:58:01+0000" @@ -48,7 +49,8 @@ "from": { "name": "Rahul Narasimha Akmol", "id": "625158327", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Really a good post which showed me the better amplified iphone ", "created_time": "2010-10-03T04:58:05+0000" @@ -105,7 +107,8 @@ "from": { "name": "Harald Chuchlik", "id": "1479111505", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "Troll somewhere else", "created_time": "2010-10-02T16:44:28+0000" @@ -115,7 +118,8 @@ "from": { "name": "Chad Settlemier", "id": "535362181", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "What about iPhone 4 top ten Jailbroken apps?", "created_time": "2010-10-02T18:10:52+0000" diff --git a/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 b/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 index b2b9cd3e56..f194de0fd9 100644 --- a/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 +++ b/webapp/plugins/facebook/tests/testdata/7568536355_posts-limit=25-until=2010-09-29T19%3A49%3A57%2B0000-since=0 @@ -38,7 +38,8 @@ "from": { "name": "Christene Snively", "id": "100001078428730", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "message": "Five things every girl does before she meets her boyfriend - LOL!\n\nhttp://www.facebook.com/profile.php?id=164464470231080", "created_time": "2010-10-01T19:54:26+0000" @@ -48,7 +49,8 @@ "from": { "name": "Bill Goodman", "id": "1184584231", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "^^^^^^^^^^^^^^^^\nspammer", "created_time": "2010-10-01T20:35:35+0000" @@ -58,7 +60,8 @@ "from": { "name": "Kenneth Lam", "id": "533302090", - "gender": "male" + "gender": "male", + "birthday": "01/02/03" }, "message": "I use SUPER (freeware)\nhttp://www.erightsoft.com/SUPER.html", "created_time": "2010-10-02T08:19:38+0000" diff --git a/webapp/plugins/facebook/tests/testdata/833828624 b/webapp/plugins/facebook/tests/testdata/833828624 index 6fe58b6cb7..eea4f2d4a1 100644 --- a/webapp/plugins/facebook/tests/testdata/833828624 +++ b/webapp/plugins/facebook/tests/testdata/833828624 @@ -5,6 +5,7 @@ "last_name": "Valera", "link": "http://www.facebook.com/avo77", "gender": "male", + "birthday": "01/02/03", "locale": "es_LA", "updated_time": "2010-06-13T00:37:21+0000" } \ No newline at end of file diff --git a/webapp/plugins/facebook/tests/testdata/me b/webapp/plugins/facebook/tests/testdata/me index cd4308caae..7fedb5b301 100644 --- a/webapp/plugins/facebook/tests/testdata/me +++ b/webapp/plugins/facebook/tests/testdata/me @@ -4,7 +4,8 @@ "location": { "id": "110714572282163", "name": "San Diego, California", - "gender": "female" + "gender": "female", + "birthday": "01/02/03" }, "about": "Blogger and software developer. Project Director at Expert Labs. Co-host of This Week in Google." } \ No newline at end of file From 6f6494d2d7662c3b6893c20b11d5854bfb705081 Mon Sep 17 00:00:00 2001 From: anna Date: Mon, 16 Jun 2014 16:20:21 +0300 Subject: [PATCH 11/40] getAgeOfFavoriters and getAgeOfCommenters functions added --- logs/access.log | 321 ++++++++++++++++++ logs/error.log | 12 + .../_lib/dao/class.FavoritePostMySQLDAO.php | 55 +++ webapp/_lib/dao/interface.FavoritePostDAO.php | 17 +- .../sql/build-db_mysql-upcoming-release.sql | 4 +- webapp/install/sql/build-db_mysql.sql | 1 + ....FacebookPluginConfigurationController.php | 2 +- .../insights/genderanalysis.php | 2 +- 8 files changed, 408 insertions(+), 6 deletions(-) diff --git a/logs/access.log b/logs/access.log index b63daccdee..1ced1d5518 100644 --- a/logs/access.log +++ b/logs/access.log @@ -2415,3 +2415,324 @@ 127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" 127.0.0.1 - - [15/Jun/2014:21:41:50 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 1906 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" 127.0.0.1 - - [15/Jun/2014:21:42:18 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 1906 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:08 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 1695 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:13 +0300] "GET /assets/css/style.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:13 +0300] "GET /assets/css/jquery-ui-1.8.13.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:13 +0300] "GET /assets/css/base.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:13 +0300] "GET /assets/css/installer.css HTTP/1.1" 200 1213 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:13 +0300] "GET /assets/js/jquery.min-1.4.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:13 +0300] "GET /assets/js/jquery-ui.min-1.8.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:40 +0300] "GET /session/login.php HTTP/1.1" 200 1695 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:42 +0300] "GET /session/login.php HTTP/1.1" 200 1694 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:46 +0300] "GET /s HTTP/1.1" 404 493 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:47 +0300] "GET /favicon.ico HTTP/1.1" 404 499 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:48 +0300] "GET / HTTP/1.1" 200 1694 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:28:56 +0300] "GET / HTTP/1.1" 200 1695 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:29:04 +0300] "GET /session/login.php HTTP/1.1" 200 1695 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:29:14 +0300] "GET /session/login.php HTTP/1.1" 200 1695 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:29:55 +0300] "GET /install/ HTTP/1.1" 200 1927 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:29:56 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 1694 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:29:56 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:32:08 +0300] "GET / HTTP/1.1" 200 2026 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:32:16 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:32:47 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:32:51 +0300] "GET /session/login.php HTTP/1.1" 200 2309 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:32:54 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:32:57 +0300] "GET /session/login.php HTTP/1.1" 200 2309 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:32:59 +0300] "POST /session/login.php HTTP/1.1" 200 2422 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:52 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:52 +0300] "GET / HTTP/1.1" 200 2525 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:53 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:53 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:53 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:55 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17314 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:36:57 +0300] "GET /assets/flash/clippy.swf HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:06 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=1702163342539ebab4af5d63.20339842 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17572 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:07 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:08 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:11 +0300] "GET /account/?p=facebook&code=AQD0p3OeeUXFVhbBwg6y-xLzunBcMzvJJa0-2ckVJ7IkR57W6H2OdlUjQNQNqYUrMa5ptz9yI1nBHPRWLy_t8kX5gi-LhtBPB7of6MptI-H3F1JEbp16rTA39OynCxX3UEehrGm0SUG7WwSC5iEfnu3qKaNhD89eM2MC10ChjPkBU8Vlbjd2stLXrbZzt48sN10v_Tnkl2EDy7KKE_6U95_jRPLDFjLQwC8nCcyG_l1LMkZ0vkBt2LepM1DK_U6nCG-j0TCjAVpYHnuE_BBYa7DmHTZf7_3rsEM4t7O2M2L1Jm4cHRCur5flfbUR0Te65mQ&state=2783f0deef58898374cc41bc5b9b82b7 HTTP/1.1" 200 15969 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:37:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQD0p3OeeUXFVhbBwg6y-xLzunBcMzvJJa0-2ckVJ7IkR57W6H2OdlUjQNQNqYUrMa5ptz9yI1nBHPRWLy_t8kX5gi-LhtBPB7of6MptI-H3F1JEbp16rTA39OynCxX3UEehrGm0SUG7WwSC5iEfnu3qKaNhD89eM2MC10ChjPkBU8Vlbjd2stLXrbZzt48sN10v_Tnkl2EDy7KKE_6U95_jRPLDFjLQwC8nCcyG_l1LMkZ0vkBt2LepM1DK_U6nCG-j0TCjAVpYHnuE_BBYa7DmHTZf7_3rsEM4t7O2M2L1Jm4cHRCur5flfbUR0Te65mQ&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:52:48 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:53:21 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:53:37 +0300] "GET /session/login.php HTTP/1.1" 200 2601 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:53:39 +0300] "POST /session/login.php HTTP/1.1" 200 2709 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:53:41 +0300] "GET /session/forgot.php HTTP/1.1" 200 761 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:53:46 +0300] "GET /session/login.php HTTP/1.1" 200 2600 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:57:48 +0300] "POST /session/login.php HTTP/1.1" 200 2525 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:57:49 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:57:49 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:57:49 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:57:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:57:51 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17294 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:57:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:28 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=1702163342539ebab4af5d63.20339842 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17553 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:29 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:30 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:30 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:12:58:30 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:01:16 +0300] "GET /account/?p=facebook&code=AQDUXUwpQXsC-ngQYgEWIqClTr5cOw9aP_znewqAUMdLC2kUYyOztgAqoQy6ZGjdamwS8YYdXSbTa9Q27feVjGfiWTcAh28FB_zbqgnxULpc81T-Unl1jAfs7A0lBoI2-2Jc92kFLgLH5deyFM8hBb-uon0jxYFGl4CtaaMURPrKV261WPyeljsQ68TT0SZHIS_OM0esyCGUTckSKp0lkiKKW-oe8QIUW4KUSBk3iwNAEMXXXhu_Kdl1weCcFWnfr-ziNczknPYib7zLibOpBe3Nz9qA43aFar8VmyGMM_zVTH_HCnYwpiwSO0WBvfUtoFY&state=2783f0deef58898374cc41bc5b9b82b7 HTTP/1.1" 200 18761 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:01:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQDUXUwpQXsC-ngQYgEWIqClTr5cOw9aP_znewqAUMdLC2kUYyOztgAqoQy6ZGjdamwS8YYdXSbTa9Q27feVjGfiWTcAh28FB_zbqgnxULpc81T-Unl1jAfs7A0lBoI2-2Jc92kFLgLH5deyFM8hBb-uon0jxYFGl4CtaaMURPrKV261WPyeljsQ68TT0SZHIS_OM0esyCGUTckSKp0lkiKKW-oe8QIUW4KUSBk3iwNAEMXXXhu_Kdl1weCcFWnfr-ziNczknPYib7zLibOpBe3Nz9qA43aFar8VmyGMM_zVTH_HCnYwpiwSO0WBvfUtoFY&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:01:25 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/account/?p=facebook&code=AQDUXUwpQXsC-ngQYgEWIqClTr5cOw9aP_znewqAUMdLC2kUYyOztgAqoQy6ZGjdamwS8YYdXSbTa9Q27feVjGfiWTcAh28FB_zbqgnxULpc81T-Unl1jAfs7A0lBoI2-2Jc92kFLgLH5deyFM8hBb-uon0jxYFGl4CtaaMURPrKV261WPyeljsQ68TT0SZHIS_OM0esyCGUTckSKp0lkiKKW-oe8QIUW4KUSBk3iwNAEMXXXhu_Kdl1weCcFWnfr-ziNczknPYib7zLibOpBe3Nz9qA43aFar8VmyGMM_zVTH_HCnYwpiwSO0WBvfUtoFY&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:01:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:01:25 +0300] "GET /crawler/run.php HTTP/1.1" 200 2379 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:20:00 +0300] "GET / HTTP/1.1" 200 2989 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:20:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:21:03 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:21:03 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:21:03 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:23:08 +0300] "GET / HTTP/1.1" 200 3752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:23:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:23:22 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-16&s=gender_analysis HTTP/1.1" 200 3510 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:23:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-16&s=gender_analysis" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:23:28 +0300] "GET / HTTP/1.1" 200 3752 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-16&s=gender_analysis" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:23:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:37:01 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:37:02 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:37:02 +0300] "GET /crawler/run.php HTTP/1.1" 200 1748 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:38:40 +0300] "GET / HTTP/1.1" 200 3750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:38:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:38:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:38:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:38:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2102 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:40:31 +0300] "GET / HTTP/1.1" 200 3750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:40:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:50:20 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:50:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:50:21 +0300] "GET /crawler/run.php HTTP/1.1" 200 1748 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:50:33 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:50:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:50:34 +0300] "GET /crawler/run.php HTTP/1.1" 200 2103 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:52:55 +0300] "GET / HTTP/1.1" 200 3754 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:52:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:55:06 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:55:07 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:55:07 +0300] "GET /crawler/run.php HTTP/1.1" 200 2154 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:58:34 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:58:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:13:58:34 +0300] "GET /crawler/run.php HTTP/1.1" 200 2159 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:08:03 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:08:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:08:04 +0300] "GET /crawler/run.php HTTP/1.1" 200 2155 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:11:56 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:11:57 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:11:57 +0300] "GET /crawler/run.php HTTP/1.1" 200 2157 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:26:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:26:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:26:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2390 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:36:11 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:36:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:36:11 +0300] "GET /crawler/run.php HTTP/1.1" 200 2154 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:39:28 +0300] "GET / HTTP/1.1" 200 3752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:39:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:52:23 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:52:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:52:23 +0300] "GET /crawler/run.php HTTP/1.1" 200 2154 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:57:14 +0300] "GET /account/?m=manage HTTP/1.1" 200 15241 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:57:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:57:19 +0300] "GET /account/?p=facebook HTTP/1.1" 200 18732 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:57:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:57:31 +0300] "POST /account/?p=facebook HTTP/1.1" 200 17592 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:57:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:07 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=224721057725693&id_option_facebook_app_id=3&option_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&id_option_facebook_api_secret=4&option_max_crawl_time=20&id_option_max_crawl_time=5&csrf_token=1702163342539ebab4af5d63.20339842 HTTP/1.1" 200 522 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:08 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17556 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:08 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:08 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:08 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:08 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:09 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:21 +0300] "GET /account/?p=facebook&code=AQDA4w1w4FoCv5bQk29Rx4Tg29lDMAmsYhxPsCNc4rj5YouKa_kBgyY0ZO9unaQ8IIrbFaceH2Vq_xxG3fw4SNoAUBLepuqROdOH5ltO6FKOJEaBmGVCdx207OXoOIyOEkMO8FdsSR1wl3ONfDyTt2SqJDXoILqCBWnd8f1KPwH8dd-R17Rv3adtEdRRueXATnq7NTlFBaSTwTBIO_P8XSxsgdo3GJsZU4QR_EK2oqcSbbdl0yP7MKlAhQttnkTH20zfxhPBASBEF7By2q2VjwBDXpktu9VeuBLgMhEr2Lg_3PsAmU8A2X1DQUDtngzPwVg&state=2783f0deef58898374cc41bc5b9b82b7 HTTP/1.1" 200 18760 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQDA4w1w4FoCv5bQk29Rx4Tg29lDMAmsYhxPsCNc4rj5YouKa_kBgyY0ZO9unaQ8IIrbFaceH2Vq_xxG3fw4SNoAUBLepuqROdOH5ltO6FKOJEaBmGVCdx207OXoOIyOEkMO8FdsSR1wl3ONfDyTt2SqJDXoILqCBWnd8f1KPwH8dd-R17Rv3adtEdRRueXATnq7NTlFBaSTwTBIO_P8XSxsgdo3GJsZU4QR_EK2oqcSbbdl0yP7MKlAhQttnkTH20zfxhPBASBEF7By2q2VjwBDXpktu9VeuBLgMhEr2Lg_3PsAmU8A2X1DQUDtngzPwVg&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:30 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/account/?p=facebook&code=AQDA4w1w4FoCv5bQk29Rx4Tg29lDMAmsYhxPsCNc4rj5YouKa_kBgyY0ZO9unaQ8IIrbFaceH2Vq_xxG3fw4SNoAUBLepuqROdOH5ltO6FKOJEaBmGVCdx207OXoOIyOEkMO8FdsSR1wl3ONfDyTt2SqJDXoILqCBWnd8f1KPwH8dd-R17Rv3adtEdRRueXATnq7NTlFBaSTwTBIO_P8XSxsgdo3GJsZU4QR_EK2oqcSbbdl0yP7MKlAhQttnkTH20zfxhPBASBEF7By2q2VjwBDXpktu9VeuBLgMhEr2Lg_3PsAmU8A2X1DQUDtngzPwVg&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:30 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:14:58:30 +0300] "GET /crawler/run.php HTTP/1.1" 200 2166 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:01:54 +0300] "GET /account/?m=manage HTTP/1.1" 200 15241 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:01:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:01:58 +0300] "GET /account/?p=facebook HTTP/1.1" 200 18727 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:02:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:02:04 +0300] "POST /account/?p=facebook HTTP/1.1" 200 17590 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:02:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:09 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&id_option_facebook_app_id=3&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&id_option_facebook_api_secret=4&option_max_crawl_time=20&id_option_max_crawl_time=5&csrf_token=1702163342539ebab4af5d63.20339842 HTTP/1.1" 200 522 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:10 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17557 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:11 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:38 +0300] "GET /account/?p=facebook&code=AQC569lFa9l2LNuiZOnRwtoveI9Em2AgI3JAXHljQQjSJXe77F0COWW_Q2wNm0au3iTGAgsqjg4qXPSL90tHjqr5HVA8jnMVXDFkmJRyMVYvPANpUu-yLU59PhYNTWgg81Pf8rT7COjhOwMUt1dKGWjc3LHOa_STXGAdV12f2_wwaXUXcnp8-kNqdR0yz0NTwqNW6uUI27O48_dgf1E3aUQstN4K6fxtqI5n7Is_RqRt-KwiT56UsP14uUYfN0edTp3sLfmLMMFqi-2t2YHgfTUBRnKHz7qd4E9bToQqLqAqrQ5AU73xzNyu0icOO5E9p5c&state=2783f0deef58898374cc41bc5b9b82b7 HTTP/1.1" 200 18763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQC569lFa9l2LNuiZOnRwtoveI9Em2AgI3JAXHljQQjSJXe77F0COWW_Q2wNm0au3iTGAgsqjg4qXPSL90tHjqr5HVA8jnMVXDFkmJRyMVYvPANpUu-yLU59PhYNTWgg81Pf8rT7COjhOwMUt1dKGWjc3LHOa_STXGAdV12f2_wwaXUXcnp8-kNqdR0yz0NTwqNW6uUI27O48_dgf1E3aUQstN4K6fxtqI5n7Is_RqRt-KwiT56UsP14uUYfN0edTp3sLfmLMMFqi-2t2YHgfTUBRnKHz7qd4E9bToQqLqAqrQ5AU73xzNyu0icOO5E9p5c&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:52 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/account/?p=facebook&code=AQC569lFa9l2LNuiZOnRwtoveI9Em2AgI3JAXHljQQjSJXe77F0COWW_Q2wNm0au3iTGAgsqjg4qXPSL90tHjqr5HVA8jnMVXDFkmJRyMVYvPANpUu-yLU59PhYNTWgg81Pf8rT7COjhOwMUt1dKGWjc3LHOa_STXGAdV12f2_wwaXUXcnp8-kNqdR0yz0NTwqNW6uUI27O48_dgf1E3aUQstN4K6fxtqI5n7Is_RqRt-KwiT56UsP14uUYfN0edTp3sLfmLMMFqi-2t2YHgfTUBRnKHz7qd4E9bToQqLqAqrQ5AU73xzNyu0icOO5E9p5c&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:03:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2159 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:07:18 +0300] "GET /account/?m=manage HTTP/1.1" 200 15241 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:07:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:07:22 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17860 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:07:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:07:29 +0300] "POST /account/?p=facebook HTTP/1.1" 200 17591 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:07:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:39 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=346221835525045&id_option_facebook_app_id=3&option_facebook_api_secret=3f251337b1131a9c4a6ef18cd76c935d&id_option_facebook_api_secret=4&option_max_crawl_time=20&id_option_max_crawl_time=5&csrf_token=1702163342539ebab4af5d63.20339842 HTTP/1.1" 200 522 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:40 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17558 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:09:41 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:10:34 +0300] "GET /account/?p=facebook&code=AQBfCjjrSZK_wiqwBTF_yd5__FR0s1Ly260ujfrzkw7LvxLu_rLeEw4DqNpmT8T6zCpq1yIc8IxnOPaMHWp5o8fwPVaHvYyy39b_vh7iOJQ5o6l1qwp0hTbCsb9lVkYnj1nu-2u3FMfGqrveJNTpFRNcy3bPkawpQyitKYKnzCXzBYNxYZcOwSDKHNwfoBxgHhyzCMIBfGe6hQc5nANjK4vtCrjHnJpqp8o3Eecc9X37yjERyzZLGSd3QyLj7chgS3R-fLBBJlaPgD1S4taAg7Q_1OxSbuCSogkH7TGYJEYU-80NKDnDt8pm4JgqbE7CR8c&state=2783f0deef58898374cc41bc5b9b82b7 HTTP/1.1" 200 18763 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:10:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQBfCjjrSZK_wiqwBTF_yd5__FR0s1Ly260ujfrzkw7LvxLu_rLeEw4DqNpmT8T6zCpq1yIc8IxnOPaMHWp5o8fwPVaHvYyy39b_vh7iOJQ5o6l1qwp0hTbCsb9lVkYnj1nu-2u3FMfGqrveJNTpFRNcy3bPkawpQyitKYKnzCXzBYNxYZcOwSDKHNwfoBxgHhyzCMIBfGe6hQc5nANjK4vtCrjHnJpqp8o3Eecc9X37yjERyzZLGSd3QyLj7chgS3R-fLBBJlaPgD1S4taAg7Q_1OxSbuCSogkH7TGYJEYU-80NKDnDt8pm4JgqbE7CR8c&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:10:44 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/account/?p=facebook&code=AQBfCjjrSZK_wiqwBTF_yd5__FR0s1Ly260ujfrzkw7LvxLu_rLeEw4DqNpmT8T6zCpq1yIc8IxnOPaMHWp5o8fwPVaHvYyy39b_vh7iOJQ5o6l1qwp0hTbCsb9lVkYnj1nu-2u3FMfGqrveJNTpFRNcy3bPkawpQyitKYKnzCXzBYNxYZcOwSDKHNwfoBxgHhyzCMIBfGe6hQc5nANjK4vtCrjHnJpqp8o3Eecc9X37yjERyzZLGSd3QyLj7chgS3R-fLBBJlaPgD1S4taAg7Q_1OxSbuCSogkH7TGYJEYU-80NKDnDt8pm4JgqbE7CR8c&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:10:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:10:45 +0300] "GET /crawler/run.php HTTP/1.1" 200 2158 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:14:08 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:14:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:14:09 +0300] "GET /crawler/run.php HTTP/1.1" 200 2155 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:16:42 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:16:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:18:14 +0300] "GET /account/?m=manage HTTP/1.1" 200 15241 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:18:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:18:18 +0300] "GET /account/?p=facebook HTTP/1.1" 200 18730 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:18:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:18:24 +0300] "POST /account/?p=facebook HTTP/1.1" 200 17591 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:18:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:36 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=224721057725693&id_option_facebook_app_id=3&option_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&id_option_facebook_api_secret=4&option_max_crawl_time=20&id_option_max_crawl_time=5&csrf_token=1702163342539ebab4af5d63.20339842 HTTP/1.1" 200 522 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17556 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:38 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:42 +0300] "GET /account/?p=facebook&code=AQCKN_bMC8SypXkekN2x8Cakr8Z30F2FOIZyStMsbSS3w5pWr9uPQx-q-l_qCoG__dQzi9TYelnEQquaMknibozNqeNHTWonNHa_0Lj1nhBeDl50quSoJWjFsJT2a6fsHPu5_IaqscGdWN0AlHI3eI-qRWAIpPkPmt5dlSdgTretp9_JmRY8_yUBoOKkLvS-2qL-2pRD2NY4PMQqbE_npFf_AVJSkOnVoucUkNqzrlWFmWuXxQdmpfe2EGCRwKm3-D5KyuESWNoAfLx99jUmgUQRKcPOFFbrVGP80PQbr-fWN9-fV4FaEhkAbxord1okVyA&state=2783f0deef58898374cc41bc5b9b82b7 HTTP/1.1" 200 18760 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQCKN_bMC8SypXkekN2x8Cakr8Z30F2FOIZyStMsbSS3w5pWr9uPQx-q-l_qCoG__dQzi9TYelnEQquaMknibozNqeNHTWonNHa_0Lj1nhBeDl50quSoJWjFsJT2a6fsHPu5_IaqscGdWN0AlHI3eI-qRWAIpPkPmt5dlSdgTretp9_JmRY8_yUBoOKkLvS-2qL-2pRD2NY4PMQqbE_npFf_AVJSkOnVoucUkNqzrlWFmWuXxQdmpfe2EGCRwKm3-D5KyuESWNoAfLx99jUmgUQRKcPOFFbrVGP80PQbr-fWN9-fV4FaEhkAbxord1okVyA&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:59 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/account/?p=facebook&code=AQCKN_bMC8SypXkekN2x8Cakr8Z30F2FOIZyStMsbSS3w5pWr9uPQx-q-l_qCoG__dQzi9TYelnEQquaMknibozNqeNHTWonNHa_0Lj1nhBeDl50quSoJWjFsJT2a6fsHPu5_IaqscGdWN0AlHI3eI-qRWAIpPkPmt5dlSdgTretp9_JmRY8_yUBoOKkLvS-2qL-2pRD2NY4PMQqbE_npFf_AVJSkOnVoucUkNqzrlWFmWuXxQdmpfe2EGCRwKm3-D5KyuESWNoAfLx99jUmgUQRKcPOFFbrVGP80PQbr-fWN9-fV4FaEhkAbxord1okVyA&state=2783f0deef58898374cc41bc5b9b82b7" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:19:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:20:20 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:20:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:20:21 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:20:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:20:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:20:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:21:32 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:21:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:21:33 +0300] "GET /crawler/run.php HTTP/1.1" 200 2257 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:59:50 +0300] "GET / HTTP/1.1" 200 4286 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [16/Jun/2014:15:59:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" diff --git a/logs/error.log b/logs/error.log index a1737d15c2..9bb022efca 100644 --- a/logs/error.log +++ b/logs/error.log @@ -112,3 +112,15 @@ [Sun Jun 15 11:19:34 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ [Sun Jun 15 12:21:49 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ [Sun Jun 15 12:28:26 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ +[Mon Jun 16 12:28:46 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/s +[Mon Jun 16 12:28:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/favicon.ico +[Mon Jun 16 12:37:11 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Mon Jun 16 12:53:37 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '/var/www/ThinkU...')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/install/index.php?step=3 +[Mon Jun 16 12:53:39 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '/var/www/ThinkU...')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/session/login.php +[Mon Jun 16 12:53:41 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/session/login.php +[Mon Jun 16 12:53:46 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '/var/www/ThinkU...')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/install/index.php?step=3 +[Mon Jun 16 13:01:16 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Mon Jun 16 14:58:21 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided. +[Mon Jun 16 15:03:39 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook +[Mon Jun 16 15:10:34 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided. +[Mon Jun 16 15:19:42 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook diff --git a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php index 5f0543dd97..057b20ed24 100755 --- a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php +++ b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php @@ -442,6 +442,7 @@ public function getGenderOfFavoriters($post_id) { } return $gender; } + public function getGenderOfCommenters($post_id) { $q = "SELECT #prefix#users.gender, COUNT(*) as count_gender FROM #prefix#posts, #prefix#users "; $q .= "WHERE #prefix#posts.in_reply_to_post_id = :post_id "; @@ -467,4 +468,58 @@ public function getGenderOfCommenters($post_id) { } return $gender; } + + public function getAgeOfFavoriters($post_id) { + $q = "SELECT #prefix#users.birthday as birthday FROM #prefix#favorites, #prefix#users "; + $q .= "WHERE #prefix#favorites.post_id = :post_id "; + $q .= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; + $q .= "GROUP BY #prefix#users.birthday"; + + $vars = array ( + ':post_id' => $post_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + echo "res=" . Utils::varDumpToString($rows) . "\n"; + $age = array (); + foreach ( $rows as $row ) { + $age ['fav_birthday'] = $row ['birthday']; + /* if ($row ['gender'] == "female") + $gender ['female_likes_count'] = $row ['count_gender']; + if ($row ['gender'] == "male") + $gender ['male_likes_count'] = $row ['count_gender']; */ + } + return $age; + } + + public function getAgeOfCommenters($post_id) { + $q = "SELECT #prefix#users.birthday as birthday FROM #prefix#posts, #prefix#users "; + $q .= "WHERE #prefix#posts.in_reply_to_post_id = :post_id "; + $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; + $q .= "GROUP BY #prefix#users.birthday"; + + $vars = array ( + ':post_id' => $post_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + // echo "res=" . Utils::varDumpToString($rows) . "\n"; + $age = array (); + foreach ( $rows as $row ) { + $age ['comm_birthday'] = $row ['birthday']; + /* if ($row ['gender'] == "female") + $gender ['female_comm_count'] = $row ['count_gender']; + if ($row ['gender'] == "male") + $gender ['male_comm_count'] = $row ['count_gender']; */ + } + return $age; + } } diff --git a/webapp/_lib/dao/interface.FavoritePostDAO.php b/webapp/_lib/dao/interface.FavoritePostDAO.php index dda51575bf..3362657e85 100755 --- a/webapp/_lib/dao/interface.FavoritePostDAO.php +++ b/webapp/_lib/dao/interface.FavoritePostDAO.php @@ -128,8 +128,21 @@ public function getFavoritesFromOneYearAgo($fav_of_user_id, $network, $from_date * @return array User objects */ public function getUsersWhoFavoritedMostOfYourPosts($author_user_id, $network, $last_x_days); - + /** + * Get gender of users who favorited post. + * @param $post_id + * @return array with count of female and male favorites + */ public function getGenderOfFavoriters($post_id); - + /** + * Get gender of users who commented post. + * @param $post_id + * @return array with count of female and male comments + */ public function getGenderOfCommenters($post_id); + + public function getAgeOfFavoriters($post_id); + + public function getAgeOfCommenters($post_id); + } \ No newline at end of file diff --git a/webapp/install/sql/build-db_mysql-upcoming-release.sql b/webapp/install/sql/build-db_mysql-upcoming-release.sql index b046251975..e0b0c627a2 100644 --- a/webapp/install/sql/build-db_mysql-upcoming-release.sql +++ b/webapp/install/sql/build-db_mysql-upcoming-release.sql @@ -549,6 +549,8 @@ CREATE TABLE tu_users ( user_name varchar(255) NOT NULL COMMENT 'Username on a given network, like a user''s Twitter username or Facebook user name.', full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', + gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', + birthday varchar(255) DEFAULT NULL COMMENT 'Birthday of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', @@ -564,8 +566,6 @@ CREATE TABLE tu_users ( last_post_id varchar(80) NOT NULL DEFAULT '' COMMENT 'Network post ID of the latest post the user authored.', network varchar(20) NOT NULL DEFAULT 'twitter' COMMENT 'Originating network in lower case, i.e., twitter or facebook.', favorites_count int(11) DEFAULT NULL COMMENT 'Total number of posts the user has favorited.', - gender varchar(255) DEFAULT NULL, - birthday varchar(255) DEFAULT NULL, PRIMARY KEY (id), UNIQUE KEY user_id (user_id,network) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Service user details.'; diff --git a/webapp/install/sql/build-db_mysql.sql b/webapp/install/sql/build-db_mysql.sql index 70a7a90807..4145943d95 100644 --- a/webapp/install/sql/build-db_mysql.sql +++ b/webapp/install/sql/build-db_mysql.sql @@ -527,6 +527,7 @@ CREATE TABLE tu_users ( full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', + birthday varchar(255) DEFAULT NULL COMMENT 'Birthday of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', diff --git a/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php b/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php index d23275c899..c69e16a07b 100644 --- a/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php +++ b/webapp/plugins/facebook/controller/class.FacebookPluginConfigurationController.php @@ -125,7 +125,7 @@ protected function setUpFacebookInteractions($options) { if ($this->do_show_add_button) { $params = array('scope'=>'read_stream,user_birthday,user_likes,user_location,user_website,'. - 'read_friendlists,friends_location,manage_pages,read_insights,manage_pages', + 'read_friendlists,friends_birthday,friends_location,manage_pages,read_insights,manage_pages', 'state'=>SessionCache::get('facebook_auth_csrf'), 'redirect_uri'=> (Utils::getApplicationURL(). 'account/?p=facebook') ); diff --git a/webapp/plugins/insightsgenerator/insights/genderanalysis.php b/webapp/plugins/insightsgenerator/insights/genderanalysis.php index d87b499e5a..d74ea49505 100644 --- a/webapp/plugins/insightsgenerator/insights/genderanalysis.php +++ b/webapp/plugins/insightsgenerator/insights/genderanalysis.php @@ -42,7 +42,7 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number $insight_baseline_dao = DAOFactory::getDAO ( 'InsightBaselineDAO' ); $filename = basename ( __FILE__, ".php" ); - if (self::shouldGenerateInsight('gender_analysis', $instance)) { + if (self::shouldGenerateInsight('gender_analysis', $instance, $regenerate_existing_insight=true)) { $post_dao = DAOFactory::getDAO ( 'PostDAO' ); $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); From d292ab0fe7acf7b90e411d43bbc8dbbcb3a2910a Mon Sep 17 00:00:00 2001 From: anna Date: Tue, 17 Jun 2014 08:47:05 +0300 Subject: [PATCH 12/40] chenged domentation --- logs/access.log | 48 +++++++++++++++++++ .../_lib/dao/class.FavoritePostMySQLDAO.php | 12 +---- webapp/_lib/dao/interface.FavoritePostDAO.php | 16 +++++-- 3 files changed, 62 insertions(+), 14 deletions(-) diff --git a/logs/access.log b/logs/access.log index 1ced1d5518..5d285f3d8d 100644 --- a/logs/access.log +++ b/logs/access.log @@ -2736,3 +2736,51 @@ 127.0.0.1 - - [16/Jun/2014:15:21:33 +0300] "GET /crawler/run.php HTTP/1.1" 200 2257 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" 127.0.0.1 - - [16/Jun/2014:15:59:50 +0300] "GET / HTTP/1.1" 200 4286 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" 127.0.0.1 - - [16/Jun/2014:15:59:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:27:39 +0300] "GET / HTTP/1.1" 200 2310 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:27:45 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET / HTTP/1.1" 200 2368 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16992 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3077 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3135 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:58 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10535 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:59 +0300] "GET /assets/img/favicon.png HTTP/1.1" 200 852 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:31:59 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/assets/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:18 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:18 +0300] "GET / HTTP/1.1" 200 4286 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:18 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 200 1732 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:18 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 200 48712 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:18 +0300] "GET /assets/js/linkify.js HTTP/1.1" 200 1162 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:18 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 200 456 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:40 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-16&s=gender_analysis HTTP/1.1" 200 3514 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-16&s=gender_analysis" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:47 +0300] "GET / HTTP/1.1" 200 4287 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-16&s=gender_analysis" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:32:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:29.0) Gecko/20100101 Firefox/29.0" +127.0.0.1 - - [17/Jun/2014:08:33:16 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:20 +0300] "POST /session/login.php HTTP/1.1" 302 550 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:20 +0300] "GET / HTTP/1.1" 200 4286 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:20 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:20 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:21 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:21 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:23 +0300] "GET / HTTP/1.1" 200 4286 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:24 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:34 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:34 +0300] "GET /crawler/run.php HTTP/1.1" 200 3046 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" +127.0.0.1 - - [17/Jun/2014:08:33:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" diff --git a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php index 057b20ed24..658c6f4604 100755 --- a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php +++ b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php @@ -469,7 +469,7 @@ public function getGenderOfCommenters($post_id) { return $gender; } - public function getAgeOfFavoriters($post_id) { + public function getBirthdayOfFavoriters($post_id) { $q = "SELECT #prefix#users.birthday as birthday FROM #prefix#favorites, #prefix#users "; $q .= "WHERE #prefix#favorites.post_id = :post_id "; $q .= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; @@ -488,15 +488,11 @@ public function getAgeOfFavoriters($post_id) { $age = array (); foreach ( $rows as $row ) { $age ['fav_birthday'] = $row ['birthday']; - /* if ($row ['gender'] == "female") - $gender ['female_likes_count'] = $row ['count_gender']; - if ($row ['gender'] == "male") - $gender ['male_likes_count'] = $row ['count_gender']; */ } return $age; } - public function getAgeOfCommenters($post_id) { + public function getBirthdayOfCommenters($post_id) { $q = "SELECT #prefix#users.birthday as birthday FROM #prefix#posts, #prefix#users "; $q .= "WHERE #prefix#posts.in_reply_to_post_id = :post_id "; $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; @@ -515,10 +511,6 @@ public function getAgeOfCommenters($post_id) { $age = array (); foreach ( $rows as $row ) { $age ['comm_birthday'] = $row ['birthday']; - /* if ($row ['gender'] == "female") - $gender ['female_comm_count'] = $row ['count_gender']; - if ($row ['gender'] == "male") - $gender ['male_comm_count'] = $row ['count_gender']; */ } return $age; } diff --git a/webapp/_lib/dao/interface.FavoritePostDAO.php b/webapp/_lib/dao/interface.FavoritePostDAO.php index 3362657e85..63692b3960 100755 --- a/webapp/_lib/dao/interface.FavoritePostDAO.php +++ b/webapp/_lib/dao/interface.FavoritePostDAO.php @@ -140,9 +140,17 @@ public function getGenderOfFavoriters($post_id); * @return array with count of female and male comments */ public function getGenderOfCommenters($post_id); - - public function getAgeOfFavoriters($post_id); - - public function getAgeOfCommenters($post_id); + /** + * Get bithday of users who favorited post. + * @param $post_id + * @return array with favoriter's birthdays + */ + public function getBirthdayOfFavoriters($post_id); + /** + * Get bithday of users who commented post. + * @param $post_id + * @return array with commenter's birthdays + */ + public function getBirthdayOfCommenters($post_id); } \ No newline at end of file From d5cf196d4cba16ba0f0ba3ddf6984ae3994c4f40 Mon Sep 17 00:00:00 2001 From: anna Date: Tue, 17 Jun 2014 17:50:58 +0300 Subject: [PATCH 13/40] call gender analysis every day --- .../insightsgenerator/insights/biggestfans.php | 2 +- .../insightsgenerator/insights/genderanalysis.php | 13 +++++++------ .../model/class.InsightPluginParent.php | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/webapp/plugins/insightsgenerator/insights/biggestfans.php b/webapp/plugins/insightsgenerator/insights/biggestfans.php index 045dd14f92..a8f1c9132f 100644 --- a/webapp/plugins/insightsgenerator/insights/biggestfans.php +++ b/webapp/plugins/insightsgenerator/insights/biggestfans.php @@ -60,7 +60,7 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number } else if ($insight_day_of_week == 0) { //it's Sunday // Past 7 days if (self::shouldGenerateInsight('biggest_fans_last_7_days', $instance, $insight_date=$since_date)) { - $fav_dao = DAOFactory::getDAO('FavoritePostDAO'); + $fav_dao = DAOFactory::getDAO('FavoritePostDAO'); $fans = $fav_dao->getUsersWhoFavoritedMostOfYourPosts($instance->network_user_id, $instance->network, 7); if (isset($fans) && sizeof($fans) > 0 ) { diff --git a/webapp/plugins/insightsgenerator/insights/genderanalysis.php b/webapp/plugins/insightsgenerator/insights/genderanalysis.php index a1eff67636..a6bfce3545 100644 --- a/webapp/plugins/insightsgenerator/insights/genderanalysis.php +++ b/webapp/plugins/insightsgenerator/insights/genderanalysis.php @@ -41,7 +41,8 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number $insight_baseline_dao = DAOFactory::getDAO ( 'InsightBaselineDAO' ); $filename = basename ( __FILE__, ".php" ); - + + if (self::shouldGenerateInsight('gender_analysis', $instance)) { $post_dao = DAOFactory::getDAO ( 'PostDAO' ); $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); @@ -61,26 +62,26 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number echo "time= ".$simplified_post_date; if ($female > $male) { - $this->insight_dao->insertInsightDeprecated ( 'gender_analysis' . $post->post_id, $instance->id, + $this->insight_dao->insertInsightDeprecated ( 'gender_analysis', $instance->id, $simplified_post_date, "Women favorite!", "" . number_format ( $female ) . " times women interested in ". $instance->network_username . "'s post", $filename, Insight::EMPHASIS_HIGH, serialize ( array ($post, $gender_data) ) ); } elseif ($male > $female) { - $this->insight_dao->insertInsightDeprecated ( 'Gender Analysis' . $post->post_id, $instance->id, + $this->insight_dao->insertInsightDeprecated ( 'gender_analysis', $instance->id, $simplified_post_date, "Men favorite!", "" . number_format ( $male ) . " times men interested in " . $instance->network_username . "'s post", $filename, Insight::EMPHASIS_HIGH, serialize ( array ($post, $gender_data) ) ); } else { - $this->insight_dao->insertInsightDeprecated ( 'Gender Analysis' . $post->post_id, $instance->id, + $this->insight_dao->insertInsightDeprecated ( 'gender_analysis', $instance->id, $simplified_post_date, "Loved by all!", "" . number_format ( $female+$male). " times women and men interested in " . $instance->network_username . "'s post", $filename, Insight::EMPHASIS_HIGH, serialize (array ($post, $gender_data) ) ); } } - $this->logger->logInfo ( "Done generating insight", __METHOD__ . ',' . __LINE__ ); - echo "Gender done\n"; + } + } } $insights_plugin_registrar = PluginRegistrarInsights::getInstance (); diff --git a/webapp/plugins/insightsgenerator/model/class.InsightPluginParent.php b/webapp/plugins/insightsgenerator/model/class.InsightPluginParent.php index 1d82b3f95c..a418f77a92 100644 --- a/webapp/plugins/insightsgenerator/model/class.InsightPluginParent.php +++ b/webapp/plugins/insightsgenerator/model/class.InsightPluginParent.php @@ -98,7 +98,7 @@ public function shouldGenerateInsight($slug, Instance $instance, $insight_date=n $existing_insight = $this->insight_dao->getInsight($slug, $instance->id, date('Y-m-d', strtotime($insight_date))); - + if (isset($existing_insight)) { $run = $run && false; } else { From 2c01870c2b16acff89a000ec170fb105f343ce34 Mon Sep 17 00:00:00 2001 From: anna Date: Tue, 17 Jun 2014 09:40:27 +0300 Subject: [PATCH 14/40] corrections --- logs/access.log | 2415 --------------- logs/error.log | 114 - webapp/_lib/dao/interface.FavoritePostDAO.php | 12 + webapp/_lib/dao/interface.PostDAO.php | 7 +- webapp/config.sample.inc.php | 2 +- webapp/find | 2599 ----------------- webapp/install/sql/build-db_mysql.sql | 1 - .../facebook/model/class.FacebookCrawler.php | 4 +- webapp/res | 0 webapp/session/forgot.php | 1 + 10 files changed, 21 insertions(+), 5134 deletions(-) delete mode 100644 logs/access.log delete mode 100644 logs/error.log delete mode 100644 webapp/find delete mode 100644 webapp/res diff --git a/logs/access.log b/logs/access.log deleted file mode 100644 index 7c3a2894fb..0000000000 --- a/logs/access.log +++ /dev/null @@ -1,2415 +0,0 @@ -127.0.0.1 - - [09/Jun/2014:03:18:04 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:06 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:08 +0300] "POST /session/login.php HTTP/1.1" 302 550 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET / HTTP/1.1" 200 5196 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:09 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:18 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:18:18 +0300] "GET /crawler/run.php HTTP/1.1" 200 2754 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET / HTTP/1.1" 200 5200 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:03:22:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:28 +0300] "GET / HTTP/1.1" 200 2310 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:34 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:45:35 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:03 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:03 +0300] "GET / HTTP/1.1" 200 5197 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 186 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:04 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:19 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 2918 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:24 +0300] "GET / HTTP/1.1" 200 5198 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:29 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014 HTTP/1.1" 200 3785 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:34 +0300] "GET / HTTP/1.1" 200 5197 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:39 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 2917 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:42 +0300] "GET / HTTP/1.1" 200 5197 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:49 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014 HTTP/1.1" 200 3786 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:09:46:57 +0300] "GET / HTTP/1.1" 200 5198 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:05 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:00:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:19 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:33 +0300] "GET / HTTP/1.1" 200 5760 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:02:34 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET / HTTP/1.1" 200 5858 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:07 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:18 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 3368 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:22 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:53 +0300] "GET / HTTP/1.1" 200 5858 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:08:54 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:21 +0300] "GET / HTTP/1.1" 200 5706 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:11:23 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:12:39 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:24:50 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:06 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:07 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:08 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:25:35 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:13 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:27:14 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:11 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:30 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:28:32 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:30:18 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET / HTTP/1.1" 200 2561 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:31:43 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:03 +0300] "GET / HTTP/1.1" 200 5922 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:04 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:05 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET / HTTP/1.1" 200 5924 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:32 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:32 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:32 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:41:34 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET / HTTP/1.1" 200 5924 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:58 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:42:59 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:43:26 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014 HTTP/1.1" 200 3786 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:43:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:44:11 +0300] "GET / HTTP/1.1" 200 5924 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=reply_high_30_day_1014" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:44:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:44:15 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 3277 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:44:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:44:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 HTTP/1.1" 200 3273 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:45:22 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:46:11 +0300] "GET / HTTP/1.1" 200 5875 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:46:12 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:46:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:11 +0300] "GET / HTTP/1.1" 200 5147 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:12 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:31 +0300] "GET / HTTP/1.1" 200 5223 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:33 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET / HTTP/1.1" 200 5848 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:58 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:47:59 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET / HTTP/1.1" 200 5845 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:22 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:39 +0300] "GET / HTTP/1.1" 200 5875 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:48:40 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:35 +0300] "GET / HTTP/1.1" 200 5832 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:10:50:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:03:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:03:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:03:47 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:05:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:03:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2314 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:07:26 +0300] "GET / HTTP/1.1" 200 5838 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:07:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:07:27 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:08:26 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:08:27 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:08:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:08:27 +0300] "GET /crawler/run.php HTTP/1.1" 200 2753 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:11:53 +0300] "GET / HTTP/1.1" 200 5862 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:11:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:12:17 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:36 +0300] "GET / HTTP/1.1" 200 5866 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:13:37 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:02 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET / HTTP/1.1" 200 5865 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:31 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:32 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:14:48 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET / HTTP/1.1" 200 5866 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:24 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:15:24 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:17:01 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:17:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:17:02 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:18:49 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:17:02 +0300] "GET /crawler/run.php HTTP/1.1" 200 2744 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:20:31 +0300] "GET / HTTP/1.1" 200 5869 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:20:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:20:32 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:08 +0300] "GET / HTTP/1.1" 200 2355 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:08 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:10 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:26 +0300] "GET / HTTP/1.1" 200 5866 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:28 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET / HTTP/1.1" 200 5879 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:41 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:21:42 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:43 +0300] "GET / HTTP/1.1" 200 5865 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:44 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [09/Jun/2014:11:22:45 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:21 +0300] "GET / HTTP/1.1" 200 2310 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:29 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [10/Jun/2014:08:56:30 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:21 +0300] "GET / HTTP/1.1" 200 2310 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:33 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:49:33 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:50:04 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:50:04 +0300] "GET / HTTP/1.1" 200 5852 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:50:06 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:50:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:50:07 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:50:07 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 186 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:15:50:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:16:37:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:16:37:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:16:37:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2889 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:16:41:49 +0300] "GET / HTTP/1.1" 200 7157 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:16:41:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:44 +0300] "GET / HTTP/1.1" 200 7159 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:45 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:46 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:50 +0300] "GET /assets/img/favicon.png HTTP/1.1" 200 852 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:54 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670676809674210 HTTP/1.1" 200 3235 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670676809674210" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:59 +0300] "GET / HTTP/1.1" 200 7158 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670676809674210" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:00:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:28:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:28:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:28:19 +0300] "GET /crawler/run.php HTTP/1.1" 200 2173 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:30:44 +0300] "GET / HTTP/1.1" 200 7314 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:30:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:30:45 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:31:53 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:31:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:31:54 +0300] "GET /crawler/run.php HTTP/1.1" 200 2171 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:34:05 +0300] "GET / HTTP/1.1" 200 7305 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:34:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:34:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:34:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:36:50 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:36:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:36:51 +0300] "GET /crawler/run.php HTTP/1.1" 200 2173 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:13 +0300] "GET / HTTP/1.1" 200 7299 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:13 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:13 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:14 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /post/?t=&n= HTTP/1.1" 200 2419 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/css/base.css HTTP/1.1" 200 3771 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/css/style.css HTTP/1.1" 200 8079 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/css/jquery-ui-1.8.13.css HTTP/1.1" 200 6352 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/js/jquery.min-1.4.js HTTP/1.1" 200 24078 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:28 +0300] "GET /assets/js/jquery-ui.min-1.8.js HTTP/1.1" 200 51762 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:29 +0300] "GET /assets/img/favicon_twitter.png HTTP/1.1" 200 897 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:29 +0300] "GET /assets/img/favicon_facebook.png HTTP/1.1" 200 517 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:29 +0300] "GET /assets/img/favicon_googleplus.png HTTP/1.1" 200 880 "http://thinkup.my/post/?t=&n=" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:39:35 +0300] "GET / HTTP/1.1" 200 7300 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:45:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:45:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:45:48 +0300] "GET /crawler/run.php HTTP/1.1" 200 2691 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:48:42 +0300] "GET / HTTP/1.1" 200 7300 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:48:42 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:48:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:48:43 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:50:24 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:50:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:50:25 +0300] "GET /crawler/run.php HTTP/1.1" 200 2607 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:53:52 +0300] "GET / HTTP/1.1" 200 7299 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:53:53 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:53:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:53:57 +0300] "GET / HTTP/1.1" 200 7298 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:53:58 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:53:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:53:58 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:54:09 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:54:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:54:10 +0300] "GET /crawler/run.php HTTP/1.1" 200 2624 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:55:55 +0300] "GET / HTTP/1.1" 200 7299 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:55:56 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:55:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:55:56 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET / HTTP/1.1" 200 7169 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:39 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:56:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2214 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:12 +0300] "GET / HTTP/1.1" 200 7316 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:24 +0300] "GET /post/?t=670703379671553&n=facebook HTTP/1.1" 200 3493 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/img/close-icon.gif HTTP/1.1" 200 683 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/js/extlib/Snowball.stemmer.min.js HTTP/1.1" 200 17117 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/js/word_frequency.js HTTP/1.1" 200 5092 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/js/grid_search.js HTTP/1.1" 200 3074 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/img/ui-bg_glass_65_ffffff_1x400.png HTTP/1.1" 200 387 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:25 +0300] "GET /assets/img/ui-icons_222222_256x240.png HTTP/1.1" 200 4127 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:17:59:30 +0300] "GET / HTTP/1.1" 200 7315 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:07:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:07:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:07:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:10:10 +0300] "GET / HTTP/1.1" 200 7437 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:10:11 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:10:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:10:11 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:10:36 +0300] "GET /post/?t=670703379671553&n=facebook HTTP/1.1" 200 3527 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:10:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/post/?t=670703379671553&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:10:49 +0300] "GET / HTTP/1.1" 200 7437 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET / HTTP/1.1" 200 7498 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:16 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:17 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:18 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:41 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:26:42 +0300] "GET /crawler/run.php HTTP/1.1" 200 2096 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET / HTTP/1.1" 200 7498 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:31:04 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:32:29 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:32:30 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:32:30 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:34:59 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:35:00 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:35:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:35:00 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:35:23 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:35:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:37:05 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553 HTTP/1.1" 200 3480 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:37:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:37:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:37:06 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:37:15 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:39:37 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=reply_high_30_day_1039 HTTP/1.1" 200 3793 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:39:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=reply_high_30_day_1039" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:39:43 +0300] "GET / HTTP/1.1" 200 7500 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:42:12 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET / HTTP/1.1" 200 7475 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:49 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:50 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:18:59:51 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:25 +0300] "GET / HTTP/1.1" 200 7479 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:26 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:01:27 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET / HTTP/1.1" 200 7508 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:46 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:46 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:46 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:02:47 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:50 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:05:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:47 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:06:48 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET / HTTP/1.1" 200 2353 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:43 +0300] "GET / HTTP/1.1" 200 2352 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:56 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:07:57 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:08:10 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET / HTTP/1.1" 200 7449 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:14 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:15 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:09:15 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:27 +0300] "GET / HTTP/1.1" 200 3019 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:10:29 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:18:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:18:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:18:47 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:18:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2165 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:21:01 +0300] "GET / HTTP/1.1" 200 7451 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:21:02 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:21:02 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:21:02 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:26:36 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:26:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:26:37 +0300] "GET /crawler/run.php HTTP/1.1" 200 2090 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:28:30 +0300] "GET / HTTP/1.1" 200 7455 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:28:31 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:28:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:28:31 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:29:18 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:29:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:29:19 +0300] "GET /crawler/run.php HTTP/1.1" 200 2098 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:31:23 +0300] "GET / HTTP/1.1" 200 7443 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:31:24 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 514 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:31:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:31:24 +0300] "GET /plugins//assets/img/favicon.png HTTP/1.1" 404 513 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:32:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:32:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:32:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:36:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:36:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:36:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2103 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16992 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3134 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3078 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10535 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:45:47 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:02 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:03 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:47:05 +0300] "GET /assets/img/favicon.png HTTP/1.1" 200 852 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:48:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:48:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:48:51 +0300] "GET /crawler/run.php HTTP/1.1" 200 2105 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:51:48 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:51:49 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 200 2153 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:51:49 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 200 7188 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:51:49 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 200 443 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:31 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:37 +0300] "GET /session/login.php HTTP/1.1" 200 2527 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 200 1732 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /assets/js/linkify.js HTTP/1.1" 200 1163 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 200 48712 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:41 +0300] "GET / HTTP/1.1" 200 2527 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:43 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17297 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 200 2159 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 200 3615 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 200 1052 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 200 2164 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 200 2223 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 200 2591 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 200 3027 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 200 1921 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 200 2063 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 200 2091 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:44 +0300] "GET /assets/img/loading.gif HTTP/1.1" 200 4825 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:52:45 +0300] "GET /assets/flash/clippy.swf HTTP/1.1" 200 5970 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:31 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:32 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17547 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:33 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:37 +0300] "GET /account/?p=facebook&code=AQA4J0SGW001LUfYAEsn-CWOxYSwVuPMq2mHlc-BTWWErMEIyuZ1I8bV1F_uywQL0pKEDP7M-Ny9m4DLnNdXVuHXuiOROWi1WCi5BYTrF3bdlWNnh9D3U6Gp9amRgsiTiCot873nWU0EP-HJLi7uFvySeEVb0AYUt0JcimR0nayPD06Q9KqKEbq1EXuMlgWg_-KNBPsY6mBP1hW5c8RBeY7BbOh3N9zAEKeYPEOl4iMWFAoPfgxURYsVkhpb9Md71CByHu7I3kZBBiWI5RWXyAPjybjYKVmXwrYN8b083LcPVEFDO6oA933HM5TejeFHpos&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18751 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQA4J0SGW001LUfYAEsn-CWOxYSwVuPMq2mHlc-BTWWErMEIyuZ1I8bV1F_uywQL0pKEDP7M-Ny9m4DLnNdXVuHXuiOROWi1WCi5BYTrF3bdlWNnh9D3U6Gp9amRgsiTiCot873nWU0EP-HJLi7uFvySeEVb0AYUt0JcimR0nayPD06Q9KqKEbq1EXuMlgWg_-KNBPsY6mBP1hW5c8RBeY7BbOh3N9zAEKeYPEOl4iMWFAoPfgxURYsVkhpb9Md71CByHu7I3kZBBiWI5RWXyAPjybjYKVmXwrYN8b083LcPVEFDO6oA933HM5TejeFHpos&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/account/?p=facebook&code=AQA4J0SGW001LUfYAEsn-CWOxYSwVuPMq2mHlc-BTWWErMEIyuZ1I8bV1F_uywQL0pKEDP7M-Ny9m4DLnNdXVuHXuiOROWi1WCi5BYTrF3bdlWNnh9D3U6Gp9amRgsiTiCot873nWU0EP-HJLi7uFvySeEVb0AYUt0JcimR0nayPD06Q9KqKEbq1EXuMlgWg_-KNBPsY6mBP1hW5c8RBeY7BbOh3N9zAEKeYPEOl4iMWFAoPfgxURYsVkhpb9Md71CByHu7I3kZBBiWI5RWXyAPjybjYKVmXwrYN8b083LcPVEFDO6oA933HM5TejeFHpos&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:19:53:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2320 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:05:35 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:05:35 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:05:38 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:05:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:05:39 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:10:41 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:10:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:14:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:14:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:14:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2098 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:16:11 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:16:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:00 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:22:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:50:16 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:50:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:50:32 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:50:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:50:33 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:01 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:02 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:05 +0300] "GET /account/?m=manage HTTP/1.1" 200 15241 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:09 +0300] "GET /account/appconfig.php HTTP/1.1" 200 3209 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:26 +0300] "POST /account/appconfig.php HTTP/1.1" 200 444 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:34 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:36 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:52:36 +0300] "GET /crawler/run.php HTTP/1.1" 200 2096 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:54:49 +0300] "GET / HTTP/1.1" 200 2752 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:20:54:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:47:52 +0300] "GET / HTTP/1.1" 200 2759 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:47:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:47:59 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:48:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:48:01 +0300] "GET /crawler/run.php HTTP/1.1" 200 2094 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:51:36 +0300] "GET /account/?m=manage HTTP/1.1" 200 15242 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:51:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:51:40 +0300] "GET /account/?p=facebook HTTP/1.1" 200 18720 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:51:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:52:14 +0300] "GET /account/index.php?instance_id=1&p=facebook&viewer_id=653822888026269&owner_id=&facebook_page_id=115205405188758&plugin_options_facebook_app_id=224721057725693&plugin_options_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&plugin_options_max_crawl_time=20 HTTP/1.1" 200 18721 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:52:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/account/index.php?instance_id=1&p=facebook&viewer_id=653822888026269&owner_id=&facebook_page_id=115205405188758&plugin_options_facebook_app_id=224721057725693&plugin_options_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&plugin_options_max_crawl_time=20" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:52:30 +0300] "GET / HTTP/1.1" 200 2759 "http://thinkup.my/account/index.php?instance_id=1&p=facebook&viewer_id=653822888026269&owner_id=&facebook_page_id=115205405188758&plugin_options_facebook_app_id=224721057725693&plugin_options_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&plugin_options_max_crawl_time=20" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:52:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:52:33 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:52:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:52:33 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:57:16 +0300] "GET / HTTP/1.1" 200 2759 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:57:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:57:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:57:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1546 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:21:57:38 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:00:17 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:00:51 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:00:58 +0300] "GET /session/login.php HTTP/1.1" 200 2526 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:00:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:01:01 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17296 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:01:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:04 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:05 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17546 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:06 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:08 +0300] "GET /account/?p=facebook&code=AQCP_Vm2fBaOjQgxydMRq4Ul06oFTTP4MD8im1idlljwoFm25wYrWhxMUmcS0ZnYJsMSiRwfpADff80XJXqsbe4U9tpKiosmaOLOMJbL7MLy2BtrBpECaujgNxCZ_BVr2qjdmQjvktUK83kuhAQuEdvYs8egmcLeb0a2WSkYlo2T2wfZyejXm2mmYc1hZoqfHsy0ttRBPWl0EU15RpfThOSfYUTU_N5ifL6yDVxcrnnLWGRxgMeKVZ7mdiuvB8a_PJiOrSFJZQDcRn6oMmGuDJsLMcOg4Hugv_n1c7R2T5P3TD2OHAqiZ-CArt9NXJsC6ss&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18750 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQCP_Vm2fBaOjQgxydMRq4Ul06oFTTP4MD8im1idlljwoFm25wYrWhxMUmcS0ZnYJsMSiRwfpADff80XJXqsbe4U9tpKiosmaOLOMJbL7MLy2BtrBpECaujgNxCZ_BVr2qjdmQjvktUK83kuhAQuEdvYs8egmcLeb0a2WSkYlo2T2wfZyejXm2mmYc1hZoqfHsy0ttRBPWl0EU15RpfThOSfYUTU_N5ifL6yDVxcrnnLWGRxgMeKVZ7mdiuvB8a_PJiOrSFJZQDcRn6oMmGuDJsLMcOg4Hugv_n1c7R2T5P3TD2OHAqiZ-CArt9NXJsC6ss&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:16 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/account/?p=facebook&code=AQCP_Vm2fBaOjQgxydMRq4Ul06oFTTP4MD8im1idlljwoFm25wYrWhxMUmcS0ZnYJsMSiRwfpADff80XJXqsbe4U9tpKiosmaOLOMJbL7MLy2BtrBpECaujgNxCZ_BVr2qjdmQjvktUK83kuhAQuEdvYs8egmcLeb0a2WSkYlo2T2wfZyejXm2mmYc1hZoqfHsy0ttRBPWl0EU15RpfThOSfYUTU_N5ifL6yDVxcrnnLWGRxgMeKVZ7mdiuvB8a_PJiOrSFJZQDcRn6oMmGuDJsLMcOg4Hugv_n1c7R2T5P3TD2OHAqiZ-CArt9NXJsC6ss&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:02:16 +0300] "GET /crawler/run.php HTTP/1.1" 200 2336 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:18:22 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:18:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:18:28 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:18:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:18:28 +0300] "GET /crawler/run.php HTTP/1.1" 200 2102 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:19:39 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:19:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:19:42 +0300] "GET / HTTP/1.1" 200 2748 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:19:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:20:12 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:20:48 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:12 +0300] "GET /session/login.php HTTP/1.1" 200 2749 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:17 +0300] "GET /account/?m=manage HTTP/1.1" 200 15200 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:20 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17299 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:46 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=224721057725693&option_facebook_api_secret=7455ffc9101b5ee89faff00406accd27&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:47 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17544 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 209 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:48 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:51 +0300] "GET /account/?p=facebook&code=AQB3Z7EcFBplk_v6RYp6uQPC9YftsmkY15bB_2TlqIwoNzX2vMUlTNpTPMUkyjZNShRgKIZqg02NAVGa8IECaH5RB8beTw_lsGUmkcaYVHqYNdHYLnkxOm4eyv5aVwiRfYDEv0pSBe7E3A1BtCYNYTHOXVmKMtqKIcIO-fyY0qwDdNA-fsgwNMMr-OM__XG34kgTVLPdBq6Z85NIOYFsdzFT2awgjfi7opxInImdBdq_Sdh9ldtkDLABHs4wlVg7fejsiDYdECXAj4YFmzzTvv9-zh3FfFkghWGcxqeHhLE-0wHptRxIc9bWAfsFz9PfIY0&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18262 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:21:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQB3Z7EcFBplk_v6RYp6uQPC9YftsmkY15bB_2TlqIwoNzX2vMUlTNpTPMUkyjZNShRgKIZqg02NAVGa8IECaH5RB8beTw_lsGUmkcaYVHqYNdHYLnkxOm4eyv5aVwiRfYDEv0pSBe7E3A1BtCYNYTHOXVmKMtqKIcIO-fyY0qwDdNA-fsgwNMMr-OM__XG34kgTVLPdBq6Z85NIOYFsdzFT2awgjfi7opxInImdBdq_Sdh9ldtkDLABHs4wlVg7fejsiDYdECXAj4YFmzzTvv9-zh3FfFkghWGcxqeHhLE-0wHptRxIc9bWAfsFz9PfIY0&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:04 +0300] "POST /account/?p=facebook HTTP/1.1" 200 17579 "http://thinkup.my/account/?p=facebook&code=AQB3Z7EcFBplk_v6RYp6uQPC9YftsmkY15bB_2TlqIwoNzX2vMUlTNpTPMUkyjZNShRgKIZqg02NAVGa8IECaH5RB8beTw_lsGUmkcaYVHqYNdHYLnkxOm4eyv5aVwiRfYDEv0pSBe7E3A1BtCYNYTHOXVmKMtqKIcIO-fyY0qwDdNA-fsgwNMMr-OM__XG34kgTVLPdBq6Z85NIOYFsdzFT2awgjfi7opxInImdBdq_Sdh9ldtkDLABHs4wlVg7fejsiDYdECXAj4YFmzzTvv9-zh3FfFkghWGcxqeHhLE-0wHptRxIc9bWAfsFz9PfIY0&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:20 +0300] "GET /account/?p=facebook&code=AQBpj0nrw3MQ_Blf4KwBcuZtU-uxA5fwJHtFaVxHEdoq3QiGZW0FU3Y5tOdFMNpzhBCb-cA4Z2GyH6s09lYQkyk62DqpUUZ5aumIa85gwV5YQVW9ZtBJeD9w3rceWvuT_8u3ZZnFUhmToxHARBL5v0PBNKL-e9l_yUZ1HCQMXu28iFR2QTyqipvjVDZtw1G0ni9dZDlb6AHOiAO6YSSca7tIWdeVEYu2uYMnWZlX7A-zAcuYbPW9EJILwy-sCQ0n2AokNoEMY07VKDUtdp9grT7WxVTdRMJhEZo1EMbodVSB96Wvi52aRWBE3T2FEsTUPf4&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18750 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQBpj0nrw3MQ_Blf4KwBcuZtU-uxA5fwJHtFaVxHEdoq3QiGZW0FU3Y5tOdFMNpzhBCb-cA4Z2GyH6s09lYQkyk62DqpUUZ5aumIa85gwV5YQVW9ZtBJeD9w3rceWvuT_8u3ZZnFUhmToxHARBL5v0PBNKL-e9l_yUZ1HCQMXu28iFR2QTyqipvjVDZtw1G0ni9dZDlb6AHOiAO6YSSca7tIWdeVEYu2uYMnWZlX7A-zAcuYbPW9EJILwy-sCQ0n2AokNoEMY07VKDUtdp9grT7WxVTdRMJhEZo1EMbodVSB96Wvi52aRWBE3T2FEsTUPf4&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:28 +0300] "GET / HTTP/1.1" 200 2748 "http://thinkup.my/account/?p=facebook&code=AQBpj0nrw3MQ_Blf4KwBcuZtU-uxA5fwJHtFaVxHEdoq3QiGZW0FU3Y5tOdFMNpzhBCb-cA4Z2GyH6s09lYQkyk62DqpUUZ5aumIa85gwV5YQVW9ZtBJeD9w3rceWvuT_8u3ZZnFUhmToxHARBL5v0PBNKL-e9l_yUZ1HCQMXu28iFR2QTyqipvjVDZtw1G0ni9dZDlb6AHOiAO6YSSca7tIWdeVEYu2uYMnWZlX7A-zAcuYbPW9EJILwy-sCQ0n2AokNoEMY07VKDUtdp9grT7WxVTdRMJhEZo1EMbodVSB96Wvi52aRWBE3T2FEsTUPf4&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:32 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:22:32 +0300] "GET /crawler/run.php HTTP/1.1" 200 2313 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:35:53 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:35:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:35:56 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:35:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:35:57 +0300] "GET /crawler/run.php HTTP/1.1" 200 2100 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:37:33 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:37:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:37:58 +0300] "GET / HTTP/1.1" 200 2750 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:37:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:04 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:07 +0300] "GET /dashboard.php HTTP/1.1" 200 3679 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/css/base.css HTTP/1.1" 200 3771 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/css/style.css HTTP/1.1" 200 8079 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/css/jquery-ui-1.8.13.css HTTP/1.1" 200 6351 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/js/jquery.min-1.4.js HTTP/1.1" 200 24078 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/js/jquery-ui.min-1.8.js HTTP/1.1" 200 51762 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 200 456 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/img/favicon_twitter.png HTTP/1.1" 200 897 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/img/favicon_facebook.png HTTP/1.1" 200 517 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:08 +0300] "GET /assets/img/favicon_googleplus.png HTTP/1.1" 200 880 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:23 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:27 +0300] "GET /dashboard.php HTTP/1.1" 200 3679 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:43 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:46 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:42:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:43:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:43:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:55 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:43:48 +0300] "GET /crawler/run.php HTTP/1.1" 200 2095 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:45:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:46:23 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:46:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [14/Jun/2014:22:46:24 +0300] "GET /crawler/run.php HTTP/1.1" 200 2099 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:13:57 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:13:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:13:58 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:15:24 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:15:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:16:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:16:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:16:38 +0300] "GET /crawler/run.php HTTP/1.1" 200 2100 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:19:13 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:19:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:00 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:40 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:45 +0300] "GET /session/login.php HTTP/1.1" 200 2749 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:50 +0300] "GET /account/?m=manage HTTP/1.1" 200 15201 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:53 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17298 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:20:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:24 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:25 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17545 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:26 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:29 +0300] "GET /account/?p=facebook&code=AQBNJALb1VaDSJhDGL6FDzEoKK9XihelCj5NJPPQC8I6av912ZlfrPDjtuwC6CfsJWefMCpJVSX4REovI7AN3HAMNGIWwojiMGXuzsh2HXVhGRZYE0xoqAHGHWjD7xvJoS_thrK9xsMiEdb_RR3qHcLOvXbCAiJGuxIC112Gkr3dJKoybEoM67fKPsHWvGVsdvltBH-8mHPE-ispNr0UiwWRskzxZpaZshJYxpBGXCFf0gtPa0Mcs8dxjmFO9jALJUKu-9ubHjSaf9Sk27lsFXbiW0IOIve7qwJAi1oNDPNbTmw1RaIrhb9CQC47BEz4PzE&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18750 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQBNJALb1VaDSJhDGL6FDzEoKK9XihelCj5NJPPQC8I6av912ZlfrPDjtuwC6CfsJWefMCpJVSX4REovI7AN3HAMNGIWwojiMGXuzsh2HXVhGRZYE0xoqAHGHWjD7xvJoS_thrK9xsMiEdb_RR3qHcLOvXbCAiJGuxIC112Gkr3dJKoybEoM67fKPsHWvGVsdvltBH-8mHPE-ispNr0UiwWRskzxZpaZshJYxpBGXCFf0gtPa0Mcs8dxjmFO9jALJUKu-9ubHjSaf9Sk27lsFXbiW0IOIve7qwJAi1oNDPNbTmw1RaIrhb9CQC47BEz4PzE&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:37 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/account/?p=facebook&code=AQBNJALb1VaDSJhDGL6FDzEoKK9XihelCj5NJPPQC8I6av912ZlfrPDjtuwC6CfsJWefMCpJVSX4REovI7AN3HAMNGIWwojiMGXuzsh2HXVhGRZYE0xoqAHGHWjD7xvJoS_thrK9xsMiEdb_RR3qHcLOvXbCAiJGuxIC112Gkr3dJKoybEoM67fKPsHWvGVsdvltBH-8mHPE-ispNr0UiwWRskzxZpaZshJYxpBGXCFf0gtPa0Mcs8dxjmFO9jALJUKu-9ubHjSaf9Sk27lsFXbiW0IOIve7qwJAi1oNDPNbTmw1RaIrhb9CQC47BEz4PzE&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:40 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:21:41 +0300] "GET /crawler/run.php HTTP/1.1" 200 2317 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:35:40 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:35:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:35:43 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:35:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:35:43 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:36:47 +0300] "GET / HTTP/1.1" 200 2749 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:36:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:36:52 +0300] "GET /dashboard.php HTTP/1.1" 200 3841 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:36:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:37:12 +0300] "GET /dashboard.php?v=posts&u=Ann+Shkerina&n=facebook HTTP/1.1" 200 4156 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:37:13 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:37:15 +0300] "GET /dashboard.php?v=friends&u=Ann+Shkerina&n=facebook HTTP/1.1" 200 3226 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:37:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php?v=friends&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:37:23 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/dashboard.php?v=friends&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:37:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:43:14 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:43:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:43:15 +0300] "GET /crawler/run.php HTTP/1.1" 200 2097 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:45:14 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:00:45:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET / HTTP/1.1" 200 2750 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:02:45 +0300] "GET /crawler/run.php HTTP/1.1" 200 2187 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:04:11 +0300] "GET / HTTP/1.1" 200 3291 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:04:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:04:36 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=biggest_fans_last_7_days HTTP/1.1" 200 3121 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:04:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=biggest_fans_last_7_days" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:04:39 +0300] "GET / HTTP/1.1" 200 3290 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:05:07 +0300] "GET / HTTP/1.1" 200 3291 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:05:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:10:24 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:10:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:10:25 +0300] "GET /crawler/run.php HTTP/1.1" 200 2105 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:43 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:13:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2160 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:15:45 +0300] "GET / HTTP/1.1" 200 3897 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:15:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:15:59 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:03 +0300] "GET / HTTP/1.1" 200 3896 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:16 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:19 +0300] "GET / HTTP/1.1" 200 3896 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:25 +0300] "GET / HTTP/1.1" 200 3897 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:32 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:16:32 +0300] "GET /crawler/run.php HTTP/1.1" 200 2160 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:19:57 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:19:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:04 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:06 +0300] "GET / HTTP/1.1" 200 3982 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:09 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2717 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:11 +0300] "GET / HTTP/1.1" 200 3982 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:20:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:21:16 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:21:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:21:17 +0300] "GET /crawler/run.php HTTP/1.1" 200 2159 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:23:03 +0300] "GET / HTTP/1.1" 200 3984 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:23:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:23:21 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 2718 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:23:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:23:24 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:23:53 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:29 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:31 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:33 +0300] "GET /session/login.php HTTP/1.1" 200 3983 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:43 +0300] "GET /account/?m=manage HTTP/1.1" 200 15199 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:48 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17297 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:58 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=2099901141539c44fc6ab396.01889099 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17544 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:24:59 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:25:02 +0300] "GET /account/?p=facebook&code=AQDisYzMaVruuo3g8AOWMlzNmhpsN5XaPSSB4HEIssAPpTaQeTfHAEixqPS-8R_QATC7meNM4zCsT5KngUC2hectpkgReoyFxcFZhO_kEFmM9DHxj9aE_vHZvLZT_FpAgVq2z1Tw_60qxHvIezXnAM3PSkPofgPNFBkydAnQJ3gexeCW2i18LhCHdmxttqU52Z_ryprrNQSkzWXOLeCUGbFnhbIHddqIq0xgnTrrfT3mLmN4aQYaWvUJbNxmC2RzVyI-YBHSewSDCkLLU8L6Jf93cCjIRtk21UiTWvo7ZlgHa8WTu3IGA9v_Zp_DXiYZIEI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18749 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:25:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQDisYzMaVruuo3g8AOWMlzNmhpsN5XaPSSB4HEIssAPpTaQeTfHAEixqPS-8R_QATC7meNM4zCsT5KngUC2hectpkgReoyFxcFZhO_kEFmM9DHxj9aE_vHZvLZT_FpAgVq2z1Tw_60qxHvIezXnAM3PSkPofgPNFBkydAnQJ3gexeCW2i18LhCHdmxttqU52Z_ryprrNQSkzWXOLeCUGbFnhbIHddqIq0xgnTrrfT3mLmN4aQYaWvUJbNxmC2RzVyI-YBHSewSDCkLLU8L6Jf93cCjIRtk21UiTWvo7ZlgHa8WTu3IGA9v_Zp_DXiYZIEI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:25:10 +0300] "GET / HTTP/1.1" 200 3983 "http://thinkup.my/account/?p=facebook&code=AQDisYzMaVruuo3g8AOWMlzNmhpsN5XaPSSB4HEIssAPpTaQeTfHAEixqPS-8R_QATC7meNM4zCsT5KngUC2hectpkgReoyFxcFZhO_kEFmM9DHxj9aE_vHZvLZT_FpAgVq2z1Tw_60qxHvIezXnAM3PSkPofgPNFBkydAnQJ3gexeCW2i18LhCHdmxttqU52Z_ryprrNQSkzWXOLeCUGbFnhbIHddqIq0xgnTrrfT3mLmN4aQYaWvUJbNxmC2RzVyI-YBHSewSDCkLLU8L6Jf93cCjIRtk21UiTWvo7ZlgHa8WTu3IGA9v_Zp_DXiYZIEI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:25:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:25:13 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:25:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16993 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3135 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3077 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:30:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10534 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:25:14 +0300] "GET /crawler/run.php HTTP/1.1" 200 2262 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET / HTTP/1.1" 200 3286 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 200 48712 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 200 1732 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 200 457 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /assets/js/linkify.js HTTP/1.1" 200 1163 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:36:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:36:06 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:39:18 +0300] "GET / HTTP/1.1" 200 3286 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:39:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:39:26 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:39:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:39:26 +0300] "GET /crawler/run.php HTTP/1.1" 200 2161 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:40:33 +0300] "GET / HTTP/1.1" 200 3287 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:40:33 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:42:43 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:42:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:42:44 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:44:32 +0300] "GET / HTTP/1.1" 200 3895 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:44:32 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:46:08 +0300] "GET / HTTP/1.1" 200 3895 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:46:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:46:11 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:46:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:46:12 +0300] "GET /crawler/run.php HTTP/1.1" 200 2097 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:47:28 +0300] "GET / HTTP/1.1" 200 3901 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:47:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:59:01 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:59:02 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:59:07 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:59:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:59:11 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 3477 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:01:59:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:05:13 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:05:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:05:14 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:14:24 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:14:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:14:28 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 3477 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:14:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:14:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:14:55 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:14:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:18:08 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:18:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:18:21 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552 HTTP/1.1" 200 3478 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:18:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:18:23 +0300] "GET / HTTP/1.1" 200 3899 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670923389649552" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:18:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:19:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:19:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:19:05 +0300] "GET /crawler/run.php HTTP/1.1" 200 2101 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:20:53 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:20:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:20:54 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:21:59 +0300] "GET / HTTP/1.1" 200 3899 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:22:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:22:47 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:22:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET / HTTP/1.1" 200 3900 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:35 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:23:38 +0300] "GET /assets/img/favicon.png HTTP/1.1" 200 852 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:30:20 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:30:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:30:21 +0300] "GET /crawler/run.php HTTP/1.1" 200 2117 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:32:39 +0300] "GET / HTTP/1.1" 200 4003 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:32:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:32:55 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495 HTTP/1.1" 200 3473 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:32:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:33:25 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:33:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:33:26 +0300] "GET /crawler/run.php HTTP/1.1" 200 2170 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:39:20 +0300] "GET / HTTP/1.1" 200 4001 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:39:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:39:48 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:44 +0300] "GET / HTTP/1.1" 200 2955 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:45 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:42:46 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET / HTTP/1.1" 200 4001 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:06 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:41 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:43:42 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:10 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:44:11 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:39 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:40 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:41 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:47 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:21 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:22 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:27 +0300] "GET / HTTP/1.1" 200 3997 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:30 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:30 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:30 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:37 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:38 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:39 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:40 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:41 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:40 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:41 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:43 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:44 +0300] "GET /crawler/run.php HTTP/1.1" 200 1694 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:46:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2209 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:48 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:47:49 +0300] "GET /crawler/run.php HTTP/1.1" 200 2209 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:50:36 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:50:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:50:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:50:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:51:16 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:51:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:51:37 +0300] "GET / HTTP/1.1" 200 3998 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:51:38 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:50:48 +0300] "GET /crawler/run.php HTTP/1.1" 200 2228 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:54:57 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:54:57 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:54:58 +0300] "GET /crawler/run.php HTTP/1.1" 200 2090 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:57:39 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:57:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:57:40 +0300] "GET /crawler/run.php HTTP/1.1" 200 2107 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:59:53 +0300] "GET / HTTP/1.1" 200 3999 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:02:59:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:00:01 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495 HTTP/1.1" 200 3473 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:00:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670943959647495" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:00:06 +0300] "GET / HTTP/1.1" 200 3999 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:05:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:05:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:05:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2232 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:08 +0300] "GET / HTTP/1.1" 200 4100 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /dashboard.php HTTP/1.1" 200 3848 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/css/base.css HTTP/1.1" 200 3771 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/css/jquery-ui-1.8.13.css HTTP/1.1" 200 6352 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/css/style.css HTTP/1.1" 200 8080 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/js/jquery.min-1.4.js HTTP/1.1" 200 24078 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/img/favicon_twitter.png HTTP/1.1" 200 898 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:29 +0300] "GET /assets/img/favicon_facebook.png HTTP/1.1" 200 517 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:29 +0300] "GET /assets/img/favicon_googleplus.png HTTP/1.1" 200 880 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:08:28 +0300] "GET /assets/js/jquery-ui.min-1.8.js HTTP/1.1" 200 51763 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:13:18 +0300] "GET /dashboard.php?v=posts&u=Ann+Shkerina&n=facebook HTTP/1.1" 200 4014 "http://thinkup.my/dashboard.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:13:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:13:22 +0300] "GET / HTTP/1.1" 200 4099 "http://thinkup.my/dashboard.php?v=posts&u=Ann+Shkerina&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:13:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:03:13:23 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:15:42 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:15:43 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:15:43 +0300] "GET /crawler/run.php HTTP/1.1" 200 2108 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:20:28 +0300] "GET / HTTP/1.1" 200 4103 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:20:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:20:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:20:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:20:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:27:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:27:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:27:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2086 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:27:56 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:27:57 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:27:57 +0300] "GET /crawler/run.php HTTP/1.1" 200 2091 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:29:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:29:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:29:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2103 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:32:06 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:32:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:32:07 +0300] "GET /crawler/run.php HTTP/1.1" 200 2278 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:35:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:35:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:35:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2092 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:36:37 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:36:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:36:37 +0300] "GET /crawler/run.php HTTP/1.1" 200 2097 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:38:00 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:38:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:38:01 +0300] "GET /crawler/run.php HTTP/1.1" 200 2087 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:39:41 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:39:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:39:42 +0300] "GET /crawler/run.php HTTP/1.1" 200 2164 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:40:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:18 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:41:00 +0300] "GET /crawler/run.php HTTP/1.1" 200 2153 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:45:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:44:44 +0300] "GET /crawler/run.php HTTP/1.1" 200 2169 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:46:49 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:46:50 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:47:23 +0300] "GET / HTTP/1.1" 200 4104 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:47:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:46:50 +0300] "GET /crawler/run.php HTTP/1.1" 200 2685 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:45 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:48:27 +0300] "GET /crawler/run.php HTTP/1.1" 200 2176 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:50:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:49:42 +0300] "GET /crawler/run.php HTTP/1.1" 200 2093 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:09 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:51:02 +0300] "GET /crawler/run.php HTTP/1.1" 200 2037 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:54 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 212 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:53:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:52:55 +0300] "GET /crawler/run.php HTTP/1.1" 200 2179 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:56:10 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:56:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:56:11 +0300] "GET /crawler/run.php HTTP/1.1" 200 2163 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:57:46 +0300] "GET / HTTP/1.1" 200 4205 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:57:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:58:15 +0300] "GET / HTTP/1.1" 200 4205 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:58:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:59:31 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:59:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:09:59:31 +0300] "GET /crawler/run.php HTTP/1.1" 200 2179 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:02:02 +0300] "GET / HTTP/1.1" 200 4266 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:02:03 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /install/ HTTP/1.1" 200 10043 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 200 2153 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 200 7189 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:03:09 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 200 444 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:02 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:08 +0300] "GET /session/login.php HTTP/1.1" 200 4265 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET / HTTP/1.1" 200 2368 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16992 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3135 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10535 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3077 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:39 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:42 +0300] "POST /session/login.php HTTP/1.1" 200 2422 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:42 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:04:42 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:00 +0300] "POST /session/login.php HTTP/1.1" 200 2423 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:00 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:00 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "POST /session/login.php HTTP/1.1" 200 2423 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:05:11 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 304 187 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:26 +0300] "GET /?u=Ann+Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670947589647132 HTTP/1.1" 200 2474 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:27 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann+Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670947589647132" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:39 +0300] "GET /session/forgot.php HTTP/1.1" 200 431 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:39 +0300] "GET /favicon.ico HTTP/1.1" 404 499 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:47 +0300] "GET /session/forgot.php HTTP/1.1" 200 431 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:48 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:48 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:48 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:49 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:06:55 +0300] "GET /session/logout.php HTTP/1.1" 200 2310 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:07:03 +0300] "POST /session/login.php HTTP/1.1" 200 2423 "http://thinkup.my/session/logout.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:07:05 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:07:21 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:08:44 +0300] "GET /install/ HTTP/1.1" 200 1839 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:09:33 +0300] "GET / HTTP/1.1" 200 1778 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:09:35 +0300] "GET /install/ HTTP/1.1" 200 10042 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:10:08 +0300] "POST /install/index.php?step=3 HTTP/1.1" 200 2126 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:10:12 +0300] "GET /session/login.php HTTP/1.1" 200 2600 "http://thinkup.my/install/index.php?step=3" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:10:15 +0300] "POST /session/login.php HTTP/1.1" 200 2709 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:10:17 +0300] "GET /session/forgot.php HTTP/1.1" 200 761 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:12:47 +0300] "GET /session/forgot.php HTTP/1.1" 200 431 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:12:50 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:13:04 +0300] "GET /session/login.php HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:13:07 +0300] "POST /session/login.php HTTP/1.1" 200 2422 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:13:09 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/session/login.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:13:22 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:00 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:04 +0300] "GET /session/forgot.php HTTP/1.1" 200 840 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:27 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET / HTTP/1.1" 200 2310 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:47 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:49 +0300] "GET /session/forgot.php HTTP/1.1" 200 430 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:14:51 +0300] "GET / HTTP/1.1" 200 2309 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:44 +0300] "POST /session/login.php HTTP/1.1" 302 551 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:44 +0300] "GET / HTTP/1.1" 200 2526 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:51 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17311 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 200 3616 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 200 2159 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 200 1053 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 200 2592 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 200 2165 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 200 2223 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 200 3027 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 200 1921 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 200 2063 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 200 3763 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /assets/img/loading.gif HTTP/1.1" 200 4825 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:52 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 200 2091 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:17:54 +0300] "GET /assets/flash/clippy.swf HTTP/1.1" 200 5970 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:03 +0300] "GET /account/plugin-options.php?action=set_options&plugin_id=2&option_facebook_app_id=453502544794383&option_facebook_api_secret=b030e8d46aea8b90f2156f925453ba2f&option_max_crawl_time=20&csrf_token=220739824539d48988da902.06058246 HTTP/1.1" 200 610 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:04 +0300] "GET /account/?p=facebook HTTP/1.1" 200 17559 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/jqBootstrapValidation.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/jstz-1.0.4.min.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/validate-fields.js HTTP/1.1" 304 208 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/plugin_options.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/install/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/js/appconfig.js HTTP/1.1" 304 210 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/geoencoder/assets/img/geoencoder_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/hellothinkup/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/youtube/assets/img/youtube_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/facebook/assets/img/facebook_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/insightsgenerator/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/expandurls/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/googleplus/assets/img/plugin_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/twitterrealtime/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/foursquare/assets/img/foursquare_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /plugins/twitter/assets/img/twitter_icon.png HTTP/1.1" 304 186 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:05 +0300] "GET /assets/img/loading.gif HTTP/1.1" 304 187 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:07 +0300] "GET /account/?p=facebook&code=AQC-VtgKhxJ-wzsSmcTaK7sSVpNYIXbkF7UijdIwzycHA7d_WqwehEagng4_H6-GJ3mgNob-xOkD6ddi0CM6A1d369PnVvLtkbOF5ct6DXX97Zb1xdAo3COgl2UraoyY73NZdxrjbEUJxYl1kjz9hNVUI6X7QaZ0zPE6ZWyYNhHdknSXc32hOllCGxIR63_pQJX1BJtvY7YBsZt68NnRMvyyD03G5IOShEwRVe9iBU_X9iLXQfmEf2mfJH1uorB3rQb2NkAShF_bn6J3aBrjMdtkwdQwmkOQ599dzA_BoyNudfxdfmMBea2PxTM3R95eLJI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5 HTTP/1.1" 200 18766 "http://thinkup.my/account/?p=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=facebook&code=AQC-VtgKhxJ-wzsSmcTaK7sSVpNYIXbkF7UijdIwzycHA7d_WqwehEagng4_H6-GJ3mgNob-xOkD6ddi0CM6A1d369PnVvLtkbOF5ct6DXX97Zb1xdAo3COgl2UraoyY73NZdxrjbEUJxYl1kjz9hNVUI6X7QaZ0zPE6ZWyYNhHdknSXc32hOllCGxIR63_pQJX1BJtvY7YBsZt68NnRMvyyD03G5IOShEwRVe9iBU_X9iLXQfmEf2mfJH1uorB3rQb2NkAShF_bn6J3aBrjMdtkwdQwmkOQ599dzA_BoyNudfxdfmMBea2PxTM3R95eLJI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:14 +0300] "GET / HTTP/1.1" 200 2526 "http://thinkup.my/account/?p=facebook&code=AQC-VtgKhxJ-wzsSmcTaK7sSVpNYIXbkF7UijdIwzycHA7d_WqwehEagng4_H6-GJ3mgNob-xOkD6ddi0CM6A1d369PnVvLtkbOF5ct6DXX97Zb1xdAo3COgl2UraoyY73NZdxrjbEUJxYl1kjz9hNVUI6X7QaZ0zPE6ZWyYNhHdknSXc32hOllCGxIR63_pQJX1BJtvY7YBsZt68NnRMvyyD03G5IOShEwRVe9iBU_X9iLXQfmEf2mfJH1uorB3rQb2NkAShF_bn6J3aBrjMdtkwdQwmkOQ599dzA_BoyNudfxdfmMBea2PxTM3R95eLJI&state=cc3fd59dcb5c59c6663ef2ae9691a5f5" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:17 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:18:17 +0300] "GET /crawler/run.php HTTP/1.1" 200 3465 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:25:09 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/run.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:28:34 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:28:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:28:34 +0300] "GET /crawler/run.php HTTP/1.1" 200 2345 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:29:39 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:29:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:30:17 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:30:17 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:30:17 +0300] "GET /crawler/run.php HTTP/1.1" 200 2229 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:32:07 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:32:08 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:32:14 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:32:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:33:00 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:33:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:33:57 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:33:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:33:58 +0300] "GET /crawler/run.php HTTP/1.1" 200 2223 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:35:25 +0300] "GET / HTTP/1.1" 200 4451 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:35:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:36:25 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236 HTTP/1.1" 200 3489 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:36:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:36:28 +0300] "GET / HTTP/1.1" 200 4450 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:37:35 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:37:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:37:36 +0300] "GET /crawler/run.php HTTP/1.1" 200 2231 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:39:52 +0300] "GET / HTTP/1.1" 200 2356 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:39:53 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET / HTTP/1.1" 200 4453 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:40:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:41:19 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:41:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:41:20 +0300] "GET /crawler/run.php HTTP/1.1" 200 2230 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:43:37 +0300] "GET / HTTP/1.1" 200 4443 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:43:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:43:58 +0300] "GET / HTTP/1.1" 200 4443 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:43:59 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:02 +0300] "GET / HTTP/1.1" 200 4456 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:02 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 186 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:03 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:47 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:47 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:51:47 +0300] "GET /crawler/run.php HTTP/1.1" 200 2231 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:52:38 +0300] "GET / HTTP/1.1" 200 4440 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:52:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET / HTTP/1.1" 200 4532 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:44 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:53:52 +0300] "GET /crawler/run.php HTTP/1.1" 200 2231 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:54:39 +0300] "GET / HTTP/1.1" 200 4543 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:54:40 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:09 +0300] "GET / HTTP/1.1" 200 2357 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:55:10 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:21 +0300] "GET / HTTP/1.1" 200 2355 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:21 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:57:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:17 +0300] "GET / HTTP/1.1" 200 4466 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:17 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:18 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:25 +0300] "GET /?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236 HTTP/1.1" 200 3485 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-15&s=Gender%20Analysis671069882968236" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:31 +0300] "GET / HTTP/1.1" 200 4465 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET / HTTP/1.1" 200 4475 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:10:58:51 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET / HTTP/1.1" 200 4471 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:00:12 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET / HTTP/1.1" 200 4527 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:07 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:08 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET / HTTP/1.1" 200 4541 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:24 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET / HTTP/1.1" 200 4538 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:01:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET / HTTP/1.1" 200 4515 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET / HTTP/1.1" 200 4509 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:36 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET / HTTP/1.1" 200 4506 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:49 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:02:50 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET / HTTP/1.1" 200 4494 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:03:53 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:14 +0300] "GET / HTTP/1.1" 200 4495 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:15 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET / HTTP/1.1" 200 4496 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:28 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET / HTTP/1.1" 200 4485 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:04:58 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:17 +0300] "GET / HTTP/1.1" 200 4514 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:05:18 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET / HTTP/1.1" 200 4489 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:06:48 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:21 +0300] "GET / HTTP/1.1" 200 4470 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:07:22 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:10:14 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:10:15 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:10:15 +0300] "GET /crawler/run.php HTTP/1.1" 200 2160 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:12:06 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:12:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:12:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2158 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:14:39 +0300] "GET / HTTP/1.1" 200 4472 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:14:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:18:07 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19" -127.0.0.1 - - [15/Jun/2014:11:18:36 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19" -127.0.0.1 - - [15/Jun/2014:11:19:34 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:26:29 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:26:30 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:26:30 +0300] "GET /crawler/run.php HTTP/1.1" 200 2169 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:18 +0300] "GET / HTTP/1.1" 200 4555 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:19 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /post/?t=671069882968236&n=facebook HTTP/1.1" 200 3812 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/js/extlib/Snowball.stemmer.min.js HTTP/1.1" 200 17118 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/js/word_frequency.js HTTP/1.1" 200 5092 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/js/grid_search.js HTTP/1.1" 200 3073 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:37 +0300] "GET /assets/img/close-icon.gif HTTP/1.1" 200 682 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:38 +0300] "GET /assets/img/ui-bg_glass_65_ffffff_1x400.png HTTP/1.1" 200 387 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:38 +0300] "GET /assets/img/ui-icons_222222_256x240.png HTTP/1.1" 200 4127 "http://thinkup.my/post/?t=671069882968236&n=facebook" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:27:44 +0300] "GET / HTTP/1.1" 200 4556 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:32:34 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:32:34 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:32:35 +0300] "GET /crawler/run.php HTTP/1.1" 200 2174 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:33:28 +0300] "GET / HTTP/1.1" 200 4652 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:33:29 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:34:55 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:34:56 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:34:56 +0300] "GET /crawler/run.php HTTP/1.1" 200 2168 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:35:59 +0300] "GET / HTTP/1.1" 200 4741 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:36:00 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:05 +0300] "GET / HTTP/1.1" 200 4741 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:06 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET / HTTP/1.1" 200 2368 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 200 4196 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 200 5171 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 200 16992 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/css/insights.css HTTP/1.1" 200 3135 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 200 10535 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 200 3077 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:38 +0300] "GET /assets/js/jquery.js HTTP/1.1" 200 33130 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:39 +0300] "GET /assets/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1" 200 43840 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:43 +0300] "POST /session/login.php HTTP/1.1" 302 550 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:43 +0300] "GET / HTTP/1.1" 200 4740 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 200 1732 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /assets/js/linkify.js HTTP/1.1" 200 1163 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 200 457 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1534 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:44 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 200 48712 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:51 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:51 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:38:51 +0300] "GET /crawler/run.php HTTP/1.1" 200 2166 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:40:30 +0300] "GET / HTTP/1.1" 200 4383 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:40:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:40:46 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:40:46 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:40:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2166 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:41:38 +0300] "GET / HTTP/1.1" 200 4382 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:41:39 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:04 +0300] "GET / HTTP/1.1" 200 4401 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:49:05 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:00 +0300] "GET / HTTP/1.1" 200 4400 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:51:01 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET / HTTP/1.1" 200 4399 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:14 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:52:15 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:55:27 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:55:28 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:55:28 +0300] "GET /crawler/run.php HTTP/1.1" 200 2170 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:57:03 +0300] "GET / HTTP/1.1" 200 4405 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:57:04 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:57:11 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:57:11 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:57:11 +0300] "GET /crawler/run.php HTTP/1.1" 200 2158 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:58:20 +0300] "GET / HTTP/1.1" 200 4408 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:58:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:59:31 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:59:31 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:11:59:31 +0300] "GET /crawler/run.php HTTP/1.1" 200 2173 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:01:01 +0300] "GET / HTTP/1.1" 200 4415 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:01:01 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:05:05 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:05:05 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:05:06 +0300] "GET /crawler/run.php HTTP/1.1" 200 2158 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:05:52 +0300] "GET / HTTP/1.1" 200 4410 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:05:52 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:07:45 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:07:45 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:07:46 +0300] "GET /crawler/run.php HTTP/1.1" 200 2166 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:11:16 +0300] "GET /account/?m=manage HTTP/1.1" 200 15257 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:11:16 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:11:21 +0300] "GET /account/?p=insightsgenerator HTTP/1.1" 200 17474 "http://thinkup.my/account/?m=manage" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:11:21 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/account/?p=insightsgenerator" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:14:20 +0300] "GET / HTTP/1.1" 200 4394 "http://thinkup.my/account/?p=insightsgenerator" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:14:20 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:14:23 +0300] "GET /crawler/updatenow.php HTTP/1.1" 200 2532 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:14:23 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:14:23 +0300] "GET /crawler/run.php HTTP/1.1" 200 2170 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:16:25 +0300] "GET / HTTP/1.1" 200 4394 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:16:26 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:21:49 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 508 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET / HTTP/1.1" 200 4402 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:25 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:26 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:28:26 +0300] "GET /assets/js/jquery.min.map HTTP/1.1" 404 507 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:47 +0300] "GET / HTTP/1.1" 200 4400 "http://thinkup.my/crawler/updatenow.php" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/bootstrap.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/bootstrap-responsive.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/font-awesome.min.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/css/insights.css HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/jquery.js HTTP/1.1" 304 212 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/bootstrap.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/d3.min.js HTTP/1.1" 304 211 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/notify-insights.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /plugins/twitter/assets/js/widgets.js HTTP/1.1" 304 210 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /assets/js/linkify.js HTTP/1.1" 304 209 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /install/checkversion.php HTTP/1.1" 200 1533 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" -127.0.0.1 - - [15/Jun/2014:12:29:48 +0300] "GET /plugins/facebook/assets/img/favicon.png HTTP/1.1" 304 185 "http://thinkup.my/" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.132 Safari/537.36" diff --git a/logs/error.log b/logs/error.log deleted file mode 100644 index a1737d15c2..0000000000 --- a/logs/error.log +++ /dev/null @@ -1,114 +0,0 @@ -[Mon Jun 09 10:08:22 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 -[Mon Jun 09 10:08:54 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:11:23 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:12:39 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:24:50 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:25:08 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:25:35 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:27:14 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:28:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:28:32 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:30:18 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:31:43 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:41:05 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:41:34 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:42:59 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:44:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 -[Mon Jun 09 10:45:22 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-08&s=insight_name_goes_here667697876638770 -[Mon Jun 09 10:46:12 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:47:12 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:47:33 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:47:59 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:48:22 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:48:40 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 10:50:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:03:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php -[Mon Jun 09 11:05:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php -[Mon Jun 09 11:07:27 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:08:27 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php -[Mon Jun 09 11:12:17 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:13:37 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:14:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:14:32 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:14:48 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:15:24 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:17:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php -[Mon Jun 09 11:18:49 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php -[Mon Jun 09 11:20:32 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:21:10 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:21:28 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:21:42 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Mon Jun 09 11:22:45 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sat Jun 14 17:30:45 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:34:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:34:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:39:13 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:39:14 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:48:42 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:48:43 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:53:53 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:53:58 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:53:58 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:55:56 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 17:55:56 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:10:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:10:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:26:17 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:26:17 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:26:18 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:31:04 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:31:04 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:35:00 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:35:00 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:37:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553 -[Sat Jun 14 18:37:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/?u=Ann%20Shkerina&n=facebook&d=2014-06-14&s=Gender%20Analysis670703379671553 -[Sat Jun 14 18:42:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:42:12 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:59:50 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:59:50 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 18:59:51 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:01:26 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:01:27 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:02:46 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:02:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:06:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:06:48 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:07:57 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:07:57 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:08:10 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sat Jun 14 19:09:14 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:09:15 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sat Jun 14 19:09:15 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:10:29 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sat Jun 14 19:18:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php -[Sat Jun 14 19:21:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:21:02 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:28:31 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:28:31 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:31:24 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:31:24 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/plugins/assets, referer: http://thinkup.my/ -[Sat Jun 14 19:53:37 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook -[Sat Jun 14 22:02:08 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook -[Sat Jun 14 22:21:51 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook -[Sat Jun 14 22:22:20 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook -[Sun Jun 15 00:21:29 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook -[Sun Jun 15 01:25:02 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook -[Sun Jun 15 02:39:48 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 02:42:46 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 02:43:06 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 02:43:42 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 02:44:11 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 02:46:41 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 02:46:47 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/crawler/updatenow.php -[Sun Jun 15 03:13:23 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 10:06:39 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/favicon.ico -[Sun Jun 15 10:10:13 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '/var/www/ThinkU...')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/install/index.php?step=3 -[Sun Jun 15 10:10:15 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '/var/www/ThinkU...')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/session/login.php -[Sun Jun 15 10:10:17 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! To see the technical details of what went wrong, set debug = true in ThinkUp's config file.' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/session/login.php -[Sun Jun 15 10:14:04 2014] [error] [client 127.0.0.1] PHP Fatal error: Uncaught exception 'PDOException' with message 'Database error! ThinkUp could not execute the following query: REPLACE INTO tu_sessions (session_id, data, updated) VALUES (:session_id, :data, NOW()) Details: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'thinkup.tu_sessions' doesn't exist' in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php:216\nStack trace:\n#0 /var/www/ThinkUp/webapp/_lib/dao/class.SessionMySQLDAO.php(64): PDODAO->execute('REPLACE INTO #p...', Array)\n#1 [internal function]: SessionMySQLDAO->write('efmcjjirlc7bb3n...', '')\n#2 [internal function]: session_write_close()\n#3 {main}\n thrown in /var/www/ThinkUp/webapp/_lib/dao/class.PDODAO.php on line 216, referer: http://thinkup.my/ -[Sun Jun 15 10:18:07 2014] [error] [client 127.0.0.1] CSRF state token does not match one provided., referer: http://thinkup.my/account/?p=facebook -[Sun Jun 15 11:18:07 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 11:18:36 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 11:19:34 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 12:21:49 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ -[Sun Jun 15 12:28:26 2014] [error] [client 127.0.0.1] File does not exist: /var/www/ThinkUp/webapp/assets/js/jquery.min.map, referer: http://thinkup.my/ diff --git a/webapp/_lib/dao/interface.FavoritePostDAO.php b/webapp/_lib/dao/interface.FavoritePostDAO.php index dda51575bf..68a74c1376 100755 --- a/webapp/_lib/dao/interface.FavoritePostDAO.php +++ b/webapp/_lib/dao/interface.FavoritePostDAO.php @@ -129,7 +129,19 @@ public function getFavoritesFromOneYearAgo($fav_of_user_id, $network, $from_date */ public function getUsersWhoFavoritedMostOfYourPosts($author_user_id, $network, $last_x_days); + /** + * Get gender of users who favorited post. + * @param $post_id + * @return array of count for male and female + */ public function getGenderOfFavoriters($post_id); + /** + * Get gender of users who commented post. + * @param $author_user_id + * @param $network + * @param $last_x_days + * @return array of count for male and female + */ public function getGenderOfCommenters($post_id); } \ No newline at end of file diff --git a/webapp/_lib/dao/interface.PostDAO.php b/webapp/_lib/dao/interface.PostDAO.php index ea1a52a1af..b0adcfe846 100644 --- a/webapp/_lib/dao/interface.PostDAO.php +++ b/webapp/_lib/dao/interface.PostDAO.php @@ -790,6 +790,11 @@ public function deletePostsByHashtagId($hashtag_id); */ public function searchPostsByHashtag($keywords, Hashtag $hashtag, $network, $page_number=1, $page_count=20); + /** + * Get today's post with the biggest sum of likes and comments. + * @param int $author_id + * @param str $network + * @return Post object + */ public function getMostFavCommentPostsByUserId($author_id, $network); - } diff --git a/webapp/config.sample.inc.php b/webapp/config.sample.inc.php index 550be75a59..c0f54bfce0 100644 --- a/webapp/config.sample.inc.php +++ b/webapp/config.sample.inc.php @@ -35,7 +35,7 @@ // Optional Mandrill API key. Set this to a valid key to send email via Mandrill instead of PHP's mail() function.. // Get key at https://mandrillapp.com/settings/ in "SMTP & API Credentials" -$THINKUP_CFG['mandrill_api_key'] = 'obKDerfXlAXoh4up4ByKRA'; +$THINKUP_CFG['mandrill_api_key'] = ''; /************************************************/ /*** DATABASE CONFIG ***/ diff --git a/webapp/find b/webapp/find deleted file mode 100644 index 0f37d07d16..0000000000 --- a/webapp/find +++ /dev/null @@ -1,2599 +0,0 @@ -./plugins/facebook/model/class.FacebookPlugin.php: $facebook_crawler = new FacebookCrawler($instance, $access_token, $max_crawl_time); -./plugins/facebook/model/class.FacebookCrawler.php: * ThinkUp/webapp/plugins/facebook/model/class.FacebookCrawler.php -./plugins/facebook/model/class.FacebookCrawler.php:class FacebookCrawler { -./plugins/facebook/model/class.FacebookCrawler.php: * @return FacebookCrawler -./plugins/facebook/tests/TestOfFacebookCrawler.php: * ThinkUp/webapp/plugins/facebook/tests/TestOfFacebookCrawler.php -./plugins/facebook/tests/TestOfFacebookCrawler.php: * Test of FacebookCrawler -./plugins/facebook/tests/TestOfFacebookCrawler.php:require_once THINKUP_WEBAPP_PATH.'plugins/facebook/model/class.FacebookCrawler.php'; -./plugins/facebook/tests/TestOfFacebookCrawler.php:class TestOfFacebookCrawler extends ThinkUpUnitTestCase { -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile1_instance, 'fauxaccesstoken', 10); -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile1_instance, 'fauxaccesstoken', 10); -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile1_instance, 'fauxaccesstoken', 120); -./plugins/facebook/tests/TestOfFacebookCrawler.php: $this->assertFalse(preg_match('/FacebookCrawler::fetchPostsAndReplies,\d+ \| 0 Facebook posts found on page 2/', -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc2 = new FacebookCrawler($this->profile2_instance, 'fauxaccesstoken', 10); -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile3_instance, 'fauxaccesstoken', 10); -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->page1_instance, 'fauxaccesstoken', 10); -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->page2_instance, 'fauxaccesstoken', 10); -./plugins/facebook/tests/TestOfFacebookCrawler.php: $fbc = new FacebookCrawler($this->profile5_instance, 'fauxaccesstoken', 10); -./plugins/facebook/tests/TestOfFacebookPlugin.php:require_once THINKUP_WEBAPP_PATH.'plugins/facebook/model/class.FacebookCrawler.php'; -./plugins/googleplus/tests/TestOfGooglePlusCrawler.php: * ThinkUp/webapp/plugins/googleplus/tests/TestOfFacebookCrawler.php -./data/logs/crawler.log:2014-05-29 23:41:43 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage -./data/logs/crawler.log:2014-05-29 23:41:45 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:41:46 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:41:48 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:41:52 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:41:52 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:52 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:52 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage -./data/logs/crawler.log:2014-05-29 23:41:52 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:52 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... -./data/logs/crawler.log:2014-05-29 23:41:52 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:53 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:41:53 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:41:53 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... -./data/logs/crawler.log:2014-05-29 23:41:55 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:56 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:41:57 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) -./data/logs/crawler.log:2014-05-29 23:41:57 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:41:59 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) -./data/logs/crawler.log:2014-05-29 23:47:03 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:47:05 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:47:06 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:47:08 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:47:12 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ -./data/logs/crawler.log:2014-05-29 23:47:12 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... -./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:47:13 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:47:14 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:47:14 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:14 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... -./data/logs/crawler.log:2014-05-29 23:47:15 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:47:16 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) -./data/logs/crawler.log:2014-05-29 23:47:16 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:47:18 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) -./data/logs/crawler.log:2014-05-29 23:49:25 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:27 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:49:28 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:49:30 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:49:34 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:49:34 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:49:36 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:49:36 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:36 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:36 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... -./data/logs/crawler.log:2014-05-29 23:49:37 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:49:38 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) -./data/logs/crawler.log:2014-05-29 23:49:38 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:49:40 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) -./data/logs/crawler.log:2014-05-29 23:49:56 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 158944054123704 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 439709542591 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187898 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187899 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187900 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187902 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:49:58 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187903 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187905 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187920 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187921 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187922 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187923 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187924 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187925 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187926 on facebook for Chris Moyer:7... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187927 on facebook for Chris Moyer:8... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187928 on facebook for Chris Moyer:9... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187929 on facebook for Chris Moyer:10... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10151848164181985 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151722324867461 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437524232591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435724732591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 435193747591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 149548708418520 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 145562958818862 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 128550830526770 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 151660894852759 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 427489887591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 118686211514992 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141093305930579 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 422431907591 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 141642905870455 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 148686895142561 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150414865507812 -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.8MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:49:59 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150328374252744 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 10150357566827744 -./data/logs/crawler.log:2014-05-29 23:50:01 | 5.7MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... -./data/logs/crawler.log:2014-05-29 23:50:05 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437900891355 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storeLinks,646 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.8MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:06 | 6.0MB | INFO | FacebookCrawler::processStream,566 | Added 1 like(s) for post 437894121355 -./data/logs/crawler.log:2014-05-29 23:50:06 | 6.0MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 0 like(s) for post 437660146355 -./data/logs/crawler.log:2014-05-29 23:50:06 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104934038 on facebook page for Hacking and Security::)... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:08 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 775180192497884 -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | INFO | FacebookCrawler::processStream,566 | Added 25 like(s) for post 671912336174291 -./data/logs/crawler.log:2014-05-29 23:50:09 | 6.1MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) -./data/logs/crawler.log:2014-05-29 23:50:09 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,599 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,460 | Added 0 comment(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | INFO | FacebookCrawler::processStream,566 | Added 27 like(s) for post 10151734003261985 -./data/logs/crawler.log:2014-05-29 23:50:11 | 5.9MB | SUCCESS| FacebookCrawler::processStream,583 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) -./data/logs/crawler.log:2014-06-01 15:40:12 | 4.5MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 18 Facebook posts found on page 1 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 158944054123704, post 1 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 606837591 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.6MB | INFO | FacebookCrawler::processStream,286 | Post 158944054123704 not in storage -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 158944054123704 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 158944054123704 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 439709542591, post 2 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 439709542591 not in storage -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 439709542591 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 439709542591 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151848164181985, post 3 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10151848164181985 not in storage -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187893 on facebook for Chris Moyer:Commenting to myself... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 691270740 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187896 on facebook for Jeffrey McManus:And another.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187897 on facebook for Chris Moyer:An one more.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187898 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187899 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187900 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187902 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187903 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187905 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187906 on facebook for Chris Moyer:Seven?... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187907 on facebook for Chris Moyer:Can I do 8?... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187908 on facebook for Chris Moyer:I can do 9, too.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187909 on facebook for Chris Moyer:I think I lost count... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187911 on facebook for Chris Moyer:Well. Huh.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187914 on facebook for Chris Moyer:This is like talking... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187915 on facebook for Chris Moyer:Except, I don't talk... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187916 on facebook for Chris Moyer:Werid.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187917 on facebook for Chris Moyer:Oops, weird.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187918 on facebook for Chris Moyer:There we go.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187919 on facebook for Chris Moyer:Ok. Starting over.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187920 on facebook for Chris Moyer:1... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187921 on facebook for Chris Moyer:2... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187922 on facebook for Chris Moyer:3... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187923 on facebook for Chris Moyer:4... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187924 on facebook for Chris Moyer:5... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187925 on facebook for Chris Moyer:6... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187926 on facebook for Chris Moyer:7... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187927 on facebook for Chris Moyer:8... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187928 on facebook for Chris Moyer:9... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187929 on facebook for Chris Moyer:10... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 29187930 on facebook for Chris Moyer:Ok.... -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10151848164181985 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10151848164181985 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151722324867461, post 4 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:14 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151722324867461 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 151722324867461 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 151722324867461 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437524232591, post 5 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437524232591 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437524232591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 437524232591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435724732591, post 6 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435724732591 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1034402187 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13699089 on facebook for Marcy Bailey Carrico:seriously? Can we s... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13699456 on facebook for Gina Trapani:Oh I wasn't on! I wa... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 435724732591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 435724732591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 435193747591, post 7 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 435193747591 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 435193747591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 435193747591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 149548708418520, post 8 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 149548708418520 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 149548708418520 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 149548708418520 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 145562958818862, post 9 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 145562958818862 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 145562958818862 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 145562958818862 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 128550830526770, post 10 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 128550830526770 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501805642 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 817240 on facebook for Dan Tentler:depends on what chan... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1316858804 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 817252 on facebook for Zack Murtha:I'm always hoping fo... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 818549 on facebook for Marcy Bailey Carrico:I want to see you on... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 128550830526770 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 128550830526770 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 151660894852759, post 11 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 151660894852759 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 677588391 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1414665 on facebook for Kevin Purdy:But, Gina! He/she ha... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 151660894852759 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 151660894852759 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 427489887591, post 12 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 427489887591 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 697015835 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13559353 on facebook for Mitch Wagner:Getting a fit bit? L... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 24404996 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13687827 on facebook for Elizabeth Lawley:/want... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 427489887591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 427489887591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 118686211514992, post 13 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 118686211514992 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 118686211514992 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 118686211514992 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141093305930579, post 14 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141093305930579 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 141093305930579 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 141093305930579 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 422431907591, post 15 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 422431907591 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 422431907591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 422431907591 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 141642905870455, post 16 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 141642905870455 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1143876 on facebook for Mitch Wagner:Delicious, delicious... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1144238 on facebook for Marcy Bailey Carrico:I have only one thin... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 141642905870455 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 141642905870455 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 148686895142561, post 17 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 148686895142561 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 1335723 on facebook for Kevin Purdy:Happens all the time... -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 148686895142561 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 148686895142561 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150414865507812, post 18 of 18 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 503315820 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 10150414865507812 not in storage -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10150414865507812 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10150414865507812 -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.8MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 18 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-06-01 15:40:15 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 606837591 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150328374252744, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150328374252744 not in storage -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10150328374252744 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10150328374252744 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.6MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10150357566827744, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 729597743 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,286 | Post 10150357566827744 not in storage -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10150357566827744 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 10150357566827744 -./data/logs/crawler.log:2014-06-01 15:40:17 | 5.7MB | SUCCESS| FacebookCrawler::processStream,582 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.7MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.7MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437900891355, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.7MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437900891355 not in storage -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.8MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1036552729 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166192 on facebook page for Matthew Fleisher:The issue with faceb... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000028811048 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166223 on facebook page for Paul Cassidy:Maybe you should hav... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 44100633 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166189 on facebook page for Dave Myers:Protect from everyon... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 18417420 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166962 on facebook page for Dave F. Samuel:This is missing a 6t... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 518042907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166229 on facebook page for Alex Wright:Well good thing the ... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046979495 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166207 on facebook page for Ben Stanley:Doesn't really matte... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1064132204 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28168085 on facebook page for Christina Rockwood:"Protecting" my data... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 22419216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28167048 on facebook page for Sean Lancaster:"everyone else, not ... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 61309586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166298 on facebook page for Jan Gvdp:of course you protec... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000047561578 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28168089 on facebook page for Leonardo Dutra:Why is Facebook on t... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1280168112 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166548 on facebook page for Leo Gharapetian:In progress and pend... -./data/logs/crawler.log:2014-06-01 15:40:21 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1655356726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166372 on facebook page for Damon Freinik:If you put it on the... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001277313216 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166201 on facebook page for Joe McLaughlin:The difference is, A... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 556987515 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175126 on facebook page for Joe Pepersack:Of course they prote... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560992307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166457 on facebook page for Eric Tiberius Blue:Of course they prote... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 500557137 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28174387 on facebook page for Matt Stratton:As mentioned, by som... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641653272 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175518 on facebook page for Jarek Niskiewicz:Sure they do, makes ... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003784651128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28170157 on facebook page for Banlu Anumart:Good guy Dropbox.... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 564295957 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166302 on facebook page for Daniel Fugisawa:Yeah, right. Just to... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000290596817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28166245 on facebook page for Meghan Carnowski:Richard?... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000891619230 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176143 on facebook page for Chris Whitman:It doesn't really ma... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 888230692 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28173597 on facebook page for Michelle Genée:Jonathan FYI... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1291663317 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28173177 on facebook page for Ma Sheila A Magboo:Really?... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1302225487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28171786 on facebook page for Diane Thomas:Thank you, Brian Tho... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1049255840 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28171258 on facebook page for Marcus Randall:Similar to comparing... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 333500103 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175606 on facebook page for Justin Wall:RAM is free these da... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 604622899 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175601 on facebook page for Jessica A Thomas:ram is like cowbell,... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000073694609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175679 on facebook page for Howard Davies:If a person is still... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389208464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28177015 on facebook page for Swapnil Reloaded:Wait for DDR4 to com... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 668312109 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176730 on facebook page for Wade Stubblefield:I run StarCraft II a... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002380802361 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176684 on facebook page for Robert Williams:or you know if youre... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001110528726 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176537 on facebook page for Mart Marandi:Ram or Lamb?... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1198561283 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176335 on facebook page for Maximilian Bocchine:This article was cle... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 796205273 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176303 on facebook page for Jean-Français Carmer:Pier-Olivier Leclair... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000173096804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176127 on facebook page for Bro PanDa:Well if anyone wants... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555279771 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175987 on facebook page for Jan Andrew Bloxham:It hasn't been the c... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1023357430 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175901 on facebook page for Roman Nahal:Not unless you harne... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000618350257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175841 on facebook page for Sylwen Cabose:The price of ram has... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000600778454 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175832 on facebook page for Sif Lord:Pushing the Limits o... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000656926595 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175613 on facebook page for Alexander Hoke:Linus! :D... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002389438263 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176685 on facebook page for Mat Babyak:6gb is more than eno... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003025575055 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175934 on facebook page for Dapper Dab:While he has some go... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 576534241 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28175645 on facebook page for Jonathon Wisnoski:Well now with comput... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 734732932 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176037 on facebook page for Mark Quitoriano:if only i can put 32... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1549913136 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 28176149 on facebook page for Ian Graves:I had 32gb in my mac... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437900891355 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 437900891355 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437894121355, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,286 | Post 437894121355 not in storage -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storeLinks,644 | http://lifehacker.com/5653429/top-10-ios-jailbreak-hacks already exists in links table -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1479111505 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13765492 on facebook page for Harald Chuchlik:Troll somewhere else... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 535362181 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13765969 on facebook page for Chad Settlemier:What about iPhone 4 ... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.8MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437894121355 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 641265671 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:22 | 6.0MB | INFO | FacebookCrawler::processStream,565 | Added 1 like(s) for post 437894121355 -./data/logs/crawler.log:2014-06-01 15:40:22 | 6.0MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 2 post(s), 1 user(s) and 1 like(s) -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 2 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 437660146355, post 1 of 1 on page 2 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 7568536355 facebook page's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 437660146355 not in storage -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 100001078428730 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13761242 on facebook page for Christene Snively:Five things every gi... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 1184584231 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13761476 on facebook page for Bill Goodman:^^^^^^^^^^^^^^^^ -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 533302090 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 13763960 on facebook page for Kenneth Lam:I use SUPER (freewar... -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 437660146355 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | INFO | FacebookCrawler::processStream,565 | Added 0 like(s) for post 437660146355 -./data/logs/crawler.log:2014-06-01 15:40:22 | 5.9MB | SUCCESS| FacebookCrawler::processStream,582 | On page 2, captured 1 post(s), 0 user(s) and 0 like(s) -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.0MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 2 Facebook posts found on page 1 -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.0MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 775180192497884, post 1 of 2 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.0MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 133954286636768 facebook page's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 775180192497884 not in storage -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1046294762 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104928997 on facebook page for Ahmed Gamal:I hate this Tennison... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1306697257 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929055 on facebook page for Daniel Zhi:Agree that Basketbal... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000076041242 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929597 on facebook page for Eugene Serkin:Would be interesting... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001065080101 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929254 on facebook page for Roman Vorobets:There are not enough... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 740952671 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929012 on facebook page for Gal Appelbaum:You should also add ... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 682765760 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929336 on facebook page for Shreyas Subramaniam:The basketball probl... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1170794705 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932142 on facebook page for Maria Jose Patron:Angel :P... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000840472540 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929049 on facebook page for Mahsum Yılmaz:Nice :)... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1544147638 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930492 on facebook page for Ahmed Fahmy:Basketball ,, just r... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006804304956 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930663 on facebook page for Arman Prayudi:mas, bantuin menghac... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1614833825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929439 on facebook page for Andrey Nevolin:Hello Facebook! -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007139493100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929421 on facebook page for Katalin Brányiné Sulák:Tennison: it is very... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000241245915 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929371 on facebook page for Dmitry Stepanenko:2 FB Team: guys, you... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000015903907 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929320 on facebook page for René van den Berg:After having a look ... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002474965959 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929256 on facebook page for Kamil Dębowski:please clarify: -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000489555914 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929004 on facebook page for Parker Zhang:For problem 2. no si... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934575 on facebook page for Valerie Tumnous:This man has contact... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006602342768 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934567 on facebook page for Valerie Tumnous:Now put theory to pr... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007051626693 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934166 on facebook page for Ay Se Zarar:https://www.facebook... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934070 on facebook page for Jinsean Tee:helo are you know ha... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 206586276069602 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104934038 on facebook page for Hacking and Security::)... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006399125805 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933931 on facebook page for Çûtê Moi:Do you want to hack ... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005737810147 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933865 on facebook page for Rockie Abineno:http://www.fb-hacker... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001969645357 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933373 on facebook page for Adam Ad:<<<<<<<< -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002650086570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104933322 on facebook page for Micael Melo:http://www.youtube.c... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932844 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144454524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932623 on facebook page for Michael Gidron:wow.. I over looked ... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000987379715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932083 on facebook page for Hafiz Ahmad:<<<<<<<< -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002169050570 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104931489 on facebook page for IntērnàTïônàl Bräñðêð Bâçhíì:i need help. if any ... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001089217022 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930825 on facebook page for Marcin Krnąbny:Download: http://www... -./data/logs/crawler.log:2014-06-01 15:40:24 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930684 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000071074557 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930656 on facebook page for Yoandry Martinez Rodriguez:I think -with all re... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001420300757 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930589 on facebook page for Anis Imanis:dam i forget it !... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005808700499 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930496 on facebook page for Narendra Yadav:Facebook Hacker Cup ... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 855354123 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930475 on facebook page for Atul Anand:for square detection... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006184567958 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930266 on facebook page for Diego Arcos:Alejandro R. Arzola ... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000075861819 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104930125 on facebook page for Muhammad Ridwan Apriansyah:Well i prefer to use... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001049452062 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929872 on facebook page for Eduardo Cuesta:I have a question ab... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006628740846 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929781 on facebook page for Muhammad Shufi:Nice... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929756 on facebook page for Anubhav Joshi:why is my second que... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001024632246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929542 on facebook page for Victor Borisov:Третья зад... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1565831002 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929509 on facebook page for Omar Rivera:The order players in... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007113308231 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929449 on facebook page for Baljeet Singh:My Solution for Squa... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001847357742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929272 on facebook page for Durgesh Kumar:the 4th case is not ... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003231711648 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929213 on facebook page for Ollo Akhtom:I used the same appr... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 6203047 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929196 on facebook page for David Machaj:I agree with the "ru... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1177864071 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929194 on facebook page for Zakka Fauzan Muhammad:can anyone explain t... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1548822479 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929160 on facebook page for Irvan:Thanks for your solu... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001917451288 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929134 on facebook page for Ashutosh Kumar:Can some one explain... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002177566168 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104929131 on facebook page for Kondal Chinnu:Hi hackers... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005963640296 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.2MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 104932845 on facebook page for Ayush Shrivastava:Do you want to hack ... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 775180192497884 -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002526577162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 632661716 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000063019464 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228678051 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1664847556 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003738152592 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002077698098 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001875705436 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000396618817 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1727363100 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005041530255 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006846763128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003184362516 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003122999128 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004268793723 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 750619142 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000641970489 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1187442680 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006262693277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1496594985 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000642606673 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002365850833 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,565 | Added 25 like(s) for post 775180192497884 -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 671912336174291, post 2 of 2 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,286 | Post 671912336174291 not in storage -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1557887825 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655150 on facebook page for Sarah Eaglesfield:You had 7,500 partic... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1076958099 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655264 on facebook page for Rory O'Logan:Darn I thought a sin... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004043929299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655155 on facebook page for Chuột Bạch:1425 :)... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1814672596 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656231 on facebook page for Eli Mullis:Why is my source cod... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 701481590 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655420 on facebook page for Martin Böschen:My solution for squa... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000839867024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655257 on facebook page for Keyvhinng Espinoza:Will fb publish an o... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 212404024 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655229 on facebook page for Randy Augustus:So we don't get noti... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1207729328 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655177 on facebook page for Oswaldo Zavala:718 =)... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84659341 on facebook page for Ankit Kumar:i want to become....... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1057089246 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84659121 on facebook page for Lasha Lakirbaia:There should be a be... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 601609715 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84658912 on facebook page for Betsu Melaku:Has Petr Mitrichev p... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656855 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004948027524 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656854 on facebook page for Ramazan Aşkın:https://www.facebook... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001023588299 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656105 on facebook page for Yogeesh Seralathan:Hollyshit! i have su... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000429699776 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655893 on facebook page for Anubhav Joshi:can anybody tell wha... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000878314124 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655535 on facebook page for Minseok Jang:3334 :) see u on sec... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002196449131 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655391 on facebook page for Santosh Kumar Siddharth:Sanjeev >:o... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 635372289 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655310 on facebook page for Gergely Varsanyi:I wish we could see ... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000611973398 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655253 on facebook page for Sathish Palanisamy:for the second probl... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 627562277 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655252 on facebook page for Deepanshu Mehta:When is round 1 is s... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1310613804 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655224 on facebook page for Samarth Agarwal:Can someone explain ... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002867305975 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655223 on facebook page for Muhammad Arslan Dogar:i don't want anythin... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 652907192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655207 on facebook page for Samanun Chotkiatikhun:Hello, Do anyone mis... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1144500711 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84655204 on facebook page for Carlos Martinez:I don't understand, ... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006752292748 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 84656942 on facebook page for Jesus David Pacheco Cantero:http://gemhacks.jimd... -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 671912336174291 -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007131154707 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004607914407 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001488021086 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100007089823970 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100005227441659 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006177341038 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1409951512 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002824866487 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446396999 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002366359603 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1228359709 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 510454756 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100004211803440 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003678582445 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002606505562 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003517224742 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001214007485 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003250194462 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001173606228 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 687779353 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1258986227 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100003617358781 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001324314963 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002390600599 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001288311439 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | INFO | FacebookCrawler::processStream,565 | Added 25 like(s) for post 671912336174291 -./data/logs/crawler.log:2014-06-01 15:40:25 | 6.1MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 2 post(s), 0 user(s) and 50 like(s) -./data/logs/crawler.log:2014-06-01 15:40:25 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,187 | No Facebook posts found for ID 133954286636768 -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchPostsAndReplies,174 | 1 Facebook posts found on page 1 -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,233 | Beginning to process 10151734003261985, post 1 of 1 on page 1 -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | SUCCESS| FacebookCrawler::fetchUser,104 | Successfully fetched 501771984 facebook's details from Facebook -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,286 | Post 10151734003261985 not in storage -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 10086042 on facebook for Lori Soper Turnbull:Hope you both had fu... -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1605695984 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 10094495 on facebook for Lauren Millard:Adorable...a match m... -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1492862525 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::storePostsAndAuthors,598 | Added post ID 10101125 on facebook for Heather Richards Seibel:Nice picture.... -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,459 | Added 0 comment(s) for post 10151734003261985 -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100006810606369 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831914572 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 827539094 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000504231621 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1521122629 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 15720162 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1372724611 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002076535202 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100001545696019 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1417294568 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1257426349 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 711693377 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100000654408001 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1666065192 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 560169649 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 9338799 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 765384803 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 5727834 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 100002027420238 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1446338213 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 831584694 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1403783543 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1188169237 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1154415586 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1005965064 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 555287307 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 6.0MB | INFO | FacebookCrawler::fetchUser,110 | Error fetching 1392207609 facebook's details from Facebook API, response was NULL -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | INFO | FacebookCrawler::processStream,565 | Added 27 like(s) for post 10151734003261985 -./data/logs/crawler.log:2014-06-01 15:40:27 | 5.9MB | SUCCESS| FacebookCrawler::processStream,582 | On page 1, captured 1 post(s), 0 user(s) and 27 like(s) diff --git a/webapp/install/sql/build-db_mysql.sql b/webapp/install/sql/build-db_mysql.sql index 70a7a90807..ec7cc1b773 100644 --- a/webapp/install/sql/build-db_mysql.sql +++ b/webapp/install/sql/build-db_mysql.sql @@ -526,7 +526,6 @@ CREATE TABLE tu_users ( user_name varchar(255) NOT NULL COMMENT 'Username on a given network, like a user''s Twitter username or Facebook user name.', full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', - gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', diff --git a/webapp/plugins/facebook/model/class.FacebookCrawler.php b/webapp/plugins/facebook/model/class.FacebookCrawler.php index 84c8162cec..6bd86423fa 100644 --- a/webapp/plugins/facebook/model/class.FacebookCrawler.php +++ b/webapp/plugins/facebook/model/class.FacebookCrawler.php @@ -81,7 +81,6 @@ public function fetchUser($user_id, $found_in, $force_reload_from_facebook=false // Get owner user details and save them to DB $fields = $network!='facebook page'?'id,name,gender,about,location,website':''; $user_details = FacebookGraphAPIAccessor::apiRequest('/'.$user_id, $this->access_token, $fields ); - if (isset($user_details)) { $user_details->network = $network; } @@ -317,7 +316,6 @@ private function processStream($stream, $network, $page_number) { if (isset($p->source) || isset($p->link)) { // there's a link to store $link_url = (isset($p->source))?$p->source:$p->link; - $link = new Link(array( "url"=>$link_url, "expanded_url"=>'', @@ -518,7 +516,7 @@ private function processStream($stream, $network, $page_number) { $api_call = 'https://graph.facebook.com/'.$p->from->id.'_'.$post_id.'/likes?access_token='. $this->access_token.$offset_str; do { - $likes_stream = FacebookGraphAPIAccessor::rawApiRequest($ap_call); + $likes_stream = FacebookGraphAPIAccessor::rawApiRequest($api_call); if (isset($likes_stream) && is_array($likes_stream->data)) { foreach ($likes_stream->data as $l) { if (isset($l->name) && isset($l->id)) { diff --git a/webapp/res b/webapp/res deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/webapp/session/forgot.php b/webapp/session/forgot.php index c974aeac63..538a4b08d3 100644 --- a/webapp/session/forgot.php +++ b/webapp/session/forgot.php @@ -30,4 +30,5 @@ require_once 'init.php'; $controller = new ForgotPasswordController(); +echo $controller->go(); From 2023935301766683a65fc734f98a42bf210f39d4 Mon Sep 17 00:00:00 2001 From: anna Date: Wed, 18 Jun 2014 11:32:58 +0300 Subject: [PATCH 15/40] Tests for gender analysis --- .../tests/TestOfAllAboutYouInsight.php | 5 +- .../tests/TestOfGenderAnalysisInsight.php | 240 +++++++++++++++--- 2 files changed, 203 insertions(+), 42 deletions(-) diff --git a/webapp/plugins/insightsgenerator/tests/TestOfAllAboutYouInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfAllAboutYouInsight.php index 3c9a70ac2b..d234f4a56c 100644 --- a/webapp/plugins/insightsgenerator/tests/TestOfAllAboutYouInsight.php +++ b/webapp/plugins/insightsgenerator/tests/TestOfAllAboutYouInsight.php @@ -54,7 +54,7 @@ public function testCountFirstPersonReferences() { $this->assertEqual($count, 2); $count = AllAboutYouInsight::countFirstPersonReferences( - "New Years Eve! Feeling very gay today, but not very homosexual."); + "New Year�s Eve! Feeling very gay today, but not very homosexual."); $this->assertEqual($count, 0); $count = AllAboutYouInsight::countFirstPersonReferences("Tis the season for adorable cards w/ photos of my ". @@ -85,6 +85,7 @@ public function testAllAboutYouInsightNoPriorBaseline() { $today = date ('Y-m-d'); $result = $insight_dao->getInsight('all_about_you', 10, $today); $this->debug(Utils::varDumpToString($result)); + $this->assertNotNull($result); $this->assertIsA($result, "Insight"); $this->assertPattern('/\@testeriffic\'s tweets contained the words/', $result->text); @@ -237,7 +238,7 @@ private function getTestPostObjects() { $post_text_arr[] = "I don't know, really? I thought so."; $post_text_arr[] = "Now that I'm back on Android, realizing just how under sung Google Now is. ". "I want it everywhere."; - $post_text_arr[] = "New Years Eve! Feeling very gay today, but not very homosexual."; + $post_text_arr[] = "New Year�s Eve! Feeling very gay today, but not very homosexual."; $post_text_arr[] = "Took 1 firearms safety class to realize my ". "fantasy of stopping an attacker was just that: http://bit.ly/mybH2j Slate: http://slate.me/T6vwde"; $post_text_arr[] = "When @anildash told me he was writing this I was ". diff --git a/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php index b9aaa3230b..bd82ad50dd 100644 --- a/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php +++ b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php @@ -46,60 +46,220 @@ public function tearDown() { parent::tearDown(); } - public function testGenderAnalysisForFaceBook() { - //$this->debug(Utils::varDumpToString($result)); - echo "start\n"; -/* $posts = array(); - $posts[] = new Post(array( - 'post_id' => 5, - 'author_user_id' => 1, - 'favlike_count_cache' => 3, - 'post_text' => "post1", - 'pub_date' => "2014-06-06 10:38:20", - 'in_reply_to_post_id' => "NULL", - 'reply_count_cache' => 1, - 'favlike_count_cache' => 1 - )); - $posts[] = new Post(array( - 'post_id' => 6, - 'author_user_id' => 1, - 'favlike_count_cache' => 0, - 'post_text' => "comm", - 'pub_date' => "2014-06-06 10:38:20", - 'in_reply_to_post_id' => "5", - 'reply_count_cache' => 0, - 'favlike_count_cache' => 0 - )); - $fpost_dao = DAOFactory::getDAO('PostDAO'); */ - - $builders = self::buildData(); + public function testGenderAnalysisForFaceBookWomenFavotire() { + // Get data ready that insight requires + $builders = self::buildDataForFemale(); $instance = new Instance(); - $instance->id = 10; - $instance->network_user_id = 7654321; + $instance->id = 100; + $instance->network_user_id = 9654321; $instance->network_username = 'user'; $instance->network = 'facebook'; $insight_plugin = new GenderAnalysisInsight(); - $insight_plugin->generateInsight($instance, $last_week_of_posts, 3); - echo "end\n"; - $this->assertFalse(true,"sss"); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('gender_analysis', 100, $today); + $gender_data = unserialize($result->related_data); + $this->debug(Utils::varDumpToString($result)); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Women favorite!'); + $this->assertIsA($gender_data, "array"); + $this->assertIsA($gender_data[0], "Post"); + $this->assertEqual(count($gender_data), 2); + $this->assertEqual($gender_data[1]['female'], 3); + $this->assertEqual($gender_data[1]['male'], 2); } - private function buildData() { - $builders = array(); + + public function testGenderAnalysisForFaceBookMenFavotire() { + // Get data ready that insight requires + $builders = self::buildDataForMale(); + $instance = new Instance(); + $instance->id = 100; + $instance->network_user_id = 8654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new GenderAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('gender_analysis', 100, $today); + $gender_data = unserialize($result->related_data); + $this->debug(Utils::varDumpToString($result)); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Men favorite!'); + $this->assertIsA($gender_data, "array"); + $this->assertIsA($gender_data[0], "Post"); + $this->assertEqual(count($gender_data), 2); + $this->assertEqual($gender_data[1]['female'], 2); + $this->assertEqual($gender_data[1]['male'], 3); + } + + public function testGenderAnalysisForFaceBookAllFavotire() { + // Get data ready that insight requires + $builders = self::buildDataForAll(); + $instance = new Instance(); + $instance->id = 100; + $instance->network_user_id = 5654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new GenderAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('gender_analysis', 100, $today); + $gender_data = unserialize($result->related_data); + $this->debug(Utils::varDumpToString($result)); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Loved by all!'); + $this->assertIsA($gender_data, "array"); + $this->assertIsA($gender_data[0], "Post"); + $this->assertEqual(count($gender_data), 2); + $this->assertEqual($gender_data[1]['female'], 2); + $this->assertEqual($gender_data[1]['male'], 2); + } + + private function buildDataForFemale() { + $builders_female = array(); + + $now = date('Y-m-d H:i:s'); + $yesterday = date('Y-m-d H:i:s', strtotime('yesterday')); + + $builders_female[] = FixtureBuilder::build('posts', array('id'=>333, 'post_id'=>333, 'author_user_id'=>9654321, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>3, 'is_protected'=>0,'favlike_count_cache' => 2)); + + $builders_female[] = FixtureBuilder::build('posts', array('id'=>334, 'post_id'=>334, 'author_user_id'=>9654321, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 333)); + + $builders_female[] = FixtureBuilder::build('posts', array('id'=>335, 'post_id'=>335, 'author_user_id'=>9654320, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 333)); + + $builders_female[] = FixtureBuilder::build('posts', array('id'=>336, 'post_id'=>336, 'author_user_id'=>9654320, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 2.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 333)); + + $builders_female[] = FixtureBuilder::build('favorites', array('post_id'=>333, 'author_user_id'=>9654321, + 'fav_of_user_id'=>9654321, 'network'=>'facebook')); + + $builders_female[] = FixtureBuilder::build('favorites', array('post_id'=>333, 'author_user_id'=>9654321, + 'fav_of_user_id'=>9654320, 'network'=>'facebook')); + + $builders_female[] = FixtureBuilder::build('users', array('user_id'=>9654321, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'male', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders_female[] = FixtureBuilder::build('users', array('user_id'=>9654320, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'female', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders_female; + + } + + private function buildDataForMale() { + $builders_male = array(); $now = date('Y-m-d H:i:s'); $yesterday = date('Y-m-d H:i:s', strtotime('yesterday')); - $builders[] = FixtureBuilder::build('posts', array('id'=>133, 'post_id'=>133, 'author_user_id'=>7654321, + $builders_male[] = FixtureBuilder::build('posts', array('id'=>233, 'post_id'=>233, 'author_user_id'=>8654321, 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', 'network'=>'facebook', 'post_text'=>'This is a simple post.', - 'pub_date'=>$now, 'reply_count_cache'=>1, 'is_protected'=>0,'favlike_count_cache' => 1)); + 'pub_date'=>$now, 'reply_count_cache'=>3, 'is_protected'=>0,'favlike_count_cache' => 2)); + + $builders_male[] = FixtureBuilder::build('posts', array('id'=>234, 'post_id'=>234, 'author_user_id'=>8654321, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 233)); + + $builders_male[] = FixtureBuilder::build('posts', array('id'=>235, 'post_id'=>235, 'author_user_id'=>8654320, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + + $builders_male[] = FixtureBuilder::build('posts', array('id'=>236, 'post_id'=>236, 'author_user_id'=>8654320, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 2.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + + $builders_male[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654321, 'network'=>'facebook')); + + $builders_male[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654320, 'network'=>'facebook')); + + $builders_male[] = FixtureBuilder::build('users', array('user_id'=>8654321, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'female', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders_male[] = FixtureBuilder::build('users', array('user_id'=>8654320, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'male', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders_male; - $builders[] = FixtureBuilder::build('posts', array('id'=>134, 'post_id'=>134, 'author_user_id'=>7654321, - 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', - 'network'=>'facebook', 'post_text'=>'This is a simple cooment.', - 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0,'in_reply_to_post_id' => 133)); } + private function buildDataForAll() { + $builders= array(); + + $now = date('Y-m-d H:i:s'); + $yesterday = date('Y-m-d H:i:s', strtotime('yesterday')); + + $builders[] = FixtureBuilder::build('posts', array('id'=>433, 'post_id'=>433, 'author_user_id'=>5654321, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>3, 'is_protected'=>0,'favlike_count_cache' => 2)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>434, 'post_id'=>434, 'author_user_id'=>5654321, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 433)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>435, 'post_id'=>435, 'author_user_id'=>5654320, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 433)); + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>433, 'author_user_id'=>5654321, + 'fav_of_user_id'=>5654321, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>433, 'author_user_id'=>5654321, + 'fav_of_user_id'=>5654320, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>5654321, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'female', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>5654320, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'male', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders; + + } } From 6a480bc09b3aaaf0b7f76a39d12e0f4dd29a053e Mon Sep 17 00:00:00 2001 From: anna Date: Wed, 18 Jun 2014 12:45:09 +0300 Subject: [PATCH 16/40] fixed merge conflict2 --- .../tests/TestOfGenderAnalysisInsight.php | 34 ++----------------- 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php index b74b630fa2..e38fd83507 100644 --- a/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php +++ b/webapp/plugins/insightsgenerator/tests/TestOfGenderAnalysisInsight.php @@ -46,46 +46,17 @@ public function tearDown() { parent::tearDown(); } -<<<<<<< HEAD - public function testGenderAnalysisForFaceBook() { - $posts = array(); - $posts[] = new Post(array( - 'post_id' => 5, - 'author_user_id' => 1, - 'favlike_count_cache' => 3, - 'post_text' => "post1", - 'pub_date' => "2014-06-06 10:38:20", - 'in_reply_to_post_id' => "NULL", - 'reply_count_cache' => 1, - 'favlike_count_cache' => 1 - )); - $posts[] = new Post(array( - 'post_id' => 6, - 'author_user_id' => 1, - 'favlike_count_cache' => 0, - 'post_text' => "comm", - 'pub_date' => "2014-06-06 10:38:20", - 'in_reply_to_post_id' => "5", - 'reply_count_cache' => 0, - 'favlike_count_cache' => 0 - )); - $fpost_dao = DAOFactory::getDAO('PostDAO'); - - $builders = self::buildData(); -======= + public function testGenderAnalysisForFaceBookWomenFavotire() { // Get data ready that insight requires $builders = self::buildDataForFemale(); ->>>>>>> 1943-gender-analisis + $instance = new Instance(); $instance->id = 100; $instance->network_user_id = 9654321; $instance->network_username = 'user'; $instance->network = 'facebook'; $insight_plugin = new GenderAnalysisInsight(); -<<<<<<< HEAD - $insight_plugin->generateInsight($instance, $last_week_of_posts, 3); -======= $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); // Assert that insight got inserted @@ -102,7 +73,6 @@ public function testGenderAnalysisForFaceBookWomenFavotire() { $this->assertEqual(count($gender_data), 2); $this->assertEqual($gender_data[1]['female'], 3); $this->assertEqual($gender_data[1]['male'], 2); ->>>>>>> 1943-gender-analisis } public function testGenderAnalysisForFaceBookMenFavotire() { From e629250d9680ed50140015508d42a890372c27e0 Mon Sep 17 00:00:00 2001 From: anna Date: Wed, 18 Jun 2014 12:48:48 +0300 Subject: [PATCH 17/40] fixed merge conflict2 --- webapp/install/sql/build-db_mysql.sql | 3 --- 1 file changed, 3 deletions(-) diff --git a/webapp/install/sql/build-db_mysql.sql b/webapp/install/sql/build-db_mysql.sql index 656363216f..4145943d95 100644 --- a/webapp/install/sql/build-db_mysql.sql +++ b/webapp/install/sql/build-db_mysql.sql @@ -526,11 +526,8 @@ CREATE TABLE tu_users ( user_name varchar(255) NOT NULL COMMENT 'Username on a given network, like a user''s Twitter username or Facebook user name.', full_name varchar(255) NOT NULL COMMENT 'Full name on a given network.', avatar varchar(255) NOT NULL COMMENT 'URL to user''s avatar on a given network.', -<<<<<<< HEAD gender varchar(255) DEFAULT NULL COMMENT 'Gender of user', birthday varchar(255) DEFAULT NULL COMMENT 'Birthday of user', -======= ->>>>>>> 1943-gender-analisis location varchar(255) DEFAULT NULL COMMENT 'Service user location.', description text COMMENT 'Service user description, like a Twitter user''s profile description.', url varchar(255) DEFAULT NULL COMMENT 'Service user''s URL.', From bb3ea85eed82413d90af39e2acc4dd15c1bd1849 Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 19 Jun 2014 09:52:09 +0300 Subject: [PATCH 18/40] Age analysis insight php and tpl --- .../insights/ageanalysis.php | 119 ++++++++++++++++++ .../insightsgenerator/view/ageanalysis.tpl | 69 ++++++++++ 2 files changed, 188 insertions(+) create mode 100644 webapp/plugins/insightsgenerator/insights/ageanalysis.php create mode 100644 webapp/plugins/insightsgenerator/view/ageanalysis.tpl diff --git a/webapp/plugins/insightsgenerator/insights/ageanalysis.php b/webapp/plugins/insightsgenerator/insights/ageanalysis.php new file mode 100644 index 0000000000..16f00bd6ab --- /dev/null +++ b/webapp/plugins/insightsgenerator/insights/ageanalysis.php @@ -0,0 +1,119 @@ +. + * + * + * AgeAnalysis (name of file) + * + * Description of what this class does + * + * Copyright (c) 2014 Anna Shkerina + * + * @author Anna Shkerina blond00792@gmail.com + * @license http://www.gnu.org/licenses/gpl.html + * @copyright 2014 Anna Shkerina + */ + +class AgeAnalysisInsight extends InsightPluginParent implements InsightPlugin { + + public function generateInsight(Instance $instance, $last_week_of_posts, $number_days) { + parent::generateInsight ( $instance, $last_week_of_posts, $number_days ); + $this->logger->logInfo ( "Begin generating insight", __METHOD__ . ',' . __LINE__ ); + + $insight_baseline_dao = DAOFactory::getDAO ( 'InsightBaselineDAO' ); + $filename = basename ( __FILE__, ".php" ); + + $post_dao = DAOFactory::getDAO ( 'PostDAO' ); + $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); + $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); + foreach ( $posts as $post ) { + $birthdays_fav = $fpost_dao->getBirthdayOfFavoriters ( $post->post_id ); + $birthdays_comm = $fpost_dao->getBirthdayOfCommenters ( $post->post_id ); + $age_data = array( + '18'=>0, + '18_25'=>0, + '25_35'=>0, + '35_45'=>0, + '45'=>0 + ); + + foreach ($birthdays_comm as $birthday_comm){ + $birthday = strtotime($birthday_comm); + if($birthday === false){ + return false; + } + + $age = date('Y') - date('Y', $birthday); + if (date('md') < date('md', $birthday)) { + $age--; + } + + if ($age<18){ + $age_data['18']++; + } elseif ($age>=18 & $age<25){ + $age_data['18_25']++; + } elseif ($age>=25 & $age<35){ + $age_data['25_35']++; + } elseif ($age>=35 & $age<45){ + $age_data['35_45']++; + } else $age_data['45']++; + } + + foreach ($birthdays_fav as $birthday_fav){ + $birthday = strtotime($birthday_fav); + if($birthday === false){ + return false; + } + $age = date('Y') - date('Y', $birthday); + if (date('md') < date('md', $birthday)) { + $age--; + } + + if ($age<18){ + $age_data['18']++; + } elseif ($age>=18 & $age<25){ + $age_data['18_25']++; + } elseif ($age>=25 & $age<35){ + $age_data['25_35']++; + } elseif ($age>=35 & $age<45){ + $age_data['35_45']++; + } else $age_data['45']++; + + } + + echo "age_data=".Utils::varDumpToString($age_data)."
"; + + $simplified_post_date = date('Y-m-d', strtotime($post->pub_date)); + + $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, + $simplified_post_date, "Age analysis", "Here is the distribution of ages for ". + $instance->network_username . "'s post", $filename, Insight::EMPHASIS_HIGH, + serialize ( array ($post, $age_data) ) ); + } + $this->logger->logInfo("Done generating insight", __METHOD__.','.__LINE__); + } +} + +$insights_plugin_registrar = PluginRegistrarInsights::getInstance(); +$insights_plugin_registrar->registerInsightPlugin('AgeAnalysisInsight'); + diff --git a/webapp/plugins/insightsgenerator/view/ageanalysis.tpl b/webapp/plugins/insightsgenerator/view/ageanalysis.tpl new file mode 100644 index 0000000000..d7c3f2d433 --- /dev/null +++ b/webapp/plugins/insightsgenerator/view/ageanalysis.tpl @@ -0,0 +1,69 @@ +{include file=$tpl_path|cat:'_header.tpl'} + +{if !$expand} +
+{/if} + + {$i->headline} + + +{$i->text|link_usernames_to_twitter} + +
+ {include file=$tpl_path|cat:"_post.tpl" post=$i->related_data[0] hide_insight_header=true} +
+ +{if !$expand} +
+{/if} + +
 
+ + +{if !$expand} +
+{/if} + +{include file=$tpl_path|cat:'_footer.tpl'} \ No newline at end of file From 6b400466ac1295256b20dc67005839cea79874ef Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 19 Jun 2014 11:41:54 +0300 Subject: [PATCH 19/40] Tests for age analysis, php and tpl corrections after tests --- .../_lib/dao/class.FavoritePostMySQLDAO.php | 8 +- .../insights/ageanalysis.php | 19 +-- .../tests/TestOfAgeAnalysisInsight.php | 149 ++++++++++++++++++ .../insightsgenerator/view/ageanalysis.tpl | 2 +- 4 files changed, 162 insertions(+), 16 deletions(-) create mode 100644 webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php diff --git a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php index 658c6f4604..a1728db04f 100755 --- a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php +++ b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php @@ -473,7 +473,6 @@ public function getBirthdayOfFavoriters($post_id) { $q = "SELECT #prefix#users.birthday as birthday FROM #prefix#favorites, #prefix#users "; $q .= "WHERE #prefix#favorites.post_id = :post_id "; $q .= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; - $q .= "GROUP BY #prefix#users.birthday"; $vars = array ( ':post_id' => $post_id @@ -484,10 +483,9 @@ public function getBirthdayOfFavoriters($post_id) { $ps = $this->execute ( $q, $vars ); $rows = $this->getDataRowsAsArrays ( $ps ); - echo "res=" . Utils::varDumpToString($rows) . "\n"; $age = array (); foreach ( $rows as $row ) { - $age ['fav_birthday'] = $row ['birthday']; + $age[] = $row ['birthday']; } return $age; } @@ -496,7 +494,6 @@ public function getBirthdayOfCommenters($post_id) { $q = "SELECT #prefix#users.birthday as birthday FROM #prefix#posts, #prefix#users "; $q .= "WHERE #prefix#posts.in_reply_to_post_id = :post_id "; $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; - $q .= "GROUP BY #prefix#users.birthday"; $vars = array ( ':post_id' => $post_id @@ -507,10 +504,9 @@ public function getBirthdayOfCommenters($post_id) { $ps = $this->execute ( $q, $vars ); $rows = $this->getDataRowsAsArrays ( $ps ); - // echo "res=" . Utils::varDumpToString($rows) . "\n"; $age = array (); foreach ( $rows as $row ) { - $age ['comm_birthday'] = $row ['birthday']; + $age[] = $row ['birthday']; } return $age; } diff --git a/webapp/plugins/insightsgenerator/insights/ageanalysis.php b/webapp/plugins/insightsgenerator/insights/ageanalysis.php index 16f00bd6ab..adc6ffeb1c 100644 --- a/webapp/plugins/insightsgenerator/insights/ageanalysis.php +++ b/webapp/plugins/insightsgenerator/insights/ageanalysis.php @@ -47,8 +47,8 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); foreach ( $posts as $post ) { - $birthdays_fav = $fpost_dao->getBirthdayOfFavoriters ( $post->post_id ); - $birthdays_comm = $fpost_dao->getBirthdayOfCommenters ( $post->post_id ); + $birthdays_fav = $fpost_dao->getBirthdayOfFavoriters( $post->post_id ); + $birthdays_comm = $fpost_dao->getBirthdayOfCommenters( $post->post_id ); $age_data = array( '18'=>0, '18_25'=>0, @@ -68,7 +68,7 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number $age--; } - if ($age<18){ + if ($age>0 & $age<18){ $age_data['18']++; } elseif ($age>=18 & $age<25){ $age_data['18_25']++; @@ -76,7 +76,9 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number $age_data['25_35']++; } elseif ($age>=35 & $age<45){ $age_data['35_45']++; - } else $age_data['45']++; + } elseif ($age>=45){ + $age_data['45']++; + } } foreach ($birthdays_fav as $birthday_fav){ @@ -89,7 +91,7 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number $age--; } - if ($age<18){ + if ($age>0 & $age<18){ $age_data['18']++; } elseif ($age>=18 & $age<25){ $age_data['18_25']++; @@ -97,12 +99,11 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number $age_data['25_35']++; } elseif ($age>=35 & $age<45){ $age_data['35_45']++; - } else $age_data['45']++; - + } elseif ($age>=45){ + $age_data['45']++; + } } - echo "age_data=".Utils::varDumpToString($age_data)."
"; - $simplified_post_date = date('Y-m-d', strtotime($post->pub_date)); $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, diff --git a/webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php new file mode 100644 index 0000000000..1870c0187a --- /dev/null +++ b/webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php @@ -0,0 +1,149 @@ +. + * + * + * AgeAnalysis (name of file) + * + * Description of what this class does + * + * Copyright (c) 2014 Anna Shkerina + * + * @author Anna Shkerina blond00792@gmail.com + * @license http://www.gnu.org/licenses/gpl.html + * @copyright 2014 Anna Shkerina + */ + +require_once dirname(__FILE__) . '/../../../../tests/init.tests.php'; +require_once THINKUP_WEBAPP_PATH.'_lib/extlib/simpletest/autorun.php'; +require_once THINKUP_WEBAPP_PATH.'_lib/extlib/simpletest/web_tester.php'; +require_once THINKUP_ROOT_PATH. 'webapp/plugins/insightsgenerator/model/class.InsightPluginParent.php'; +require_once THINKUP_ROOT_PATH. 'webapp/plugins/insightsgenerator/insights/ageanalysis.php'; + +class TestOfAgeAnalysisInsight extends ThinkUpUnitTestCase { + + public function setUp() { + parent::setUp(); + } + + public function tearDown() { + parent::tearDown(); + } + + public function testAgeAnalysisForFacebook() { + // Get data ready that insight requires + $builders = self::buildData(); + + $instance = new Instance(); + $instance->id = 100; + $instance->network_user_id = 8654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new AgeAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('age_analysis', 100, $today); + $age_data = unserialize($result->related_data); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Age analysis'); + $this->assertIsA($age_data, "array"); + $this->assertIsA($age_data[0], "Post"); + $this->assertEqual(count($age_data), 2); + $this->assertEqual($age_data[1]['18'], 2); + $this->assertEqual($age_data[1]['18_25'], 1); + $this->assertEqual($age_data[1]['25_35'], 2); + $this->assertEqual($age_data[1]['35_45'], 1); + $this->assertEqual($age_data[1]['45'], 0); + } + + private function buildData() { + $builders_male = array(); + + $now = date('Y-m-d H:i:s'); + + $builders[] = FixtureBuilder::build('posts', array('id'=>233, 'post_id'=>233, 'author_user_id'=>8654321, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>4, 'is_protected'=>0,'favlike_count_cache' => 4)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>234, 'post_id'=>234, 'author_user_id'=>8654320, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 233)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>235, 'post_id'=>235, 'author_user_id'=>8654322, + 'author_username'=>'user2', 'author_fullname'=>'User2', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>236, 'post_id'=>236, 'author_user_id'=>8654323, + 'author_username'=>'user3', 'author_fullname'=>'User3', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 2.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>237, 'post_id'=>237, 'author_user_id'=>8654324, + 'author_username'=>'user4', 'author_fullname'=>'User4', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 3.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654320, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654321, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654322, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654324, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654320, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'female', 'birthday'=> '06/23/2010', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654321, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'male', 'birthday'=> '08/01/1994', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654322, 'user_name'=>'user2', + 'full_name'=>'User2', 'gender'=>'female', 'birthday'=> '06/23/1985', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654323, 'user_name'=>'user3', + 'full_name'=>'User3', 'gender'=>'male', 'birthday'=> '06/23/1975', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654324, 'user_name'=>'user4', + 'full_name'=>'User4', 'gender'=>'female', 'birthday'=> '06/23', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders; + + } +} + diff --git a/webapp/plugins/insightsgenerator/view/ageanalysis.tpl b/webapp/plugins/insightsgenerator/view/ageanalysis.tpl index d7c3f2d433..d6bf55ae32 100644 --- a/webapp/plugins/insightsgenerator/view/ageanalysis.tpl +++ b/webapp/plugins/insightsgenerator/view/ageanalysis.tpl @@ -29,7 +29,7 @@ {/literal} var age_analysis_data_{$i->id} = new google.visualization.arrayToDataTable([ ['Ages','<18', '18-25', '25-35', '35-45', '>45'], - ['Number', {$i->related_data[1].18+5}, {$i->related_data[1].18_25}, {$i->related_data[1].25_35+7}, {$i->related_data[1].35_45+10}, {$i->related_data[1].45+1}] + ['Number', {$i->related_data[1].18}, {$i->related_data[1].18_25}, {$i->related_data[1].25_35}, {$i->related_data[1].35_45}, {$i->related_data[1].45}] ]); {literal} var age_analysis_chart_{/literal}{$i->id}{literal} = new google.visualization.ChartWrapper({ From e739d0186fd842dea55b25419fbf622245407c2f Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 19 Jun 2014 18:00:59 +0300 Subject: [PATCH 20/40] Some corrections for age analysis in php, tpl and tests --- .../insights/ageanalysis.php | 156 ++++---- .../tests/TestOfAgeAnalysisInsight.php | 343 ++++++++++++++++-- 2 files changed, 408 insertions(+), 91 deletions(-) diff --git a/webapp/plugins/insightsgenerator/insights/ageanalysis.php b/webapp/plugins/insightsgenerator/insights/ageanalysis.php index adc6ffeb1c..ac44301f6d 100644 --- a/webapp/plugins/insightsgenerator/insights/ageanalysis.php +++ b/webapp/plugins/insightsgenerator/insights/ageanalysis.php @@ -1,9 +1,10 @@ . * * @@ -33,88 +34,111 @@ * @license http://www.gnu.org/licenses/gpl.html * @copyright 2014 Anna Shkerina */ - class AgeAnalysisInsight extends InsightPluginParent implements InsightPlugin { - - public function generateInsight(Instance $instance, $last_week_of_posts, $number_days) { - parent::generateInsight ( $instance, $last_week_of_posts, $number_days ); + public function generateInsight(Instance $instance, $last_week_of_posts, $number_days) { + parent::generateInsight ( $instance, $last_week_of_posts, $number_days ); $this->logger->logInfo ( "Begin generating insight", __METHOD__ . ',' . __LINE__ ); $insight_baseline_dao = DAOFactory::getDAO ( 'InsightBaselineDAO' ); $filename = basename ( __FILE__, ".php" ); - - $post_dao = DAOFactory::getDAO ( 'PostDAO' ); - $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); - $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); - foreach ( $posts as $post ) { - $birthdays_fav = $fpost_dao->getBirthdayOfFavoriters( $post->post_id ); - $birthdays_comm = $fpost_dao->getBirthdayOfCommenters( $post->post_id ); - $age_data = array( - '18'=>0, - '18_25'=>0, - '25_35'=>0, - '35_45'=>0, - '45'=>0 + + if (self::shouldGenerateInsight ( 'gender_analysis', $instance, $regenerate_existing_insight = true )) { + $post_dao = DAOFactory::getDAO ( 'PostDAO' ); + $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); + $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); + foreach ( $posts as $post ) { + $birthdays_fav = $fpost_dao->getBirthdayOfFavoriters ( $post->post_id ); + $birthdays_comm = $fpost_dao->getBirthdayOfCommenters ( $post->post_id ); + $age_data = array ( + '18' => 0, + '18_25' => 0, + '25_35' => 0, + '35_45' => 0, + '45' => 0 ); - - foreach ($birthdays_comm as $birthday_comm){ - $birthday = strtotime($birthday_comm); - if($birthday === false){ + + foreach ( $birthdays_comm as $birthday_comm ) { + $birthday = strtotime ( $birthday_comm ); + if ($birthday === false) { return false; } - $age = date('Y') - date('Y', $birthday); - if (date('md') < date('md', $birthday)) { - $age--; + $age = date ( 'Y' ) - date ( 'Y', $birthday ); + if (date ( 'md' ) < date ( 'md', $birthday )) { + $age --; } - if ($age>0 & $age<18){ - $age_data['18']++; - } elseif ($age>=18 & $age<25){ - $age_data['18_25']++; - } elseif ($age>=25 & $age<35){ - $age_data['25_35']++; - } elseif ($age>=35 & $age<45){ - $age_data['35_45']++; - } elseif ($age>=45){ - $age_data['45']++; + if ($age > 0 & $age < 18) { + $age_data ['18'] ++; + } elseif ($age >= 18 & $age < 25) { + $age_data ['18_25'] ++; + } elseif ($age >= 25 & $age < 35) { + $age_data ['25_35'] ++; + } elseif ($age >= 35 & $age < 45) { + $age_data ['35_45'] ++; + } elseif ($age >= 45) { + $age_data ['45'] ++; } } - foreach ($birthdays_fav as $birthday_fav){ - $birthday = strtotime($birthday_fav); - if($birthday === false){ + foreach ( $birthdays_fav as $birthday_fav ) { + $birthday = strtotime ( $birthday_fav ); + if ($birthday === false) { return false; } - $age = date('Y') - date('Y', $birthday); - if (date('md') < date('md', $birthday)) { - $age--; + $age = date ( 'Y' ) - date ( 'Y', $birthday ); + if (date ( 'md' ) < date ( 'md', $birthday )) { + $age --; } - if ($age>0 & $age<18){ - $age_data['18']++; - } elseif ($age>=18 & $age<25){ - $age_data['18_25']++; - } elseif ($age>=25 & $age<35){ - $age_data['25_35']++; - } elseif ($age>=35 & $age<45){ - $age_data['35_45']++; - } elseif ($age>=45){ - $age_data['45']++; + if ($age > 0 & $age < 18) { + $age_data ['18'] ++; + } elseif ($age >= 18 & $age < 25) { + $age_data ['18_25'] ++; + } elseif ($age >= 25 & $age < 35) { + $age_data ['25_35'] ++; + } elseif ($age >= 35 & $age < 45) { + $age_data ['35_45'] ++; + } elseif ($age >= 45) { + $age_data ['45'] ++; } } - $simplified_post_date = date('Y-m-d', strtotime($post->pub_date)); - - $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, - $simplified_post_date, "Age analysis", "Here is the distribution of ages for ". - $instance->network_username . "'s post", $filename, Insight::EMPHASIS_HIGH, - serialize ( array ($post, $age_data) ) ); - } - $this->logger->logInfo("Done generating insight", __METHOD__.','.__LINE__); - } + $simplified_post_date = date ( 'Y-m-d', strtotime ( $post->pub_date ) ); + + if (max ( $age_data ) == $age_data ['18']) { + $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, $simplified_post_date, + "Teens!", "" . number_format ( $age_data ['18'] ) . + " people at the age less than 18 years interested in " . + $instance->network_username . "'s post", $filename, Insight::EMPHASIS_HIGH, + serialize ( array ( $post, $age_data ) ) ); + } elseif (max ( $age_data ) == $age_data ['18_25']) { + $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, $simplified_post_date, + "So young!", "" . number_format ( $age_data ['18_25'] ) . + " people aged 18 to 25 years interested in " . $instance->network_username . + "'s post", $filename, Insight::EMPHASIS_HIGH, serialize ( array ( $post, $age_data ) ) ); + } elseif (max ( $age_data ) == $age_data ['25_35']) { + $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, $simplified_post_date, + "Oh, adults!", "" . number_format ( $age_data ['25_35'] ) . + " people aged 25 to 35 years interested in " . $instance->network_username . + "'s post", $filename, Insight::EMPHASIS_HIGH, serialize ( array ( $post, $age_data ) ) ); + } elseif (max ( $age_data ) == $age_data ['35_45']) { + $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, $simplified_post_date, + "Middle-aged!", "" . number_format ( $age_data ['35_45'] ) . + " peopleaged 35 to 45 years interested in " . $instance->network_username . + "'s post", $filename, Insight::EMPHASIS_HIGH, serialize ( array ( $post, $age_data ) ) ); + } elseif (max ( $age_data ) == $age_data ['45']) { + $this->insight_dao->insertInsightDeprecated ( 'age_analysis', $instance->id, $simplified_post_date, + "Seniors!", "" . number_format ( $age_data ['45'] ) . + " people at the age more than 45 years interested in " . + $instance->network_username . "'s post", $filename, Insight::EMPHASIS_HIGH, + serialize ( array ( $post, $age_data ) ) ); + } + } + $this->logger->logInfo ( "Done generating insight", __METHOD__ . ',' . __LINE__ ); + } + } } - -$insights_plugin_registrar = PluginRegistrarInsights::getInstance(); -$insights_plugin_registrar->registerInsightPlugin('AgeAnalysisInsight'); +$insights_plugin_registrar = PluginRegistrarInsights::getInstance (); +$insights_plugin_registrar->registerInsightPlugin ( 'AgeAnalysisInsight' ); diff --git a/webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php index 1870c0187a..37d47ed6fc 100644 --- a/webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php +++ b/webapp/plugins/insightsgenerator/tests/TestOfAgeAnalysisInsight.php @@ -46,9 +46,9 @@ public function tearDown() { parent::tearDown(); } - public function testAgeAnalysisForFacebook() { + public function testAgeAnalysisForFacebookTeens() { // Get data ready that insight requires - $builders = self::buildData(); + $builders = self::buildDataTeens(); $instance = new Instance(); $instance->id = 100; @@ -65,18 +65,138 @@ public function testAgeAnalysisForFacebook() { $age_data = unserialize($result->related_data); $this->assertNotNull($result); $this->assertIsA($result, "Insight"); - $this->assertEqual($result->headline, 'Age analysis'); + $this->assertEqual($result->headline, 'Teens!'); $this->assertIsA($age_data, "array"); $this->assertIsA($age_data[0], "Post"); $this->assertEqual(count($age_data), 2); $this->assertEqual($age_data[1]['18'], 2); - $this->assertEqual($age_data[1]['18_25'], 1); + $this->assertEqual($age_data[1]['18_25'], 0); + $this->assertEqual($age_data[1]['25_35'], 0); + $this->assertEqual($age_data[1]['35_45'], 0); + $this->assertEqual($age_data[1]['45'], 0); + } + + public function testAgeAnalysisForFacebookYoung() { + // Get data ready that insight requires + $builders = self::buildDataYoung(); + + $instance = new Instance(); + $instance->id = 100; + $instance->network_user_id = 8654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new AgeAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('age_analysis', 100, $today); + $age_data = unserialize($result->related_data); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'So young!'); + $this->assertIsA($age_data, "array"); + $this->assertIsA($age_data[0], "Post"); + $this->assertEqual(count($age_data), 2); + $this->assertEqual($age_data[1]['18'], 1); + $this->assertEqual($age_data[1]['18_25'], 2); + $this->assertEqual($age_data[1]['25_35'], 0); + $this->assertEqual($age_data[1]['35_45'], 0); + $this->assertEqual($age_data[1]['45'], 0); + } + + public function testAgeAnalysisForFacebookAdults() { + // Get data ready that insight requires + $builders = self::buildDataAdults(); + + $instance = new Instance(); + $instance->id = 100; + $instance->network_user_id = 8654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new AgeAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('age_analysis', 100, $today); + $age_data = unserialize($result->related_data); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Oh, adults!'); + $this->assertIsA($age_data, "array"); + $this->assertIsA($age_data[0], "Post"); + $this->assertEqual(count($age_data), 2); + $this->assertEqual($age_data[1]['18'], 1); + $this->assertEqual($age_data[1]['18_25'], 0); $this->assertEqual($age_data[1]['25_35'], 2); - $this->assertEqual($age_data[1]['35_45'], 1); + $this->assertEqual($age_data[1]['35_45'], 0); $this->assertEqual($age_data[1]['45'], 0); } - private function buildData() { + public function testAgeAnalysisForFacebookMids() { + // Get data ready that insight requires + $builders = self::buildDataMids(); + + $instance = new Instance(); + $instance->id = 100; + $instance->network_user_id = 8654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new AgeAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('age_analysis', 100, $today); + $age_data = unserialize($result->related_data); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Middle-aged!'); + $this->assertIsA($age_data, "array"); + $this->assertIsA($age_data[0], "Post"); + $this->assertEqual(count($age_data), 2); + $this->assertEqual($age_data[1]['18'], 1); + $this->assertEqual($age_data[1]['18_25'], 0); + $this->assertEqual($age_data[1]['25_35'], 0); + $this->assertEqual($age_data[1]['35_45'], 2); + $this->assertEqual($age_data[1]['45'], 0); + } + + public function testAgeAnalysisForFacebookSeniors() { + // Get data ready that insight requires + $builders = self::buildDataSeniors(); + + $instance = new Instance(); + $instance->id = 100; + $instance->network_user_id = 8654321; + $instance->network_username = 'user'; + $instance->network = 'facebook'; + $insight_plugin = new AgeAnalysisInsight(); + $insight_plugin->generateInsight($instance, $last_week_of_posts, 1); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('age_analysis', 100, $today); + $age_data = unserialize($result->related_data); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Seniors!'); + $this->assertIsA($age_data, "array"); + $this->assertIsA($age_data[0], "Post"); + $this->assertEqual(count($age_data), 2); + $this->assertEqual($age_data[1]['18'], 1); + $this->assertEqual($age_data[1]['18_25'], 0); + $this->assertEqual($age_data[1]['25_35'], 0); + $this->assertEqual($age_data[1]['35_45'], 0); + $this->assertEqual($age_data[1]['45'], 2); + } + + private function buildDataTeens() { $builders_male = array(); $now = date('Y-m-d H:i:s'); @@ -84,25 +204,13 @@ private function buildData() { $builders[] = FixtureBuilder::build('posts', array('id'=>233, 'post_id'=>233, 'author_user_id'=>8654321, 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', 'network'=>'facebook', 'post_text'=>'This is a simple post.', - 'pub_date'=>$now, 'reply_count_cache'=>4, 'is_protected'=>0,'favlike_count_cache' => 4)); + 'pub_date'=>$now, 'reply_count_cache'=>2, 'is_protected'=>0,'favlike_count_cache' => 2)); $builders[] = FixtureBuilder::build('posts', array('id'=>234, 'post_id'=>234, 'author_user_id'=>8654320, 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', 'network'=>'facebook', 'post_text'=>'This is a simple comment.', 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, 'in_reply_to_post_id' => 233)); - - $builders[] = FixtureBuilder::build('posts', array('id'=>235, 'post_id'=>235, 'author_user_id'=>8654322, - 'author_username'=>'user2', 'author_fullname'=>'User2', 'author_avatar'=>'avatar.jpg', - 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', - 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, - 'in_reply_to_post_id' => 233)); - - $builders[] = FixtureBuilder::build('posts', array('id'=>236, 'post_id'=>236, 'author_user_id'=>8654323, - 'author_username'=>'user3', 'author_fullname'=>'User3', 'author_avatar'=>'avatar.jpg', - 'network'=>'facebook', 'post_text'=>'This is a simple comment 2.', - 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, - 'in_reply_to_post_id' => 233)); $builders[] = FixtureBuilder::build('posts', array('id'=>237, 'post_id'=>237, 'author_user_id'=>8654324, 'author_username'=>'user4', 'author_fullname'=>'User4', 'author_avatar'=>'avatar.jpg', @@ -112,16 +220,154 @@ private function buildData() { $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, 'fav_of_user_id'=>8654320, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654324, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654320, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'female', 'birthday'=> '06/23/2002', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654321, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'male', 'birthday'=> '08/01/1994', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654322, 'user_name'=>'user2', + 'full_name'=>'User2', 'gender'=>'female', 'birthday'=> '06/23/1985', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654323, 'user_name'=>'user3', + 'full_name'=>'User3', 'gender'=>'male', 'birthday'=> '06/23/1975', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654324, 'user_name'=>'user4', + 'full_name'=>'User4', 'gender'=>'female', 'birthday'=> '06/23', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders; + } + + private function buildDataYoung() { + $builders_male = array(); + + $now = date('Y-m-d H:i:s'); + + $builders[] = FixtureBuilder::build('posts', array('id'=>233, 'post_id'=>233, 'author_user_id'=>8654321, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>4, 'is_protected'=>0,'favlike_count_cache' => 4)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>234, 'post_id'=>234, 'author_user_id'=>8654320, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 233)); + $builders[] = FixtureBuilder::build('posts', array('id'=>235, 'post_id'=>235, 'author_user_id'=>8654321, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, 'fav_of_user_id'=>8654321, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654320, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'female', 'birthday'=> '06/23/2010', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654321, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'male', 'birthday'=> '08/01/1994', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654322, 'user_name'=>'user2', + 'full_name'=>'User2', 'gender'=>'female', 'birthday'=> '06/23/1985', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654323, 'user_name'=>'user3', + 'full_name'=>'User3', 'gender'=>'male', 'birthday'=> '06/23/1975', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654324, 'user_name'=>'user4', + 'full_name'=>'User4', 'gender'=>'female', 'birthday'=> '06/23', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders; + } + + private function buildDataAdults() { + $builders_male = array(); + + $now = date('Y-m-d H:i:s'); + $builders[] = FixtureBuilder::build('posts', array('id'=>233, 'post_id'=>233, 'author_user_id'=>8654321, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>4, 'is_protected'=>0,'favlike_count_cache' => 4)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>234, 'post_id'=>234, 'author_user_id'=>8654320, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 233)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>235, 'post_id'=>235, 'author_user_id'=>8654322, + 'author_username'=>'user2', 'author_fullname'=>'User2', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, 'fav_of_user_id'=>8654322, 'network'=>'facebook')); - + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654320, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'female', 'birthday'=> '06/23/2010', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654321, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'male', 'birthday'=> '08/01/1994', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654322, 'user_name'=>'user2', + 'full_name'=>'User2', 'gender'=>'female', 'birthday'=> '06/23/1985', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654323, 'user_name'=>'user3', + 'full_name'=>'User3', 'gender'=>'male', 'birthday'=> '06/23/1975', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654324, 'user_name'=>'user4', + 'full_name'=>'User4', 'gender'=>'female', 'birthday'=> '06/23', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders; + } + + private function buildDataMids() { + $builders_male = array(); + + $now = date('Y-m-d H:i:s'); + + $builders[] = FixtureBuilder::build('posts', array('id'=>233, 'post_id'=>233, 'author_user_id'=>8654321, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>4, 'is_protected'=>0,'favlike_count_cache' => 4)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>234, 'post_id'=>234, 'author_user_id'=>8654320, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 233)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>235, 'post_id'=>235, 'author_user_id'=>8654323, + 'author_username'=>'user3', 'author_fullname'=>'User3', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, - 'fav_of_user_id'=>8654324, 'network'=>'facebook')); - + 'fav_of_user_id'=>8654323, 'network'=>'facebook')); + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654320, 'user_name'=>'user', 'full_name'=>'User', 'gender'=>'female', 'birthday'=> '06/23/2010', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'network'=>'facebook')); @@ -129,21 +375,68 @@ private function buildData() { $builders[] = FixtureBuilder::build('users', array('user_id'=>8654321, 'user_name'=>'user1', 'full_name'=>'User1', 'gender'=>'male', 'birthday'=> '08/01/1994', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'network'=>'facebook')); - + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654322, 'user_name'=>'user2', 'full_name'=>'User2', 'gender'=>'female', 'birthday'=> '06/23/1985', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'network'=>'facebook')); - + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654323, 'user_name'=>'user3', 'full_name'=>'User3', 'gender'=>'male', 'birthday'=> '06/23/1975', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'network'=>'facebook')); - + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654324, 'user_name'=>'user4', 'full_name'=>'User4', 'gender'=>'female', 'birthday'=> '06/23', 'avatar'=>'avatar.jpg', 'is_protected'=>0, 'network'=>'facebook')); return $builders; + } + + private function buildDataSeniors() { + $builders_male = array(); + + $now = date('Y-m-d H:i:s'); + + $builders[] = FixtureBuilder::build('posts', array('id'=>233, 'post_id'=>233, 'author_user_id'=>8654321, + 'author_username'=>'user1', 'author_fullname'=>'User1', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple post.', + 'pub_date'=>$now, 'reply_count_cache'=>4, 'is_protected'=>0,'favlike_count_cache' => 4)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>234, 'post_id'=>234, 'author_user_id'=>8654320, + 'author_username'=>'user', 'author_fullname'=>'User', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' =>0, + 'in_reply_to_post_id' => 233)); + + $builders[] = FixtureBuilder::build('posts', array('id'=>235, 'post_id'=>235, 'author_user_id'=>8654324, + 'author_username'=>'user4', 'author_fullname'=>'User4', 'author_avatar'=>'avatar.jpg', + 'network'=>'facebook', 'post_text'=>'This is a simple comment 1.', + 'pub_date'=>$now, 'reply_count_cache'=>0, 'is_protected'=>0,'favlike_count_cache' => 0, + 'in_reply_to_post_id' => 233)); + $builders[] = FixtureBuilder::build('favorites', array('post_id'=>233, 'author_user_id'=>8654321, + 'fav_of_user_id'=>8654324, 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654320, 'user_name'=>'user', + 'full_name'=>'User', 'gender'=>'female', 'birthday'=> '06/23/2010', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654321, 'user_name'=>'user1', + 'full_name'=>'User1', 'gender'=>'male', 'birthday'=> '08/01/1994', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654322, 'user_name'=>'user2', + 'full_name'=>'User2', 'gender'=>'female', 'birthday'=> '06/23/1985', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654323, 'user_name'=>'user3', + 'full_name'=>'User3', 'gender'=>'male', 'birthday'=> '06/23/1975', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + $builders[] = FixtureBuilder::build('users', array('user_id'=>8654324, 'user_name'=>'user4', + 'full_name'=>'User4', 'gender'=>'female', 'birthday'=> '06/23/1965', 'avatar'=>'avatar.jpg', 'is_protected'=>0, + 'network'=>'facebook')); + + return $builders; } } From 703cf36e46af8e3f30f12563573744488ab82939 Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 19 Jun 2014 18:36:24 +0300 Subject: [PATCH 21/40] corrections --- webapp/plugins/insightsgenerator/insights/ageanalysis.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webapp/plugins/insightsgenerator/insights/ageanalysis.php b/webapp/plugins/insightsgenerator/insights/ageanalysis.php index ac44301f6d..dd737e5d6f 100644 --- a/webapp/plugins/insightsgenerator/insights/ageanalysis.php +++ b/webapp/plugins/insightsgenerator/insights/ageanalysis.php @@ -1,6 +1,7 @@ getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); From a9b422aafc40582ef0eaeed152f3a8eb6f3ca1cf Mon Sep 17 00:00:00 2001 From: anna Date: Fri, 20 Jun 2014 11:29:15 +0300 Subject: [PATCH 22/40] first fersion of php and tpl for geo analysis --- .../_lib/dao/class.FavoritePostMySQLDAO.php | 38 ++++++++++ webapp/_lib/dao/interface.FavoritePostDAO.php | 14 +++- .../insights/geoanalysisfacebook.php | 68 ++++++++++++++++++ .../view/geoanalysisfacebook.tpl | 70 +++++++++++++++++++ 4 files changed, 188 insertions(+), 2 deletions(-) create mode 100644 webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php create mode 100644 webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl diff --git a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php index a1728db04f..9d8d8c7171 100755 --- a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php +++ b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php @@ -510,4 +510,42 @@ public function getBirthdayOfCommenters($post_id) { } return $age; } + + public function getLocationOfFavoriters($post_id) { + $q = "SELECT #prefix#users.user_name as name, #prefix#users.avatar, #prefix#users.location as location, "; + $q .= "COUNT(*) as count_location FROM #prefix#favorites, #prefix#users "; + $q .= "WHERE #prefix#favorites.post_id = :post_id "; + $q .= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; + $q .= "GROUP BY #prefix#users.location "; + + $vars = array ( + ':post_id' => $post_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + return $rows; + } + + public function getLocationOfCommenters($post_id) { + $q = "SELECT #prefix#users.user_name as name, #prefix#users.avatar, #prefix#users.location as location, "; + $q .= "COUNT(*) as count_location FROM #prefix#posts, #prefix#users "; + $q .= "WHERE #prefix#posts.in_reply_to_post_id = :post_id "; + $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; + $q .= "GROUP BY #prefix#users.location "; + + $vars = array ( + ':post_id' => $post_id + ); + if ($this->profiler_enabled) { + Profiler::setDAOMethod ( __METHOD__ ); + } + + $ps = $this->execute ( $q, $vars ); + $rows = $this->getDataRowsAsArrays ( $ps ); + return $rows; + } } diff --git a/webapp/_lib/dao/interface.FavoritePostDAO.php b/webapp/_lib/dao/interface.FavoritePostDAO.php index 97db128ad0..3d61500b05 100755 --- a/webapp/_lib/dao/interface.FavoritePostDAO.php +++ b/webapp/_lib/dao/interface.FavoritePostDAO.php @@ -142,7 +142,6 @@ public function getGenderOfFavoriters($post_id); * @param $network * @param $last_x_days * @return array of count for male and female - */ public function getGenderOfCommenters($post_id); /** @@ -157,5 +156,16 @@ public function getBirthdayOfFavoriters($post_id); * @return array with commenter's birthdays */ public function getBirthdayOfCommenters($post_id); - + /** + * Get location of users who favorited post. + * @param $post_id + * @return array with favoriter's location + */ + public function getLocationOfFavoriters($post_id); + /** + * Get location of users who commented post. + * @param $post_id + * @return array with commenter's location + */ + public function getLocationOfCommenters($post_id); } \ No newline at end of file diff --git a/webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php b/webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php new file mode 100644 index 0000000000..d6c48ab89e --- /dev/null +++ b/webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php @@ -0,0 +1,68 @@ +. + * + * + * GeoAnalysisFacebook (name of file) + * + * Description of what this class does + * + * Copyright (c) 2014 Anna Shkerina + * + * @author Anna Shkerina blond00792@gmail.com + * @license http://www.gnu.org/licenses/gpl.html + * @copyright 2014 Anna Shkerina + */ +class GeoAnalysisFacebookInsight extends InsightPluginParent implements InsightPlugin { + public function generateInsight(Instance $instance, $last_week_of_posts, $number_days) { + parent::generateInsight ( $instance, $last_week_of_posts, $number_days ); + $this->logger->logInfo ( "Begin generating insight", __METHOD__ . ',' . __LINE__ ); + + $insight_baseline_dao = DAOFactory::getDAO ( 'InsightBaselineDAO' ); + $filename = basename ( __FILE__, ".php" ); + + $post_dao = DAOFactory::getDAO ( 'PostDAO' ); + $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); + $posts = $post_dao->getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); + foreach ( $posts as $post ) { + $locations_fav = $fpost_dao->getLocationOfFavoriters ( $post->post_id ); + $locations_comm = $fpost_dao->getLocationOfCommenters ( $post->post_id ); + $geo_data = array (); + $geo_data[] = $locations_comm; + $geo_data[] = $locations_fav; + + echo "geo=".Utils::varDumpToString($geo_data)."<\n>"; + $simplified_post_date = date ( 'Y-m-d', strtotime ( $post->pub_date ) ); + + $this->insight_dao->insertInsightDeprecated ( 'geo_analysis_facebook', $instance->id, $simplified_post_date, + "All over the world", "" . number_format ( count($geo_data) ) . " people + from different places interested in " . $instance->network_username . "'s post", + $filename, Insight::EMPHASIS_HIGH, serialize ( array ( $post, $geo_data ) ) ); + } + $this->logger->logInfo ( "Done generating insight", __METHOD__ . ',' . __LINE__ ); + } +} + +$insights_plugin_registrar = PluginRegistrarInsights::getInstance (); +$insights_plugin_registrar->registerInsightPlugin ( 'GeoAnalysisFacebookInsight' ); + diff --git a/webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl b/webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl new file mode 100644 index 0000000000..a408a3cbbe --- /dev/null +++ b/webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl @@ -0,0 +1,70 @@ +{include file=$tpl_path|cat:'_header.tpl'} + +{if !$expand} +
+{/if} + + {$i->headline} + + +{$i->text|link_usernames_to_twitter} + +
+ {include file=$tpl_path|cat:"_post.tpl" post=$i->related_data[0] hide_insight_header=true} +
+ +{if !$expand} +
+{/if} + +
 
+ + +{if !$expand} +
+{/if} + +{include file=$tpl_path|cat:'_footer.tpl'} + From 62456936e74725edc8a51e7b79ba7fd6df052314 Mon Sep 17 00:00:00 2001 From: anna Date: Tue, 8 Jul 2014 11:47:22 +0300 Subject: [PATCH 23/40] finished php and tpl for geo analysis --- .../_lib/dao/class.FavoritePostMySQLDAO.php | 8 +-- .../insights/geoanalysisfacebook.php | 54 +++++++++++-------- .../insightsgenerator/view/genderanalysis.tpl | 6 +-- .../view/geoanalysisfacebook.tpl | 45 ++++++---------- 4 files changed, 54 insertions(+), 59 deletions(-) diff --git a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php index 9d8d8c7171..d18f84f1c4 100755 --- a/webapp/_lib/dao/class.FavoritePostMySQLDAO.php +++ b/webapp/_lib/dao/class.FavoritePostMySQLDAO.php @@ -512,8 +512,8 @@ public function getBirthdayOfCommenters($post_id) { } public function getLocationOfFavoriters($post_id) { - $q = "SELECT #prefix#users.user_name as name, #prefix#users.avatar, #prefix#users.location as location, "; - $q .= "COUNT(*) as count_location FROM #prefix#favorites, #prefix#users "; + $q = "SELECT #prefix#users.user_id as id, #prefix#users.user_name as name, "; + $q .= "#prefix#users.location FROM #prefix#favorites, #prefix#users "; $q .= "WHERE #prefix#favorites.post_id = :post_id "; $q .= "AND #prefix#favorites.fav_of_user_id = #prefix#users.user_id "; $q .= "GROUP BY #prefix#users.location "; @@ -531,8 +531,8 @@ public function getLocationOfFavoriters($post_id) { } public function getLocationOfCommenters($post_id) { - $q = "SELECT #prefix#users.user_name as name, #prefix#users.avatar, #prefix#users.location as location, "; - $q .= "COUNT(*) as count_location FROM #prefix#posts, #prefix#users "; + $q = "SELECT #prefix#users.user_id as id, #prefix#users.user_name as name, "; + $q .= "#prefix#users.location FROM #prefix#posts, #prefix#users "; $q .= "WHERE #prefix#posts.in_reply_to_post_id = :post_id "; $q .= "AND #prefix#posts.author_user_id = #prefix#users.user_id "; $q .= "GROUP BY #prefix#users.location "; diff --git a/webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php b/webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php index d6c48ab89e..1918248ac9 100644 --- a/webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php +++ b/webapp/plugins/insightsgenerator/insights/geoanalysisfacebook.php @@ -1,9 +1,10 @@ getMostFavCommentPostsByUserId ( $instance->network_user_id, $instance->network ); - foreach ( $posts as $post ) { - $locations_fav = $fpost_dao->getLocationOfFavoriters ( $post->post_id ); - $locations_comm = $fpost_dao->getLocationOfCommenters ( $post->post_id ); - $geo_data = array (); - $geo_data[] = $locations_comm; - $geo_data[] = $locations_fav; - - echo "geo=".Utils::varDumpToString($geo_data)."<\n>"; - $simplified_post_date = date ( 'Y-m-d', strtotime ( $post->pub_date ) ); - - $this->insight_dao->insertInsightDeprecated ( 'geo_analysis_facebook', $instance->id, $simplified_post_date, - "All over the world", "" . number_format ( count($geo_data) ) . " people - from different places interested in " . $instance->network_username . "'s post", - $filename, Insight::EMPHASIS_HIGH, serialize ( array ( $post, $geo_data ) ) ); + if (self::shouldGenerateInsight ( 'geo_analysis_facebook', $instance, $regenerate_existing_insight=true)) { + //$post_dao = DAOFactory::getDAO ( 'PostDAO' ); + $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); + //$posts = $post_dao->getLastWeekPostsByUserId ( $instance->network_user_id, $instance->network ); + $geo_data = array(); + foreach ( $last_week_of_posts as $post ) { + $locations_fav = $fpost_dao->getLocationOfFavoriters ( $post->post_id ); + $locations_comm = $fpost_dao->getLocationOfCommenters ( $post->post_id ); + //$geo = array_merge ( $locations_comm, $locations_fav ); + $geo = array_map("unserialize", array_unique(array_map("serialize", array_merge ( $locations_comm, + $locations_fav )))); + foreach ( $geo as $g ) { + $pos = strpos ( $g ['location'], "," ); + if ($pos == 0) { + $city = $g ['location']; + } else { + $city = substr ( $g ['location'], 0, $pos ); + } + array_push($geo_data, array ("name" => $g ['name'],"city" => $city)); + } + } + $geo_data = array_map("unserialize", array_unique(array_map("serialize", $geo_data))); + + $this->insight_dao->insertInsightDeprecated ( 'geo_analysis_facebook', $instance->id, + $this->insight_date, "All over the world", "" . number_format ( count ( $geo_data ) ) + . " people interested in " . $instance->network_username . "'s posts last week", + $filename, Insight::EMPHASIS_HIGH, serialize ( array ($geo_data ) ) ); + $this->logger->logInfo ( "Done generating insight", __METHOD__ . ',' . __LINE__ ); } - $this->logger->logInfo ( "Done generating insight", __METHOD__ . ',' . __LINE__ ); } } - -$insights_plugin_registrar = PluginRegistrarInsights::getInstance (); +$insights_plugin_registrar = PluginRegistrarInsights::getInstance(); $insights_plugin_registrar->registerInsightPlugin ( 'GeoAnalysisFacebookInsight' ); diff --git a/webapp/plugins/insightsgenerator/view/genderanalysis.tpl b/webapp/plugins/insightsgenerator/view/genderanalysis.tpl index df091b6186..ef2429c8e0 100644 --- a/webapp/plugins/insightsgenerator/view/genderanalysis.tpl +++ b/webapp/plugins/insightsgenerator/view/genderanalysis.tpl @@ -39,9 +39,9 @@ dataTable: gender_analysis_data_{/literal}{$i->id}{literal}, 'options': { colors: ['#00aeef', '#F576B5'], - 'width': 650, - 'height': 250, - 'legend': 'right' + width: 650, + height: 250, + legend: 'right' } }); diff --git a/webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl b/webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl index a408a3cbbe..e09b8a0190 100644 --- a/webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl +++ b/webapp/plugins/insightsgenerator/view/geoanalysisfacebook.tpl @@ -9,15 +9,12 @@ {$i->text|link_usernames_to_twitter} -
- {include file=$tpl_path|cat:"_post.tpl" post=$i->related_data[0] hide_insight_header=true} -
- {if !$expand}
{/if} -
 
+
 
+ + + +{if !$expand} +
+{/if} + +{include file=$tpl_path|cat:'_footer.tpl'} \ No newline at end of file From 090a9082acf2aa0366407c856f726f00a46a2655 Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 14 Aug 2014 01:16:42 +0300 Subject: [PATCH 40/40] tests for geo analysis twitter --- .../insights/geoanalysistwitter.php | 13 ++- .../tests/TestOfGeoAnalysisTwitterInsight.php | 98 +++++++++++++++++++ 2 files changed, 106 insertions(+), 5 deletions(-) create mode 100644 webapp/plugins/insightsgenerator/tests/TestOfGeoAnalysisTwitterInsight.php diff --git a/webapp/plugins/insightsgenerator/insights/geoanalysistwitter.php b/webapp/plugins/insightsgenerator/insights/geoanalysistwitter.php index 2965c84209..b911a72d6f 100644 --- a/webapp/plugins/insightsgenerator/insights/geoanalysistwitter.php +++ b/webapp/plugins/insightsgenerator/insights/geoanalysistwitter.php @@ -1,6 +1,8 @@ logger->logInfo ( "Begin generating insight", __METHOD__ . ',' . __LINE__ ); - $insight_baseline_dao = DAOFactory::getDAO ( 'InsightBaselineDAO' ); $filename = basename ( __FILE__, ".php" ); if (self::shouldGenerateInsight ( 'geo_analysis_twitter', $instance, $insight_date = 'today', - $regenerate_existing_insight = true, $day_of_week = 2, count ( $last_week_of_posts ) )) { - $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); + $regenerate_existing_insight = true, $day_of_week = 4, count ( $last_week_of_posts ) )) { + $fpost_dao = DAOFactory::getDAO ( 'FavoritePostDAO' ); $geo_data = array (); $geos = $fpost_dao->getGeoOfPostsFromOneWeekAgo ( $instance->network_user_id ); + foreach ( $geos as $geo ) { $geo_str = trim ( $geo ['geo'] ); $pos = strpos ( $geo_str, "," ); @@ -61,7 +63,8 @@ public function generateInsight(Instance $instance, $last_week_of_posts, $number ) ); } - echo "geo_q" . Utils::varDumpToString ( $geo_data ); + + $geo_data = array_map ( "unserialize", array_unique ( array_map ( "serialize", $geo_data ) ) ); $this->insight_dao->insertInsightDeprecated ( 'geo_analysis_twitter', $instance->id, $this->insight_date, "Here am I!", "" . number_format ( count ( $geo_data ) ) . diff --git a/webapp/plugins/insightsgenerator/tests/TestOfGeoAnalysisTwitterInsight.php b/webapp/plugins/insightsgenerator/tests/TestOfGeoAnalysisTwitterInsight.php new file mode 100644 index 0000000000..a390ff43d4 --- /dev/null +++ b/webapp/plugins/insightsgenerator/tests/TestOfGeoAnalysisTwitterInsight.php @@ -0,0 +1,98 @@ +. + * + * + * GeoAnalysisTwitter (name of file) + * + * Description of what this class does + * + * Copyright (c) 2014 Anna Shkerina + * + * @author Anna Shkerina blond00792@gmail.com + * @license http://www.gnu.org/licenses/gpl.html + * @copyright 2014 Anna Shkerina + */ + +require_once dirname(__FILE__) . '/../../../../tests/init.tests.php'; +require_once THINKUP_WEBAPP_PATH.'_lib/extlib/simpletest/autorun.php'; +require_once THINKUP_WEBAPP_PATH.'_lib/extlib/simpletest/web_tester.php'; +require_once THINKUP_ROOT_PATH. 'webapp/plugins/insightsgenerator/model/class.InsightPluginParent.php'; +require_once THINKUP_ROOT_PATH. 'webapp/plugins/insightsgenerator/insights/geoanalysistwitter.php'; + +class TestOfGeoAnalysisTwitterInsight extends ThinkUpUnitTestCase { + + public function setUp() { + parent::setUp(); + } + + public function tearDown() { + parent::tearDown(); + } + + public function testGeoAnalysisTwitter() { + // Get data ready that insight requires + $builders = self::buildData(); + + $instance = new Instance(); + $instance->id = 1234; + $instance->network_user_id = 29654321; + $instance->network_username = 'testeriffic'; + $instance->network = 'twitter'; + + $insight_plugin = new GeoAnalysisTwitterInsight(); + $insight_plugin->generateInsight($instance, $builders, 4); + + // Assert that insight got inserted + $insight_dao = new InsightMySQLDAO(); + $today = date ('Y-m-d'); + $result = $insight_dao->getInsight('geo_analysis_twitter', 1234, $today); + $geo_data = unserialize($result->related_data); + $this->debug(Utils::varDumpToString($result)); + $this->assertNotNull($result); + $this->assertIsA($result, "Insight"); + $this->assertEqual($result->headline, 'Here am I!'); + $this->assertIsA($geo_data, "array"); + $this->assertEqual(count($geo_data[0]), 2); + $this->assertEqual($geo_data[0][0]['lat'], '34.7412'); + $this->assertEqual($geo_data[0][0]['long'], '51.6578'); + $this->assertEqual($geo_data[0][0]['place'], 'USA'); + $this->assertEqual($geo_data[0][1]['lat'], '51.5164'); + $this->assertEqual($geo_data[0][1]['long'], '31.3122'); + $this->assertEqual($geo_data[0][1]['place'], 'Ukraine'); + } + + private function buildData() { + $builders = array(); + + $builders[] = FixtureBuilder::build('posts', array('author_user_id'=>29654321, + 'network'=>'twitter', 'post_text'=>'This is a simple post.', + 'pub_date' => date('Y-m-d H:i:s', strtotime('-3 day')), 'geo'=>'34.7412563,51.6578233', + 'place'=>'USA')); + + $builders[] = FixtureBuilder::build('posts', array('author_user_id'=>29654321, + 'network'=>'twitter', 'post_text'=>'This is a simple post 1.', + 'pub_date' => date('Y-m-d H:i:s', strtotime('-2 day')), 'geo'=>'51.5164641,31.3122106', + 'place'=>'Ukraine')); + + return $builders; + + } +} +