Difference between revisions of "JCow: Instalasi"

From OnnoWiki
Jump to navigation Jump to search
Line 1: Line 1:
'''Instalasi JCow membutuhkan Akses ke Internet secara life'''
+
'''Untuk amannya Instalasi JCow membutuhkan Akses ke Internet secara life'''
  
 +
==Asumsi==
 +
Contoh instalasi yang dilakukan di sini berasumsi bahwa [[IP address]] [[server]] adalah 192.168.0.61.
  
 
==Siapkan Apache==
 
==Siapkan Apache==
Line 114: Line 116:
 
Konfigurasi melalui Web ke
 
Konfigurasi melalui Web ke
  
 +
http://192.168.0.61/jcow/loader-wizard.php
 +
atau
 
  http://ip-server/jcow/loader-wizard.php
 
  http://ip-server/jcow/loader-wizard.php
  
Line 125: Line 129:
 
  ssh onno@192.168.0.61
 
  ssh onno@192.168.0.61
 
* Copy ioncube ke /usr/lib/php5/20090626+lfs
 
* Copy ioncube ke /usr/lib/php5/20090626+lfs
 +
 
  cp ioncube_loaders_lin_x86.tar.bz2 /usr/lib/php5/20090626+lfs
 
  cp ioncube_loaders_lin_x86.tar.bz2 /usr/lib/php5/20090626+lfs
 
  cd /usr/lib/php5/20090626+lfs
 
  cd /usr/lib/php5/20090626+lfs
Line 130: Line 135:
 
  chown -Rf root.root /usr/lib/php5/20090626+lfs
 
  chown -Rf root.root /usr/lib/php5/20090626+lfs
 
  cp /usr/lib/php5/20090626+lfs/ioncube/* /usr/lib/php5/20090626+lfs
 
  cp /usr/lib/php5/20090626+lfs/ioncube/* /usr/lib/php5/20090626+lfs
 +
 
* Save file 20ioncube.ini
 
* Save file 20ioncube.ini
 +
 
  scp 20ioncube.ini onno@192.168.0.61:
 
  scp 20ioncube.ini onno@192.168.0.61:
 
  ssh onno@192.168.0.61
 
  ssh onno@192.168.0.61
 
  cp 20ioncube.ini /etc/php5/apache2/conf.d
 
  cp 20ioncube.ini /etc/php5/apache2/conf.d
 +
 
* Pastikan
 
* Pastikan
 
  vi /etc/php5/apache2/conf.d/20ioncube.ini
 
  vi /etc/php5/apache2/conf.d/20ioncube.ini
Line 150: Line 158:
 
Kita dapat mengakses jcow melalui
 
Kita dapat mengakses jcow melalui
  
 +
http://192.168.0.61/jcow
 +
atau
 
  http://ip-server/jcow
 
  http://ip-server/jcow
  
Line 159: Line 169:
  
 
'''Solusi:'''
 
'''Solusi:'''
 
+
Instalasi ionCube seperti di jelasnkan di atas
  
  
Line 167: Line 177:
 
  The requested URL /jcow/member/signup was not found on this server.
 
  The requested URL /jcow/member/signup was not found on this server.
 
  dll.
 
  dll.
 +
  
 
==Pranala Menarik==
 
==Pranala Menarik==

Revision as of 07:37, 1 April 2012

Untuk amannya Instalasi JCow membutuhkan Akses ke Internet secara life

Asumsi

Contoh instalasi yang dilakukan di sini berasumsi bahwa IP address server adalah 192.168.0.61.

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


Jcow-install-1.jpeg

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	

Selanjutnya selesai sudah

Jcow-install-2.jpeg

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


Konfigurasi melalui Web ke

http://192.168.0.61/jcow/loader-wizard.php

atau

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://192.168.0.61/jcow

atau

http://ip-server/jcow



ERROR: ioncube belum terinstalasi 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.

Solusi: Instalasi ionCube seperti di jelasnkan di atas


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