How to install phpmyadmin on linux server ? Ans : 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, [ Read More ]
How to install propel-gen on Linux server ? Ans: Propel is an open-source Object-Relational Mapping (ORM) for PHP5. It allows you to access your database using a set of objects, providing a simple API for storing and retrieving data. Propel gives you, the web application developer, the tools to work with databases in the same [ Read More ]
How to install php soap on the linux plesk server(centos 5 -i386) ? Ans : You can easily installed php soap by using the rpm rpm -ivh http://www6.atomicorp.com/channels/atomic/centos/5/i386/RPMS/php-soap-5.2.13-1.el5.art.i386.rpm Then check it by using the command php -m | grep soap soap Done
To Disable SSLv2 and enable SSLv3 in the server in cpanel Linux Server Edit the ssl.conf file root@server []# vi /usr/local/apache/conf/ssl.conf Edit the line from SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL To SSLProtocol -SSLv2 +SSLv3 +TLSv1 SSLCipherSuite !NULL:!ADH:!EXP:!LOW:SSLv3:+HIGH:+MEDIUM root@server []# /etc/init.d/httpd restart You can connect the server using OpenSSL to test it SSLv3 enable or not : root@server []# [ Read More ]
How to install tomcat 6 on the linux server ? When you have installed tomcat by using Easy-Apache then it installed Tomcat 5.5 and if you want to installed Tomcat 6.0 then you need to made some necessary changes on the server. 1) First install Tomcat 5 by using Easy-Apache means java is also installed [ Read More ]
How to uninstall ffmpeg ? Ans : 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 [ Read More ]
How to update the yum repository on Centos 5 server 1) yum install yum-fastestmirror 2) yum install yum-priorities 3) uname -i If the output is i386 then cd /usr/local/src wget http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm 4) Install key rpm –import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt 5)Install rpmforge rpm -ivh rpmforge-release-0.3.6-1.el5.rf.i386.rpm 6) yum check-update It will take some time to update teh RPM and [ Read More ]
How to install imagick on linux server ? Solution : ================ cd /usr/local/src wget http://pecl.php.net/get/imagick-2.2.0.tgz tar -zxvf imagick-2.2.0.tgz cd imagick-2.2.0 phpize ./configure make make install ================ Done
If you want to install Rvsite builder on cpanel server then use the following simple steps. cd /usr/local/cpanel/whostmgr/docroot/cgi/ rm -f rvsitebuilderinstaller.tar wget http://download.rvglobalsoft.com/rvsitebuilderinstaller.tar tar -xvf rvsitebuilderinstaller.tar chmod 755 addon_rvsitebuilder.cgi Login to WHM as root, you will find RVSiteBuilder Installer menu under the Plugins Section. Click RVSiteBuilder Installer to begin the installation process. You will be [ Read More ]
You can get MPlayer via Subversion. Issue the following command to get the latest sources: root@server[] cd /usr/local/src svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer root@server[] svn update root@server[] cd mplayer root@server[]./configure root@server[] make root@server[] make install Done You can check the path of mplayer by using the command root@server [ ] which mplayer /usr/local/bin/mplayer Done
How 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 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 rpm -ivh antiword-0.37-3.el5.rf.i386.rpm Then you can check it root@server [/usr/local/src]# which xpdf /usr/local/bin/xpdf [ Read More ]
Installing the JavaFX SDK on Ubuntu Linux or OpenSolaris Access the URL http://java.sun.com/javafx/downloads/ and Download JavaFX 1.2.3 SDK for Linux platformon your local machine And Upload by using ftp or file manager under the /usr/local directory cd /usr/local chmod a+x javafx_sdk-1_2-linux-i586.sh sh javafx_sdk-1_2-linux-i586.sh Then it ask the yes or no then enter the “yes” means [ Read More ]
How to install Mail::SPF on cpanel server ? Please use the following one line command to perform the install: perl -MCPAN -e “get(‘Mail::SPF’)” && cd /home/.cpan/sources/authors/id/J/JM/JMEHNLE/mail-spf && tar -xzvf Mail-SPF-v2.007.tar.gz && cd Mail-SPF-v2.007 && perl Build.PL && ./Build && ./Build test && ./Build install && /scripts/checkperlmodules –full Done =========================================== As an alternative, to help clarify [ Read More ]
Error: Thumbnail not created for EXIF jpeg file by using Imagemagick Solution : The problem due the Imagemagick version. You need to upgrade your Imagemagick version. You can easily upgrade your Imagemagick version by using yum command. root# yum install glib2 root# yum install libpng root# yum install libjpeg root# yum install libtiff root# yum [ Read More ]
Svn(subversion) is used to maintain current and historical versions of files such as source code, web pages, and documentation. Its goal is to be a mostly-compatible successor to the widely used Concurrent Versions System (CVS). It is very easy to install subversion client on linux OS using yum. You can us following command to install [ Read More ]
What is Nagios ? Nagios is a system and network monitoring application. It watches hosts and services that you specify,alerting you when things go bad and when they get better. It is a fairly complex tool for monitoring the status of IT infrastructure – everything ranging from web servers to routers. Installation is a complex [ Read More ]
IonCube loader Install it on VPS and dedicated server. /sripts/phpextensionmgr list it will show you output as EAccelerator IonCubeLoader Zendopt SourceGuardian PHPSuHosin then /sripts/phpextensionmgr install Ioncubeloader
You can easily install PDFlib on linux server. ========================== cd /usr/local/src/ wget ftp://ftp.free.fr/.mirrors1/ftp.netbsd.org/packages/distfiles/PDFlib-Lite-7.0.3.tar.gz or check this URL http://www.filewatcher.com/m/PDFlib-Lite-7.0.3.tar.gz.5898798.0.0.html tar -zxf PDFlib-Lite-7.0.3.tar.gz cd PDFlib-Lite-7.0.3 ./configure make make install mount -o remount rw /tmp pecl install pdflib mount -o remount noexec,nosuid,rw /tmp php -m | grep pdf ========================== Done
I have use all the following steps and I am able to install ffmpeg without any error. There are ready made scripts available to install ffmpeg. ========================================================================== cd /usr/local/src wget http://www.bestdesigns.co.in/blog/installffmpeg.zip tar -xvf installffmpeg.zip cd installffmpeg ./install.sh ========================================================================== OR ========================================================================== You can installed it by using manually. Please follow the steps for installation of ffmpeg [ Read More ]
========================================== php INSTALLATION ( http://dan.drydog.com/apache2php.html ) ========================================== [root@]# wget http://in.php.net/get/php-5.2.6.tar.gz/from/in2.php.net/mirror [root@]#tar xvfz php-5.2.6.tar.gz [root@]# ./configure –with-apxs2=/usr/local/apache/bin/apxs –with-mysql=/usr/include/mysql –prefix=/usr/local/apache/php –with-config-file-path=/usr/local/apache/php –enable-force-cgi-redirect –disable-cgi –with-zlib –with-gettext –with-gdbm [root@]# make [root@]# make install [root@]# cp -p .libs/libphp5.so /usr/local/apache/modules [root@]# cp -p php.ini-recommended /usr/local/apache/php/php.ini [root@]# /etc/init.d/httpd restart ============================================
=========================== MySql INSTALLATION =========================== [root@]# wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-bench-5.0.27-0.glibc23.i386.rpm [root@]# wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-client-5.0.27-0.glibc23.i386.rpm [root@]# wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-devel-5.0.27-0.glibc23.i386.rpm [root@]# wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-server-5.0.27-0.glibc23.i386.rpm [root@]# wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-shared-5.0.27-0.glibc23.i386.rpm [root@]# wget http://mirror.centos.org/centos-5/5/os/i386/CentOS/perl-DBI-1.52-1.fc6.i386.rpm [root@]# rpm -ivh perl-DBI-1.52-1.fc6.i386.rpm [root@]# rpm -ivh MySQL-bench-5.0.27-0.glibc23.i386.rpm [root@]# rpm -ivh MySQL-client-5.0.27-0.glibc23.i386.rpm [root@]# rpm -ivh MySQL-devel-5.0.27-0.glibc23.i386.rpm [root@]# rpm -ivh MySQL-server-5.0.27-0.glibc23.i386.rpm [root@]# rpm -ivh MySQL-shared-5.0.27-0.glibc23.i386.rpm The following is what I did to change the [ Read More ]
================================================= APACHE INSTALLATION ================================================= [root@]#cd /usr/local/src [root@src]#wget wget http://mirrors.enquira.com/apache/httpd/httpd-2.2.9.tar.gz [root@src]#tar xvfz httpd-2.2.8.tar.gz [root@src]#cd httpd-2.2.8 [root@httpd-2.2.8]# ./configure –prefix=/usr/local/apache2 [root@httpd-2.2.8]# make [root@httpd-2.2.8]# make install [root@httpd-2.2.8]# cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd ./configure –with-layout=Apache –add-module=../mod_frontpage.c –enable-module=so –enable-module=ssl –enable-module=rewrite –enable-module=info –enable-module=expires –enable-module=headers –enable-module=proxy –enable-module=unique_id –enable-suexec –logfiledir=/usr/local/apache/logs –prefix=/usr/local/apache –suexec-caller=nobody –suexec-docroot=/ –suexec-gidmin=100 –suexec-logfile=/usr/local/apache/logs/suexec_log –suexec-uidmin=100 –suexec-userdir=public_html –sysconfdir=/usr/local/apache/conf =================================================
Tools ‹ indianwebportal.com — WordPress.
How to install Fantastico : Here are the steps to download Fantastico & install it onto your server : 1. Change to the proper cgi folder using the following command: # cd /usr/local/cpanel/whostmgr/docroot/cgi # wget http://www.netenberg.com/files/free/fantastico_whm_admin.tgz # tar –xzpf fantastico_whm_admin.tgz # rm -rf fantastico_whm_admin.tgz 2. RE-Login to WHM in a web browser inorder for the [ Read More ]
How to install roundcube Before installing roundcube on a cPanel server you should know your mysql root password. Replace DATABASEPASSWORD with your mysql root password. If you have already used a RoundCube installation please make sure you remove any traces of it . Follow the steps given below and remove any traces of it with, [ Read More ]
Install ioncube Installing ionCube Loader: cd /usr/local/src wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz 2. Unpack the program tar -zxvf ioncube_loaders.tar.gz 3. cd ioncube copy ioncube-install-assistant.php to a web directory such as your hosting directory and open it in your browser window. cp ioncube-install-assistant.php /home/userdirectoryhere/www or cp ioncube-loader-helper.php /home/userdirectoryhere/www Then open it http://www.yourdomain.com/ioncube-install-assistant.php The output should be something similar to: [ Read More ]
Install/update Zend Optimizer a) Install Zend Optimizer # /scripts/installzendopt Or #cd /usr/local/src # wget http://downloads.zend.com/optimizer/3.3.3/ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz #tar -xzvf ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz # cd ZendOptimizer-3.3.3-linux-glibc23-i386/ # ./install.sh make sure that the end of your php.ini file looks like this – if not change it (this is assuming your installing version 3.3.0) [Zend] zend_extension_manager.optimizer=/usr/local/Zend/lib/Optimizer-3.3.0 zend_extension_manager.optimizer_ts=/usr/local/Zend/lib/Optimizer_TS-3.3.0 zend_optimizer.version=3.3.0 zend_extension=/usr/local/Zend/lib/ZendExtensionManager.so zend_extension_ts=/usr/local/Zend/lib/ZendExtensionManager_TS.so Step7 Save [ Read More ]