•  
Posts Tagged ‘WordPress’

WordPress Security Hacks

By Miguel On March 9, 2010 250 Comments

Hi guys this is my first post on wpcult the great site Austin built.  Hope you guys find it usefull.

If you run a blog using the wordpress software then your blog is a target to hackers.  Below I will list some hacks and just how they can help you keep your business/site safe.

The following is  code to Block Bad Queries and protect your blog from malicious URL Requests.

Place the following code into a text file and name it what ever you like for example blockbadqueries.php upload it to your plugin folder and activate it in your wordpress

Click here to continue reading


WP Cron has broken since 2.9 update

By Austin On December 22, 2009 No Comments

Did you make the update to WordPress 2.9? Well you may want to check out this post regarding an issues with WP Cron, which controls you auto (scheduled) posts. I know one of my sites has an issue, so I installed the three files and it fixed the issue. Click here to continue reading



Two point nine and 2010

By Austin On December 18, 2009 No Comments

Well we’ve been presented with an late Hanukkah gift, but an early Christmas gift! WordPress 2.9 has been released today. Also announced a new default theme called 2010 slated for release with version 3.0! Click here to continue reading



WordPress 2.9 RC-1

By Austin On December 16, 2009 No Comments


BuddyPress plugin for single user WordPress

By Austin On December 8, 2009 No Comments

For those who are familiar with BuddyPress, it’s a plugin for WordPressμ only. But Scott has created a plugin that would allow for single user compatibility. Click here to continue reading



Think outside the box

By Austin On November 5, 2009 1 Comment

Start

Click here to continue reading


How to: cut your server CPU load

By Austin On October 26, 2009 No Comments


It didn’t take long to add a point 1

By Austin On June 20, 2009 No Comments


WordPress 2.8 RC 1

By Austin On June 8, 2009 No Comments


The actually release of WordPress 2.8 announced

By Austin On June 4, 2009 No Comments


WordPress 2.8 beta 2 now available

By Austin On May 26, 2009 No Comments

WordPress announced the release of 2.8 beta 2, download it or check out the changes since beta 1. Click here to continue reading



Stats working in your time zone

By Austin On May 11, 2009 No Comments

For the longest time I remember checking out my WordPress stats via this Stats plugin and it always cut of my day at 4pm. This was because it only collected the stats via UTC time. Well check out this post where andy talks about the latest version 1.4 retroactively changing depending on your blog’s timezone. Click here to continue reading



WordPress design tweak results are in

By Austin On April 30, 2009 1 Comment

Did you vote? I did. Did your vote win? Mine didn’t :( Results. Click here to continue reading



Acquisition of wp.com

By Austin On April 24, 2009 No Comments

Just announced by Matt himself, that they finally acquired wp.com from Yahoo. Head over to the WordPress.com blog, leave a comment for what you think they should do with the domain.

As for now the domain: www.wp.com redirects to wordpress.com.

:) Click here to continue reading



A simple way to query posts

By Austin On April 6, 2009 No Comments

Here is a simple way to call query_posts with an array of options. For all options you my use visit: WordPress Codex.

<?php $my_query = array('showposts' => 4, 'post__not_in' => $do_not_duplicate); ?> <?php query_posts($my_query); ?> Click here to continue reading