Difference between revisions of "Cumulusclips: Instalasi"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (→Akses) |
Onnowpurbo (talk | contribs) |
||
(17 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
+ | ==Instalasi Aplikasi Pendukung== | ||
− | + | * Instalasi Web Server Apache, MySQL, PHP | |
− | + | apt-get -y install vsftpd ffmpeg x264 libx264-dev libajaxtags-java \ | |
− | + | libcgi-application-plugin-ajaxupload-perl php-xajax libcgi-application-plugin-ajaxupload-perl | |
− | |||
− | |||
− | |||
+ | ==Edit vsftpd.conf== | ||
+ | |||
+ | edit | ||
+ | |||
+ | vi /etc/vsftpd.conf | ||
+ | |||
+ | tambahkan | ||
+ | |||
+ | seccomp_sandbox=NO | ||
+ | |||
+ | |||
+ | Restart | ||
+ | |||
+ | /etc/init.d/vsftpd restart | ||
+ | |||
+ | |||
+ | ==Add user cumulusclips== | ||
+ | |||
+ | Buat user untuk ftp | ||
+ | |||
+ | adduser cumulusclips | ||
+ | |||
+ | Enter new UNIX password: | ||
+ | Retype new UNIX password: | ||
+ | passwd: password updated successfully | ||
+ | Is the information correct? [Y/n] | ||
+ | |||
+ | |||
+ | |||
+ | ==Edit Apache== | ||
+ | |||
+ | vi /etc/apache2/sites-enabled/000-default | ||
+ | |||
+ | Pastikan | ||
+ | |||
+ | <Directory /var/www/> | ||
+ | Options Indexes FollowSymLinks MultiViews | ||
+ | AllowOverride All | ||
+ | Order allow,deny | ||
+ | allow from all | ||
+ | </Directory> | ||
+ | |||
+ | ==Edit php.ini== | ||
+ | |||
+ | vi /etc/php5/apache2/php.ini | ||
+ | |||
+ | Pastikan | ||
+ | |||
+ | short_open_tags = on | ||
+ | upload_max_filesize = 110M | ||
+ | post_max_size = 110M | ||
+ | max_execution_time = 1500 | ||
+ | open_basedir = no value | ||
+ | safe_mode = Off | ||
+ | register _globals = Off | ||
==Download== | ==Download== | ||
Line 25: | Line 78: | ||
tar zxvf cumulusclips.tar.gz | tar zxvf cumulusclips.tar.gz | ||
chmod -Rf 777 /var/www/cumulusclips | chmod -Rf 777 /var/www/cumulusclips | ||
− | chown -Rf | + | chown -Rf www-data.www-data /var/www/cumulusclips |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | ==Buat Database== | |
− | |||
− | |||
− | |||
− | |||
− | |||
+ | Asumsi password root MySQL adalah 123456, lakukan | ||
mysql -u root -p123456 | mysql -u root -p123456 | ||
Line 58: | Line 94: | ||
==Akses== | ==Akses== | ||
+ | http://localhost/cumulusclips/ | ||
+ | |||
+ | |||
+ | ==Capture Screen Saat Instalasi== | ||
+ | |||
+ | |||
+ | [[Image:Cscript1.png|center|200px|thumb]] | ||
+ | |||
+ | [[Image:Cscript2.png|center|200px|thumb]] | ||
+ | |||
+ | [[Image:Cscript3.png|center|200px|thumb]] | ||
+ | |||
+ | [[Image:Cscript4.png|center|200px|thumb]] | ||
− | + | [[Image:Cscript5.png|center|200px|thumb]] | |
+ | |||
+ | [[Image:Cscript6.png|center|200px|thumb]] | ||
+ | |||
+ | [[Image:Cscript7.png|center|200px|thumb]] | ||
+ | |||
+ | [[Image:Cscript8.png|center|200px|thumb]] | ||
==Referensi== | ==Referensi== | ||
* http://cumulusclips.org/docs/how-to-install-cumulusclips/ | * http://cumulusclips.org/docs/how-to-install-cumulusclips/ | ||
+ | * http://cumulusclips.org/forums/index.php?p=/discussion/349/how-to-running-cumulusclips-locally-on-ubuntu-/p1 | ||
+ | * http://ubuntuforums.org/showthread.php?t=1506129 |
Latest revision as of 07:19, 13 May 2014
Sumber: http://cumulusclips.org/docs/how-to-install-cumulusclips/
Instalasi Aplikasi Pendukung
- Instalasi Web Server Apache, MySQL, PHP
apt-get -y install vsftpd ffmpeg x264 libx264-dev libajaxtags-java \ libcgi-application-plugin-ajaxupload-perl php-xajax libcgi-application-plugin-ajaxupload-perl
Edit vsftpd.conf
edit
vi /etc/vsftpd.conf
tambahkan
seccomp_sandbox=NO
Restart
/etc/init.d/vsftpd restart
Add user cumulusclips
Buat user untuk ftp
adduser cumulusclips
Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully Is the information correct? [Y/n]
Edit Apache
vi /etc/apache2/sites-enabled/000-default
Pastikan
<Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory>
Edit php.ini
vi /etc/php5/apache2/php.ini
Pastikan
short_open_tags = on upload_max_filesize = 110M post_max_size = 110M max_execution_time = 1500 open_basedir = no value safe_mode = Off register _globals = Off
Download
wget http://cumulusclips.org/cumulusclips.tar.gz
Ekstrak
cp cumulusclips.tar.gz /var/www/ cd /var/www/ tar zxvf cumulusclips.tar.gz chmod -Rf 777 /var/www/cumulusclips chown -Rf www-data.www-data /var/www/cumulusclips
Buat Database
Asumsi password root MySQL adalah 123456, lakukan
mysql -u root -p123456
CREATE DATABASE cscript; GRANT ALL PRIVILEGES ON cscript.* TO "cscript"@"localhost" IDENTIFIED BY "cscript"; FLUSH PRIVILEGES; EXIT
Akses
http://localhost/cumulusclips/