WP 3.0 – Fatal error: Allowed memory size of 33554432 bytes exhausted . . .

Today WordPress.org released the new version of the WP – WP 3.0. The new version is a very impressive update of the cms. But soon after upgrading from my 2.9.x to 3.0 version of wordpress, i tried to make a post in the admin panel and upon publishing it i got this error on wordpress […]

How to upgrade from WordPress 2.9.x to WP 3.0 (manual & automatic to latest version)

Today WordPress version 3.0 has been released by WordPress.Org This release is a major release with many changes and addition of various features. Here in this tutorial we will discuss how to upgrade wordpress from version 2.9.x to 3.0 automatically and then how to do the upgrade manually. First we will make sure how to […]

WordPress 3.0 Thelonious released

WordPress.org released versin 3.0 officially today. This version is a major breakthrough in this cms history and not only have bugs fixes but a huge list of wonderful new and long waited features. The thirteenth major release of WordPress, WP 3.0 is a result of six months of hard work by 218 contributors. The main […]

Dolphin 7 – Error Database query error – turn on debug mode

While working on boonex dolphine 7 you may have seen the error saying: Error Database query error This error is obviously due to some problem with the dolphin 7 (d7) database query that your script / module is generating. So how to fix it? first of all if you have recently developed or are developing […]

How to change the sequence of columns of a table in mysql – phpmyadmin

This tutorial explains how you can change the sequence of the columns in a mysql database’s table (in phpmyadmin or by using php code) I wrote this article while doing this practically right now as i wasn’t able to find any proper information online about it, and among those that i found, NONE was working. […]

Virus / Trojan freezing your computer – how to fix

There could be numerous viruses and trojans which can affect your computer and cause problems to it in various ways. Some viruses are just made by programmers for fun. They simply freeze your computer that’s it. But some are serious threat. They may delete your critical data, and / or send the data to the […]

New Elements introduced in HTML5

New Elements in HTML5 Internet and the way we use web is not the same as it was a decade ago. The web standards and internet as a whole has changed alot since 1999 when HTML 4.01 was released and made a standard back then. In todays world of internet and markup, there are many […]

Introduction to HTML5

What is HTML? HTML stand for Hyper Text Markup Language. What is HTML5? HTML5 is the next generation of HTML. HTML5 is going to be the new standard not only for HTML , XHTML and the HTML DOM (data object model). HTML5 is still under process of development. HTML5 is supported by most modern internet […]

Online urdu writer

Now you can write urdu from roman withing seconds like you type sms or chat with your friends. The text will be converted to URDU text within no time. Online Urdu Writing We’ve launched the page for roman to urdu writing which makes writing urdu text for your website/ blog as well as for chat […]

Convert string variable characters to ASCII codes using PHP

In situations where you want to convert the value stored in your variable to ascii code in PHP you can use the following code. function nabascii($input) { foreach (str_split($input) as $obj) { $output .= ‘&#’ . ord($obj) . ‘;’; } return $output; } Call the code by using: $myvariable = “nabeel”; echo nabascii($myvariable); This small […]