echo " " echo "Hello ,Please choose the RED5 version : (1,2,3 or 4)" echo " " echo "1. RED5 0.7.0" echo "2. RED5 0.6.3" echo "3. RED5 0.5 " echo " Press Any other key to install 1. RED5 0.7.0" read ver cd /usr/src echo "" echo "" echo "Downloading and installing jpackage utils rpm......." echo "" echo "" wget -c --tries=inf http://mirrors.dotsrc.org/jpackage/1.7/generic/free/RPMS/jpackage-utils-1.7.5-1jpp.noarch.rpm rpm -Uvh jpackage-utils-1.7.5-1jpp.noarch.rpm echo "" echo "" echo "Downloading and installing JDK 1.6 update 5 ..........." echo "" echo "" wget -c --tries=inf http://69.72.132.53/jdk-6u5-linux-i586.rpm rpm -Uvh jdk-6u5-linux-i586.rpm echo "" echo "" echo "Downloading and installing Apache Ant 1.7 ..........." echo "" echo "" wget -c --tries=inf http://apache.mirror.facebook.com/ant/binaries/apache-ant-1.7.0-bin.tar.gz tar -xzvf apache-ant-1.7.0-bin.tar.gz mv apache-ant-1.7.0 /usr/local/ant echo "" echo "" echo "Exporting Paths and Variables for Ant ..........." echo "" echo "" echo 'export PATH=$PATH:/usr/local/ant/bin'>>/etc/profile echo 'export ANT_HOME=/usr/local/ant'>>/etc/profile export PATH=$PATH:/usr/local/ant/bin export ANT_HOME=/usr/local/ant echo "" echo "" echo "Downloading and installing RED 5 ..........." echo "" echo "" case $ver in 2) wget -c --tries=inf http://dl.fancycode.com/red5/0.6.3/src/red5-0.6.3.tar.gz tar -xzvf red5-0.6.3.tar.gz mv red5-0.6.3 /usr/local/red;; 3) wget -c --tries=inf http://dl.fancycode.com/red5/red5-0.5.tar.gz tar -xzvf red5-0.5.tar.gz mv red5-0.5 /usr/local/red;; 1|*) wget -c --tries=inf http://red5.nl/installer/red5-0.7.0.tar.gz mkdir red5 mv red5-0.7.0.tar.gz red5/ cd red5 tar -xzvf red5-0.7.0.tar.gz rm -rf red5-0.7.0.tar.gz cd .. mv red5 /usr/local/red;; esac wget -c --tries=inf http://69.72.132.53/red5 mv red5 /etc/init.d/ chmod 755 /etc/init.d/red5 cd /usr/local/red chmod 755 red5.sh ant -v ./red5.sh
RED5 installation
30 04 2009Comments : 1 Comment »
Tags: flash server, how to install red5, how to start red5 service, media server using red5, red5, red5 installation script, red5 installation tool
Categories : 1
MRTG installation in cpanel
19 04 2009# Move to your download folder.
cd /root/downloads
rpm -e mrtg
wget http://www.dedicated-resources.com/files/mrtg-2.9.17-1cpanel.i386.rpm
Installing the app
rpm -Uvh mrtg-2.9.17-1cpanel.i386.rpm
Moving libpng
cd /usr/lib
mv libpng.so.2 libpng.so.2.OLD
# Creating the symlink
ln -s libpng.so.3 libpng.so.2
# Edit language at and specify only “en_US”
pico /etc/sysconfig/i18n
# Restarting MRTG
service mrtg restart
# Configurating MRTG to allow only our local IP to see the reports at
http://IP/mrtg
vi /usr/local/apache/conf/httpd.conf
#Search for the line (CTRL+W):
# It should look like this:
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
#After the last line () paste this and change allowed IPs:
order deny,allow
allow from [ SERVER IP ]
allow from [YOUR LOCAL IP]
deny from all
# Restarting httpd
service httpd restart
chkconfig –level 0123456 mrtg on
# Edit file:
pico /etc/mrtg/check-email
# Change to “*-H” “* -H”.
————————————————————————–
Comments : Leave a Comment »
Tags: cpanel mrtg, martg installation, mrtg, mrtg in cpanel, mrtg install cpanel, mrtg update cpanel
Categories : 1
ffmpeg-php error
19 04 2009While compiling ffmpeg-php Error: /usr/src/ffmpeg-php-0.6.0/ffmpeg_frame.c: In function ‘zif_ffmpeg_frame_toGDImage’: /usr/src/ffmpeg-php-0.6.0/ffmpeg_frame.c:336: error: ‘PIX_FMT_RGBA32′ undeclared (first use in this function) /usr/src/ffmpeg-php-0.6.0/ffmpeg_frame.c:336: error: (Each undeclared identifier is reported only once /usr/src/ffmpeg-php-0.6.0/ffmpeg_frame.c:336: error: for each function it appears in.) /usr/src/ffmpeg-php-0.6.0/ffmpeg_frame.c: In function ‘zif_ffmpeg_frame_ffmpeg_frame’: /usr/src/ffmpeg-php-0.6.0/ffmpeg_frame.c:421: error: ‘PIX_FMT_RGBA32′ undeclared (first use in this function) ————————————————————————————–
Fix: With the latest version of ffmpeg-php (0.6.0), update ffmpeg_frame.c and replace every instance of PIX_FMT_RGBA32 with PIX_FMT_RGB32
vi ffmpeg_frame.c
:%s/PIX_FMT_RGBA32/PIX_FMT_RGB32
:w :q!
./configure make make install add extension=”ffmpeg.so” inside php.ini .
Comments : 2 Comments »
Categories : 1

Recent Comments