Can’t Submit Comment
February 11th, 2006Just want to comment on Ow journal, “Welcome back”! but got stucked.

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

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: Data Recovery
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;
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: WordPress 2.0, WordPress2.0 Trackback Bug, WordPress2.0 Trackback Fixs
Ruby on Rails successfully installed and configured on FreeBSD6.0 machine! I have followed the simple tutorial on Rails website and it amazed me, you can create a simple data entry apps in less than 5 mins, no more mysql_query.. just some simple codes.. Rails is amazing and am explore more on it… spoonfork is on the rails too… come join us and open source your code!
Good read on another software development approach.
Extreme Programming (XP) is actually a deliberate and disciplined approach to software development. About eight years old, it has already been proven at many companies of all different sizes and industries world wide.
visit Extreme Programming(XP)