Browsing articles in "PHP"
Nov
24
2008

How to Install LAMP (Linux, Apache, MySQL, PHP) on Ubuntu (8.04 / 8.10)

This is for the newbies in the world of Ubuntu. Use the following steps to install LAMP (Linux, Apache, MySQL and PHP) in Ubuntu. Open up the Terminal (Applications > Accessories > Terminal). Run the following command to install Apache $sudo apt-get install apache2 To test Apache open up any web browser and then enter the following into the web address: http://localhost/ Now run the following command in the terminal to install PHP $sudo apt-get [...]

Nov
21
2008

How to install or add PHP GD support in Ubuntu

PHP is mainly a server side language which renders the code at server and throws the output to the client end through Apache or any other HTTP server. So, being a newbie we often suffer from GD support in Ubuntu. This are the following steps to install or add PHP GD support in Ubuntu. $ apt-get install php5-gd OR $ sudo apt-get install php5-gd $ /etc/init.d/apache2 restart Now PHP GD support is ready to work.

Nov
13
2008

How to set a cron job using PHP in webmin

I have a CentOS server to test my all projects. According to clients requirement webmin is installed as admin panel. Today I had tried to use a cron PHP script in that server and succeeded. This is how I have setup the cron job. In the webmin panel ther is a menu group named ‘Cluster’; So from that menu group -> Cluster Cron Job. Then I have added a new cron job. 1. Selected user [...]