Must read: How to install ffmpeg in CentOS or Red Hat
Once you have installed ffmpeg, now you need to install php extension of ffmpeg to work ffmpeg via php.
# wget http://sourceforge.net/projects/ffmpeg-php/files/ffmpeg-php/0.6.0/ffmpeg-php-0.6.0.tbz2/download
# tar -xvjf ffmpeg-php-0.6.0.tbz2
# phpize
# ./configure --enable-shared
# make
# make install
Locate php.ini
# php -i | grep php.ini
Configuration File (php.ini)... [ Continue reading... ]
create a dag.repo file (if not exists), as below
vi /etc/yum.repos.d/dag.repo
Insert the following:
[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1
Save dag.repo and come out out vi editor
Add the /usr/local/lib to /etc/ld.so.conf
vi /usr/local/lib to /etc/ld.so.conf
Save and exit vi editor.
Then run below... [ Continue reading... ]
This tutorials will help you to install PPTP vpn on Xen vps.
PPTP installation:
Debian
apt-get install pptp
CentOS
yum -y install pptp
Configuration:
Open /etc/pptpd.conf and add following 2 lines
nano -w /etc/pptpd.conf
localip 123.123.123.123
remoteip 192.168.1.1-200
Replace 123.123.123.123 with public ip of your vps
Now open /etc/ppp/options.pptpd and add dns server ip
ms-dns 8.8.8.8
8.8.8.8 is google public dns, you can... [ Continue reading... ]
If you have already read "How to install websitepanel/dotnetpanel", then this is the next step to do after installation.
Microsoft web platform installer also provide the option for recommended settings for IIS7 to run with websitepanel aka dotnetpanel.
After installing websitepanel, installer provide the option to add multiple applications, you can select IIS7 recommended settings and install them by following... [ Continue reading... ]
Installation of Websitepanel aka Dotnetpanel is very easy with Microsoft Web platform installer.
Go to http://www.websitepanel.net
Click on "Microsoft Web platform installer" on left side icon
On next page, click on "Install"
Follow the wizerd and click on "Install"
Accept Installer Agreement
If you do not have MSSQL already installed then Wizerd will automatically install MSSQL express and will ask for password.
You... [ Continue reading... ]