JCow: Instalasi

From OnnoWiki
Revision as of 05:59, 1 April 2012 by Onnowpurbo (talk | contribs)
Jump to navigation Jump to search

Siapkan Apache

Enable mod_rewrite di apache

sudo a2enmod rewrite

Alternatif lain

vi /etc/apache2/sites-enabled/000-default
DocumentRoot /var/www
<Directory />
     Options FollowSymLinks
     AllowOverride all
</Directory>
<Directory /var/www/>
     Options Indexes FollowSymLinks MultiViews
     AllowOverride all
     Order allow,deny
     allow from all
</Directory>

Restart Apache

service apache2 restart

atau

/etc/init.d/apache2 restart


Siapkan Aplikasi Pendukung

Download ioncube dari

http://www.ioncube.com/loaders.php
wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz
wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86_ipf.zip

Download jcow dari

http://www.jcow.net/download/

Instalasi aplikasi pendukung

apt-get install apache2 mysql-server libmysqlclient15-dev libphp-adodb \
libgd2-xpm libgd2-xpm-dev php5-mysql php5-gd php5-curl php-pear \
unzip mysql-doc-5.0

Siapkan Database

Siapkan database

# mysql -u root -p123456
create database jcow;
grant INSERT,SELECT on root.* to jcow@localhost;
grant CREATE, INSERT, SELECT, DELETE, UPDATE on jcow.* to jcow@localhost identified by 'jcow';
grant CREATE, INSERT, SELECT, DELETE, UPDATE on jcow.* to jcow identified by 'jcow';
exit

Instalasi CMS

Copy & Instalasi CMS

mkdir /var/www/
mkdir /var/www/jcow
cp jcow.7.0.ce.zip /var/www/jcow
cd /var/www/jcow
unzip jcow.7.0.ce.zip
rm -Rf /var/www/jcow/upgrade*
chown -Rf www-data.www-data /var/www

Asumsi IP address server adalah 192.168.0.61. Browse ke

http://192.168.0.61/jcow/install.php

atau

http://ip-server/jcow/install.php


Isi melalui browser, misalnya

Database     jcow
DB Host      localhost
DB name      jcow
DB Username  jcow	
DB Password  jcow
Website URL  http://192.168.0.61/jcow
Email	
Choose a Password	

Melalui shell lakukan

rm -Rf /var/www/jcow/install.php 

Install ioncube

mkdir /usr/local/ioncube
cp ioncube_loaders_lin_x86.tar.bz2 /usr/local/
cd /usr/local/
tar jxvf ioncube_loaders_lin_x86.tar.bz2 
cp /usr/local/ioncube/loader-wizard.php /var/www/jcow
chown -Rf www-data.www-data /var/www/jcow
chmod 755 /var/www/jcow/loader-wizard.php

ERROR: Site error: the file /var/www/jcow/includes/libs/ss.inc.php requires the ionCube PHP Loader ioncube_loader_lin_5.3.so to be installed by the website operator. If you are the website operator please use the ionCube Loader Wizard to assist with installation.

Konfigurasi melalui Web ke

http://ip-server/jcow/loader-wizard.php

asumsi ip-server adalah 192.168.0.61, maka sesuai instruksi dari loader-wizard

  • Download
http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.bz2
  • scp ke web server, misalnya,
scp ioncube_loaders_lin_x86.tar.bz2 onno@192.168.0.61:
  • ssh ke web server, misalnya
ssh onno@192.168.0.61
  • Copy ioncube ke /usr/lib/php5/20090626+lfs
cp ioncube_loaders_lin_x86.tar.bz2 /usr/lib/php5/20090626+lfs
cd /usr/lib/php5/20090626+lfs
tar jxvf ioncube_loaders_lin_x86.tar.bz2
chown -Rf root.root /usr/lib/php5/20090626+lfs
cp /usr/lib/php5/20090626+lfs/ioncube/* /usr/lib/php5/20090626+lfs
  • Save file 20ioncube.ini
scp 20ioncube.ini onno@192.168.0.61:
ssh onno@192.168.0.61
cp 20ioncube.ini /etc/php5/apache2/conf.d
  • Pastikan
vi /etc/php5/apache2/conf.d/20ioncube.ini
zend_extension = /usr/lib/php5/20090626+lfs/ioncube_loader_lin_5.3.so
  • Restart Apache2
/etc/init.d/apache2 restart
  • Cek loader menggunakan
http://192.168.0.61/jcow/loader-wizard.php?timeout=0&ini=0&page=loader_check

Pastikan keluar kata-kata

Loader Installed Successfully
The ionCube Loader version 4.0.14 for PHP 5.3 is installed and encoded files should run successfully.

Kita dapat mengakses jcow melalui

http://ip-server/jcow

ERROR: Tampaknya ada MASALAH LISENSI / DUIT kalau di akses akan keluar

The requested URL /jcow/feed was not found on this server.
The requested URL /jcow/member/signup was not found on this server.
dll.

Pranala Menarik