Archive for the ‘Installation’ Category

Why It Is Compel To Take Hosting Services?

Just creating a website isn’t all. It is necessary that everyone has access to it. Hence, until and unless one hosts a website, even the best of the websites aren’t going to be successful. Therefore, one must definitely host their website on the internet i.e. to say the World Wide Web. The Benefits of Hosting […]

Compulsory Things To Do For Online Business

Online business is growing at fast rate. Taking your business to online services is a step which will earn everybody’s praise. If we look around us, we will find out that everything seen by our eyes is directly or indirectly related with some kind of business. Activities like, people travelling by vehicles, commercial shops, filling […]

Boom In The Internet And Web Hosting Service In 21st Century

Web hosting enables the companies to make their websites. With increase in demand & competition, web hosts all the time implementing new plans to encourage its sale and hence create a win-win situation for all. In the 21st century, we have witnessed a century marked with the rise of technology. With the advent of high […]

Acknowledge Yourself With Diverse Hosting Plans

The revolution of internet has transformed many businesses into online business. To spread their business all over the world they use the internet as a great source of advertisement and marketing. ‘Websites’ serves as the network between the customers and providers, providing all the necessary details and information in an easy way. So websites play […]

$1 Hosting Plan Is The Best And Easiest Way to Get Online

For the online business, the people require the hosting plan via which they can get online and start up their business. Hence, it is the easiest way to get online. At the present time, the people are always looking for some alternatives through which they can expand their business. But according to the present scenario, […]

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

How to install mod_evasive(DDOS protection tool) on 64 bit linux machine?

You should follow below steps : ======== cd /usr/local/src wget http://www.sfr-fresh.com/unix/privat/mod_evasive_1.10.1.tar.gz tar -zxvf mod_evasive_1.10.1.tar.gz cd mod_evasive For apache 2.0.x : /usr/sbin/apxs -cia mod_evasive20.c //integrating with apache. Then add these in httpd.conf : DOSHashTableSize 3097 DOSPageCount 6 DOSSiteCount 100 DOSPageInterval 2 DOSSiteInterval 2 DOSBlockingPeriod 600   For apache 1.3.x : /usr/local/apache/bin/apxs -cia mod_evasive.c //integrating with apache. […]