Latest News

widezine

Widezine WordPress Theme

By Paul Cracknell - 10th April 2011

If you are looking for a different look to the usual magazine style WordPress this one may be it for you.  Take a look and see what you think.  There is plenty of room in the sidebar and for articles.

Click on the image to go to the live demo.…

Read More

Themeforest Theme

AirWP Premium WordPress Theme

By Paul Cracknell - 10th April 2011

Themeforest Theme

I am a big fan of Themeforest and their WordPress thems.  They are cheap for the what you get.  Each theme is highly customisable and jam packed full of features.  This theme AirWp took my fancy as a pretty cool theme for a personal blog. Check it out and see what you think.  Don’t forget to take a look at the live demo.

Click on the image to check out …

Read More

How do I create a phpinfo page?

By Paul Cracknell - 8th April 2011

Calling phpinfo is useful to give you a lot of information about your php server setup. It is very simple to do as well.

On your desktop, open a new text file with notepad or similar.

Copy and paste this:

<?php phpinfo(); ?>

Save the file as phpinfo.php (or anything else as long as the extention is .php).

Upload the file to your site at the root level and then call …

Read More

PHP MySQL – Return your database table autoincrement back to 1

By Paul Cracknell - 8th April 2011

Database tables that auto increment generally start at 1 and keep on going up, even if all the content in the table has been deleted, the next entry will continue on from the last number.

If you would like to delete all the content from a database table and restart your table to number 1 this is how you do it.

In phpMyAdmin click on the table name that you …

Read More

Notice: Undefined index: page in …

By Paul Cracknell - 20th January 2011

If you are developing a WordPress theme and have the debug feature activated and you have the following error in the Admin Area of your WordPress…

Notice: Undefined index: page in C:\Users\\Mysql folder\root\wordpress\wp-content\themes\breathe\functions.php on line 298

The offending line of code is most likely this…

1
if ( $_GET['page'] == basename(__FILE__) ) {

replace with this…

1
if ( isset($_GET[

Read More

Notice: Undefined index: id in…

By Paul Cracknell - 20th January 2011

If you are developing a WordPress Theme Option Page via some tutorials on the web, the php that is used to call the options will create these errors when the WordPress debug feature is activated.
Notice: Undefined index: id in C:\Users\Mysql folder\root\wordpress\wp-content\themes\breathe\index.php on line 4

Notice: Undefined index: std in C:\Users\Mysql folder\root\wordpress\wp-content\themes\breathe\index.php on line 4

The code that is generally outlined and is the culprit for the errors is…

1

Read More

Debug your WordPress Theme

By Paul Cracknell - 13th January 2011

So you have finished your WordPress theme and now you want to check that everything that you have done is right.  Debugging the php is just one of the steps that you should take to check that your theme is ready to unleash on the world.  It is very simple to activate the de-bugging feature for WordPress. In the root directory of your theme find wp-config.php.  Open the file and …

Read More

Page 4 of 7« First...23456...Last »