Archive for January 8th, 2012

How to install pdo_mysql module with php on 64 bit linux machine?

Install pdo_mysql module with php on 64 bit linux machine —>> The PHP Data Objects (PDO) extension defines a lightweight, consistent interface for accessing databases in PHP. Each database driver that implements the PDO interface can expose database-specific features as regular extension functions. Note that you cannot perform any database functions using the PDO extension […]

How to install php eaccelerator on 64 bit linux server?

Installation of php eaccelerator  —>> Source : http://bart.eaccelerator.net/source/0.9.5.3/ Steps :  $ tar -jxvf eaccelerator-0.9.5.2.tar.bz2 $ cd eaccelerator-0.9.5.2 $ phpize $ ./configure $ make $ make install  after the last command, it shows this line: Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20060613/ Now we edit php.ini //php -i |grep php.ini or php –ini $ nano /usr/local/lib/php.ini and add these line: […]

How to install svn (Subversion) on linux machine?

SVN or Subversion  —>> Subversion, or SVN, is a mechanism by which developers can keep track of changes to their code and distribute these changes to the public in real time. This allows people to take advantage of software as it is being developed, between official releases.  I referred following steps : ==== cd /usr/local/src/ […]

How to install uploadprogress php extension on linux machine?

Installation of uploadprogress php extension —>> 1. Download source file from : http://pecl.php.net/package/uploadprogress/ 2. tar -xvzf uploadprogress-1.0.0.tgz 3. cd uploadprogress-1.0.0 4. phpize 5. ./configure 6. make  7. make install 8. uploadprogress.so will go to /usr/lib/php/extensions/no-debug-non-zts-20060613/ 9. echo “extension=uploadprogress.so” >> /usr/lib/php/php.ini 10. Restart webserver. thats all      

How to install suPHP on centos linux OS?

Installing suPHP on Centos 5 —>> suPHP is a tool that allows PHP scripts to be executed with the permissions of their owners. By not running PHP script using web server’s user rights, suPHP increase the server security. First install httpd-devel and compiler tools: —– yum install httpd-devel gcc gcc-c++ make —– Download suPHP source […]