Archive for the Category ◊ Blogging Resources ◊

16 Jun 2009 WordPress updated to v2.8
 |  Category: Blogging Resources  | Tags: ,  | Leave a Comment

Last week WordPress released version 2.8 of their fantastic blogging software.  Sporting 790+ bugfixes, with many changes to the backend.  So far with minimal testing it is significantly faster, and the image uploader seems to have been fixed up with no more Flash errors reported by Firefox.

Keep up the good work fellas!

05 Jan 2009 Comments fixed!
 |  Category: Blogging Resources  | Leave a Comment

Sorry folks, didn’t see the bug in my code that was not allowing comments to be posted to the database…. of course reviewing the webserver error_log is not something I frequently, but I do scrape off the Grey Fuzz from the logs every now and again for just this reason.

Comments are now being inserted into the database as expected and Akismet is doing it’s job filtering out the garbage generated by bots and the like.

01 Sep 2006 Monthly income for outbound links
 |  Category: Blogging Resources  | Leave a Comment

I saw this advert on another site and decided to give it a shot… afterall what could it hurt?

Text Link Ads

My results… signed up and was approved in a day, and within 3 weeks earned my first paid link! Granted no tremendous windfall, but hey someone willing to pay me $25 a month per link just to have a text link on one of my PR5 blogs? In a month my domain registration and annual hosting fees are paid??!!?? Now the rest of the year it puts a little extra jingle in my pocket each month. It obviously won’t earn you a shiny new car, but an extra $100 a month in your pocket for a snippet of PHP code and a few outbound links seems to be pretty fair to me.

Time to start sprucing up a few more site and submit them now that my doubts have been lifted.

————————–
Test king offers practice tests based on the real exam patterns with tests such as HP0-W02 and SK0-002. Test king has a name in training students for Cisco with tests such as 642-104 and 646-171. Another test for Cisco is 646-362 which ranks among the top at test king among the students. Test king trains students for Microsoft training with tests like 70-526.

12 Jul 2006 Excellerating WordPress
 |  Category: Blogging Resources  | Leave a Comment

While optimizing my databases and such I noticed that I had been making a fatal mistake with my WordPress database; marking comments as ‘spam’ through the comments moderation panel. This only marks the comment_approved feild in the row for that comment in the wp_comments table from ’0′ to ‘spam’.

In over a year I’d accumilated over 12K rows just for spam that needed to be parsed each time a particular post/page was to be displayed, and dragging down the performance of my blog. Instead of marking spam as such, deleting them completely seems to be the route to take.

A quick query to run against your database in a utility such as phpMyAdmin follows to purge the tables of those entries for you;

[code]
DELETE
FROM `wp_comments`
WHERE `comment_approved` = CONVERT( _utf8 'spam'
USING latin1 ) ;
[/code]

Some tweaking may be needed far your particular setup, I’ll be submitting this as a feature request to the kind folks at WordPress or if time permits creating a quick and dirty plugin.

21 Apr 2006 New code hilighter plugin
 |  Category: Blogging Resources  | One Comment

Just testing a new code hi-lighter plugin before posting any more complex code snippets.

[code]
< ?php
echo $filename ;
?>
[/code]

Finally found one that actually handles the code funtion properly with WP 2.0.2! The iG:Syntax Hiliter works flawlessly :)