Monthly Archives: May 2011

Debian: How To Create A Virtual Host

Create a new web directory. Example: #: mkdir /var/example Create a virtual file. Example: #: vi /etc/apache2/conf.d/virtual.conf In virtual.conf, put: ——————————————- # # Using multiple www hosts # NameVirtualHost * ——————————————- Create conf file in folder site-available #: vi /etc/apache2/sites-available/example.conf In … Continue reading

Posted in General Discussion | Tagged , | Leave a comment

How To Start, Stop And Restart A MySQL Server

For MySQL used on RedHat Linux (Fedora Core/Cent OS) then use following command: To start mysql server: /etc/init.d/mysqld start To stop mysql server: /etc/init.d/mysqld stop To restart mysql server: /etc/init.d/mysqld restart Tip: Redhat Linux also supports service command, which can … Continue reading

Posted in General Discussion | Tagged , , , | Leave a comment

IBM Lotus Notes 8.5 – How To Add/Change Email Signature

The IBM made it so easy to figure out where to go to add or change an email signature that silly me had a hard time finding it. In case you too have a hard time finding it as well, here’s a … Continue reading

Posted in General Discussion | Tagged , , , | Leave a comment

Hydrogen Hybrid Conversion Kit – Convert Your Car

If you had a way to convert your car to be a hydrogen hybrid, would you do it? I know, you need more information to give a comfortable answer. Well, I would too – so I looked into the idea … Continue reading

Posted in General Discussion | Tagged , , | Leave a comment

Echo New Line / Carriage Return In PHP Tip

In order to echo a new line or carriage return in PHP, the code (\n) must be in double quotes. Wrong Code: <?php echo ‘Hello \n World’;?> Correct Code: <?php echo “Hello \n World”;?> or <?php echo ‘Hello’.”\n”.’World’;?>

Posted in Development | Tagged , , | Leave a comment