No Image

Installing PEAR for PHP

September 1, 2010 amit 0

Installation For Windows: To update your PEAR installation, request http://pear.php.net/go-pear in your browser and save the output to a local file go-pear.php. Assuming you have […]

Automated Web Testing

August 25, 2010 amit 0

We have now adoped Selenium for automated web application testing. This increases the quality level of our software and generates better confidence for our clients.

No Image

Installing VSFTPD

July 30, 2010 amit 0

1.Install it from the ports cd /usr/ports/ftp/vsftpd make config make install clean 2.Edit the vstfpd.conf file in /usr/local/etc/vsftpd.conf to customize the settings 3.To run it […]

No Image

How to save a remote image to local disk

July 30, 2010 amit 0

$image_url = “http://example.com/image.jpg”; $ch = curl_init(); $timeout = 0; curl_setopt ($ch, CURLOPT_URL, $image_url); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); // Getting binary data curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, […]

No Image

Installing Mysql 5.x

May 17, 2010 amit 1

The commands are given below. Though this was used to install mysql 5.5.4 , it is applicable to older versions also (and perhaps newer ones […]