Home » Archive

Articles Archive for August 2007

Joomla »

[30 Aug 2007 | No Comment | 779 views]

1) First you should make some changes in your configuration file of your Apache web server. Well, SEF in Joomla is for Apache web server only. Your server should have mod_rewrite enabled and it must allow .htaccess override. For doing this, follow the simple steps below: The configuration file named “httpd.conf” is located in the [...]

MySQL »

[20 Aug 2007 | No Comment | 144 views]

Problem: can’t create pid file: no such file or directory I had this problem and had a very tough and frustrating time with it. While I was installing a fresh copy of MySQL 5 in Windows XP, I got this problem. (I was installing it from the installer i.e. setup file.) The server was not [...]

PHP »

[19 Aug 2007 | One Comment | 153 views]

< ?php /* creating a class with two variables and a function */ class abc { var $name = "Ram"; var $surname = "Sharma"; function greet() { echo “Welcome! $this->name $this->surname”; } } class xyz extends abc { var $middlename = “Kumar”;

Perl, Regular Expression »

[15 Aug 2007 | 2 Comments | 107 views]

Fun with perl regular expression A) $st = “The programming republic of perl”;