Google agreed to pay USD9Million

Paying USD9million for click fraud case, don’t you think it’s a lot? Not actually, the USD9million is including lawyer/court and etc fees.

As a public listed company, bad news always hit the market share badly. Google shares fell USD$10.57 after they disclosed the statement on the fraud case.

Google to pay $90M in ‘click fraud’ case

Tags: , ,

Google blacklisted BMW

Google has reduced BMW page rank to 0 and make sure the search keyword “used car” don’t place BMW website on the top of search engine results.

Investigations by Google found that BMW’s German website influenced search results to ensure top ranking when users searched for “used car.”

Google has now reduced BMW’s page rank to zero, ensuring the company no longer appears at the top.

Full story

Tags: , ,

Can’t Submit Comment

Just want to comment on Ow journal, “Welcome back”! but got stucked.

Data Recovery

Data recovery on server has been done. The 21GB data is burnt into 6 DVDs. The 6 DVDs cost us a lot of money )

I have heard a lot people hard disk are died, if you are looking for brilliant people to recover your data and pay them some money. Do check out MDR Data Recovery Solution. Look for Mr Yew, a technical consultant of the company.

Tags:

Word Press 2.0 Trackback fix revisit

After follow Ah Knight’s instruction of updating wp_posts to_ping column, it seem like I can’t perform normal trackback again. I got it fix and download the files here. Or read below for more details, there are 2 files need to be change, which is;

  • wp-includes/function-posts.php
  • wp-admin/execute-pings.php

file: wp-includes/function-post.php
line of code: 700

if ( empty($to_ping) )
return;

Instead of doing nothing here, we replace the return; to Ah Knight’s code, become;

if ( empty($to_ping) ) {
$wpdb->query("UPDATE $wpdb->posts SET to_ping = '' WHERE ID = '$post_id'");
return;
}

file: wp-admin/execute-pings.php
line of code: 22

while ($trackback = $wpdb->get_row("SELECT ID FROM $wpdb->posts WHERE TRIM(to_ping) != '' AND post_status != 'draft' LIMIT 1")) {
echo "Trackback : $trackback->ID
“;
do_trackbacks($trackback->ID);
}

Some changes made here, make sure to_ping field is clean and make a trackbacks looping!

$trackbacks = $wpdb->get_results("SELECT ID FROM $wpdb->posts WHERE TRIM(to_ping) != '' AND post_status != 'draft'");

if (is_array($trackbacks) && count($trackbacks)) {
foreach ($trackbacks as $trackback ) {
echo "Trackback : $trackback->ID
“;
do_trackbacks($trackback->ID);
}
}

Done, if you not sure what am I explaning above, you can download the file here in zip format, if you are worry the code is not working, backup your original file.

Happy Trackback!

Tags: , ,