Tampilkan postingan dengan label Debian. Tampilkan semua postingan
| 0 komentar

Upgrading VIMP (Community Edition) From 2.0.6 to 2.1.1

ViMP (a video & social media Content Management System) recently released version 2.1.1 (which includes support for mobile devices).

I had previously installed version 2.0.6 (as a virtual machine in VMware vSphere) and thought I would take a look at keeping my ViMP installation up-to-date.

The first step is of course to make a backup in-case the upgrade fails – I simply took a snapshot of my virtual machine as this was the quickest and simplest solution.

First download ViMP version 2.1.1 from here.

Upload ViMP 2.1.1 to your server using WinSCP (Windows) or SSH (Linux).

Now use Putty (Windows) or SSH (Linux) to access the command line interface on your ViMP server.

Copy vimp.framework-2.1.1-r19091-community.tar.gz to your installation folder, in my case this was /var/www/showvid/data:

sudo cp vimp.framework-2.1.1-r19091-community.tar.gz /var/www/showvid/data

Change directory and extract ViMP 2.1.1 with the following commands:

cd /var/www/showvid/data sudo tar xzf vimp.framework-2.1.1-r19091-community.tar.gz

Issue the following commands to upgrade*:

sudo ./symfony rebuild sudo ./symfony cc

* Note that If you use languages other than English and update from a version < 2.0.7 to a version >= 2.0.7, the following symfony task must also be executed (in between the two commands above):

./symfony i18n:import --clear

You should now be able to log in as admin and see that your ViMP installation is running the new version (under the configuration link).

After the upgrade I found that then when I try to upload video I see an Error in the Admin portal:

+ Problem executing command FFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1.1, Copyright (c) 2000-2009 Fabrice Bellard, et al. configuration: --extra-version=4:0.5.1-1ubuntu1.1 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enabl

I logged in as admin and clicked on Administration then Configuration and then Player and set Enable HTML5-player to False.

Then under the Media tab I clicked Restart Transcoding on the affected uploads and they converted successfully. After this I clicked on Transcode new formats and this appeared to work.

I checked /var/www/showvid/data/logs/framework.convert.log and did not see any errors.

So for now I have just left the HTML5 player disabled and my uploads are working without issue (even if they are not being transcoded to the new formats).

Additional support is available from the ViMP Forum if required.

Read more...
| 0 komentar

instalasi ispcp pada debian

instalasi ispcp pada debian

alternatif pengganti cPanel sebagai control panel untuk domain anda :D
Jalanin command berikut :

#apt-get install aptitude

apt-get sama dengan aptitude
BAB 1 : Installation

1. Update your packages list:

# aptitude update

2. Install needed repository key:

# aptitude install debian-backports-keyring

3. Install the new Apache fcgid module version:

# aptitude -t etch-backports install libapache2-mod-fcgid

1.1 – Download & Extract

# aptitude update && aptitude safe-upgrade

# aptitude install tar bzip2 wget lsb-release

# mkdir -p /usr/local/src/ispcp

# cd /usr/local/src/ispcp

Download file ispCP dari SourceForge.net dengan wget, cari mirror nya yang satu kota sama server nya,
Pilih file .zip aja yang agak gampang :D
sebelum unzip File, jalanin command berikut

#aptitude install zip
#aptitude install unzip

bis itu baru unzip file (ganti .X.X sama file downloaded Version)

#unzip ispcp-omega-1.X.X.zip

1. 2 -Mengubah folder ispcp

Ganti .X.X sama file downloaded Version

#cd ispcp-omega-1.X.X

1.3 – Install required packages

# aptitude update
# aptitude safe-upgrade
# aptitude install $(cat ./docs/Debian/debian-packages-`lsb_release -cs`)

ntar tiba-tiba muncul “courier screen” warna biru terus pilih no untuk web directories.
selanjut nya pas “postfix screen” pilih internet site
bis itu masukin nama domain tanpa www
setelah itu “proftpd screen”, pilih standalone

1. 4 – Build the system

# make install

STEP 5 – Copy Folder ke system

# cp -R /tmp/ispcp/* /

STEP 6 – Konfigurasi MySQL server

# mysql_secure_installation

NOTE: JANGAN GUNAKAN @ or $ or % Pada Password!!!

STEP 7 – Setup the system

#cd /var/www/ispcp/engine/setup

# perl ./ispcp-setup

selama proses berjalan, nanti ada beberapa form isian yang harus di sesuaikan dengan kebutuhan server.
Setelah selesai

rm -fR /tmp/ispcp

Read more...