How to install RVsitebuilder in Cpanel

August 31, 2008 on 12:33 am | In Cpanel | No Comments

RVsitebuilder requires the license to be purchased from www.rvsitebuilder.com

Then you can go for installation steps.
cd /usr/local/cpanel/whostmgr/docroot/cgi/
rm -rf rvsitebuilderinstaller.tar
wget http://download.rvglobalsoft.com/rvsitebuilderinstaller.tar
tar -xvf rvsitebuilderinstaller.tar

rm -rf rvsitebuilderinstaller.tar
chmod 755 addon_rvsitebuilder.cgi

Now go to your WHM >  Plugins >  RVSiteBuilder Installer menu. Click RVSiteBuilder Installer to begin the installation.

The installer may Promt you to set Mysql root password in case you have not set it before.

You may set it via WHM > SQL services > Mysql root password.

“ffmpeg headers not found” error while installing ffmpeg in cPanel servers

August 22, 2008 on 2:38 am | In FFMPEG | No Comments

The error received is

checking for ffmpeg support… yes, shared
checking for ffmpeg headers… configure: error: ffmpeg headers not
found. Make sure you’ve built ffmpeg as shared libs using the –enable-
shared option

This is due to missing header files in  “/usr/local/include/ffmpeg” directory.

Check whether the directory “/usr/local/include/ffmpeg” exists else create it.

mkdir /usr/local/include/ffmpeg

The copy the header files.

cp -p /usr/local/src/ffmpeg/libavformat/avio.h /usr/local/include/ffmpeg
cp -p /usr/local/src/ffmpeg/libavformat/avformat.h /usr/local/include/ffmpeg
cp -p /usr/local/src/ffmpeg/libavcodec/avcodec.h /usr/local/include/ffmpeg

You need to install your ffmpeg again. After installing the ffmpeg, install ffmpeg-php.

Plone Installation in linux Server.

August 5, 2008 on 12:45 pm | In Plone CMS | No Comments

Get the source

================
wget http://launchpad.net/plone/3.1/3.1.4/+download/Plone-3.1.4-UnifiedInstaller.tgz
tar -zxf Plone-3.1.4-UnifiedInstaller.tgz
cd Plone-3.1.4-UnifiedInstaller

================

Find the README.txt for more information. You can install Plone as standallone (server wide) or for a user.
Here we are dealing with stand alone or serverwide installation.

Make sure that you have gcc and g++ installed.
Else install it using yum of up2date.

====Optional====
yum install gcc
yum install gcc-c++.i386

================

You can list the available packages using the command

================
yum list | grep gcc
================

Once you have both gcc and g++ its easy.

run as root

================
./install.sh standalone
================

This will install plone in /opt/Plone-3.1/
You can start plone using the command

================
/opt/Plone-3.1/zinstance/bin/instance start
================

================
Access your zope settings at http://serverIP:8080/zope
Access you  Plone at http://serverIP:8080/Plone

The login will be given at the end of installation. Alternatively you can find it at /opt/Plone-3.1/zinstance/adminPassword.txt

(To change your password go to http://serverIP:8080/acl_users/users/manage_users   click the “Password” link for the admin)
================

To get information about changing port and other setting, open the file /opt/Plone-3.1/zinstance/README.txt

Thats all :)