Archive for January, 2012

$1 Web Hosting at MyTrueHost.com

MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term. Our aim is to provide cheap linux web hosting, affordable web hosting, reliable web hosting, budget web hosting  with unlimited webspace and unlimited bandwidth […]

Reliable Web Hosting

Reliable Web Hosting in $1/month at mytruehost.com —->> MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term. Our aim is to provide cheap linux web hosting, affordable web hosting, reliable web hosting, budget […]

Affordable Web Hosting

Affordable Web Hosting in $1/month at mytruehost.com —->> MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term. Our aim is to provide cheap linux web hosting, affordable web hosting, reliable web hosting, budget […]

Cheap Web Hosting

Cheap Web Hosting in $1/month at mytruehost.com —->> MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term. Our aim is to provide cheap linux web hosting, affordable web hosting, reliable web […]

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 […]

How to install ImageMagick on linux?

You should follow below steps : ============ 1.Check whether ImageMagick has been installed or not. which convert or which montage like this or locate ImageMagick. Or rpm -qa |grep ImageMagic 2. yum install ImageMagick 3. Now check once again. 4. rpm -ql ImageMagic| more 5. rpm -qf /usr/local/bin/convert //to check the exact rpm which has […]