Archive for the ‘Installation’ Category

How to install suPHP on linux server?

You should follow below steps : ======================================= 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 code […]

How to install RMS(Ray Media Server) server on 64 bit linux machine?

You should follow below steps : ==================== cd /usr/local mkdir RMS cd RMS wget http://get.boonex.com/RMS-LINUX-v.7.0 tar xzvf RMS-LINUX-v.7.0 Steps for configuring RMS : 1. access.dat – input all domain names which will be allowed to access RMS. Every domain name should be written on a separate line and should not contain “http://” and “www”, just […]

Install xen virtual server on linux platform

Install xen virtual server on linux platform Before installing xen on the linux (centos or Redhat), please check the compatiblity. Then check whether the server has already installed xen. There packages should be checked. I checked using RPM. .1 xenserver# rpm -qa |grep xen  xen-libs-3.1.0-13.el5  xen-3.1.0-13.el5  xenserver #rpm -qa |grep kernel-xen  kernel-xen-2.6.21-2950.el5 xenserver-dev #rpm –qa […]

How to update/install latest RoundCube on cPanel

First you will have to uninstall/remove exiting RoundCube files/folder/database on your server, Uninstall/remove exiting RoundCube cd /usr/local/cpanel/base rm -rf roundcube* mysql -e ‘drop database roundcube’; /scripts/upcp Now follow the following steps to update/install latest roundcube version ,we need to get Roundcube before we can use it. The easiest way to get it is to visit […]

How to install xpdf,libXp and antiword on Linux

Following are the steps to install xpdf , libXp and antiword on Linux (Centos or Redhat 32 Bit ) server cd /usr/local/src/ Dowload following RPM’s files under the /usr/local/src/ directrory. wget http://mit.edu/zacheiss/dev/rhlinux/redhat-7.1-updates/SRPMS/xpdf-0.92-4.71.0.src.rpm wget ftp://ftp.univie.ac.at/systems/linux/fedora/core/6/i386/os/Fedora/RPMS/libXp-1.0.0-8.i386.rpm wget http://dag.wieers.com/rpm/packages/antiword/antiword-0.37-3.el5.rf.i386.rpm rpm -ivh antiword-0.37-3.el5.rf.i386.rpm or http://dag.wieers.com/rpm/packages/antiword/?N=A Then rpm -ivh xpdf-0.92-4.71.0.src.rpm rpm -ivh libXp-1.0.0-8.i386.rpm Then you can check it root@server [/usr/local/src]# […]

How to install Fantastico on cpanel server?

Steps to install fantastico: 1. Login to server as root 2. cd /usr/local/cpanel/whostmgr/docroot/cgi 3. Now download fantastico tar file using following cmd: wget -N http://files.betaservant.com/files/free/fantastico_whm_admin.tgz(external link) 4. Untar it: tar -xzpf fantastico_whm_admin.tgz 5. Remove tar file : rm -rf fantastico_whm_admin.tgz 6. Now login to WHM 7. Go to plugins and click on Fantastico De Luxe […]

How to install phpSHIELD?

phpSHIELD Installation : Introduction: phpSHIELD protects your PHP Source Code with a powerful, easy to use encoder, which creates a native bytecode version of the script and then encrypts it. It’s needed to video script enabled sites. —— STEPS: Login to server as root: 1. Check the architecture of your machine. like : root@j [~]# […]

How to uninstall ffmpeg

How to uninstall ffmpeg ? Solution : I have installed the ffmpeg by using the /usr/local/src/ffmpeg directory so I have uninstalled it by using the same directory. cd /usr/local/src/ffmpeg make uninstall Deleting ffmpeg-related files from /usr/lib & /usr/bin folders. You can confirm by using following command to uninstall ffmpeg. locate ffmpeg | grep bin cd / […]

how to install APC

How to install APC on Linux ? Ans: The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code. Besides being a opcode cache it provides a user cache for storing application data. APC […]

How to install phpmyadmin on linux

How to install phpmyadmin on linux server ? Solution : phpMyAdmin is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, […]