November 29th in Linux/Unix, PHP Scripts by pbu .
i had a sudden wierd problem with my site running cpanel. when ever i click on the link in my website, the browser shows a download box for the php file instead of showing a webpage. I did use mod rewrite to make url friendly
How to Fix
I figured out later …
November 26th in vBulletin by pbu .
It is easy to change the title of the forum main page. A very good title for your forum index page is important for organic search engine rankings.
Here is how to change the title of forum main page.
Vbulletin AdminCP > Styles & Templates > FORUMHOME
Look for tags in the …
November 26th in Linux/Unix, PHP Scripts by pbu .
i recently faced a real problem because of this. I decided to move from bluehost because my site kept receiving “cpu exceeded error” page frequently. I moved to a new dedicated server host running cpanel. I did a SCP cpanel account restore and very strangely, when i type my domain …
November 19th in Games by pbu .
Crysis Warhead and Farcry 2 both recent releases in PC version of the games this month and you might be wondering which one to buy? or which is the best among the two.
Definitely go for Crysis Warhead.
Both these games are strikingly similar, but crysis has much better graphics and gameplay …
November 17th in General by pbu .
Hmm!
Washing clothes is one of the hardest work for any person in the planet. Recently i have purchased a LG top loading, fully automatic machine ($375) and i was very surprised, being a first time user i really didnt know how to use a washing machine. I hate …
November 13th in Linux/Unix, PHP Scripts by pbu .
PHPMyAdmin will not work for uploading large mysql databases. If you attempt to upload a large mysql dataset you will often get this error
Fatal error: Maximum execution time of 300 seconds exceeded
Fix:
If you get this error you will need edit config.default.php inside phpmyadmin and look for this line
$cfg['ExecTimeLimit'] = …
November 12th in PHP Scripts by pbu .
If you are a PHP programmer and if you are using regular expressions with ereg_replace then often with replacing particular characters you might encounter error like
Warning: ereg_replace(): REG_BADRPT
Here is a simple function that causes this error
function OrigURL($str)
{
$out = ereg_replace(‘+’,’ ‘,$str);
return $out;
}
Solution: Just escape the characters. Only then it will …
November 12th in PHP Scripts by pbu .
I was working on a mysql search script with paging where i had to pass the same GET parameters to page numbers like
search.php?q=what+europe+scripts&page=1
I used $_SERVER['QUERY_STRING'] to get the GET parameters. But the problem i got was when i was in page 2 it would show query string like
search.php?q=what+europe+scripts&page=1&page=2
and if i …
November 2nd in Wordpress by pbu .
WordPress is such a powerful CMS and literally you can achieve anything from it. Not just that its code is very easy to understand and it can be customized to anything.
Here are the 10 best free wordpress themes you would never want to miss.
Blue Sensation
License: FREE
Download | Visit Website
Monochrome Gallery
(Photo …
October 31st in Wordpress by pbu .
In wordpress, sometimes you may have many subcategories for a different parent categories. By default wordpress lists all sub-categories.
if i have category structure like
Drupal
- 2 Column
- 3 Column
- Left sidebar
- Right sidebar
WordPress
- Fixed Width
- Widget Ready
- News/Magazine
- Photogallery
and if i do a wordpress post (with title say CSS Gallery) …