Page 1 of 2

Metode Pengiriman untuk Opencart. GRATIS!

Posted: Sun May 30, 2010 7:54 pm
by superbrands
Buat temen-temen yang membutuhkan metode pengiriman untuk Opencart, temen-temen bisa download script yang saya buat. Gratis!

Saat ini tersedia 3 script yang berkaitan dengan pengiriman , yaitu:
1. Metode Pengiriman TIKI JNE Tarif Reguler untuk Opencart v.1.4.7
2. Metode Pengiriman PT Pos Indonesia (PAKET KILAT KHUSUS) untuk Opencart v.1.4.7
3. Menu Dropdown Nama Kota di Alamat Penerima Barang (Shipping Address) untuk Opencart v.1.4.7

Semuanya bisa didownload secara gratis.

Cara download bisa temen-temen lihat di blog saya http://superbrands.freevar.com.

Semoga bermanfaat. Terimakasih.

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Mon May 31, 2010 3:55 pm
by willi4m
Mantap banget modulenya,
makasih banyak bro....

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Mon May 31, 2010 7:50 pm
by parksides
mantab nih gan, trims bnyk gan, YM: park_sides@yahoo.co.id O0

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Sat Jun 05, 2010 6:32 am
by goliwet
sudah di TKP, masih nunggu invitation latter di cipikacipiki

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Fri Jun 11, 2010 3:13 pm
by superbrands
Menu Dropdown Nama Kota (City) di Alamat Penerima Barang (Shipping Address) untuk Opencart v.1.4.7 bisa digunakan untuk Opencart v.1.4.8, namun harus mengubah beberapa scriptnya.

Berikut cara instalasi Menu Dropdown untuk Opencart v.1.4.8:

1. Instal file-file berikut di Opencart v.1.4.8 anda:
- admin/controller/localisation/city.php
- admin/model/localisation/city.php
- admin/language/english/localisation/city.php
- admin/view/template/localisation/city_form.tpl
- admin/view/template/localisation/city_list.tpl

2. Di Opencart v.1.4.8 anda, temukan dan edit file-file berikut:

a. admin/controller/localisation/city.php

pada baris: 48, 80, 114,

Code: Select all

$this->redirect(HTTPS_SERVER . 'index.php?route=localisation/city' . $url);
ubah menjadi:

Code: Select all

$this->redirect(HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url);
pada baris: 156

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home',
udah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home&token=' . $this->session->data['token'],
pada baris: 162

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city' . $url,
ubah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url,
pada baris: 167

Code: Select all

$this->data['insert'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert' . $url;
ubah menjadi:

Code: Select all

$this->data['insert'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert&token=' . $this->session->data['token'] . $url;
pada baris: 168

Code: Select all

$this->data['delete'] = HTTPS_SERVER . 'index.php?route=localisation/city/delete' . $url;
ubah menjadi:

Code: Select all

$this->data['delete'] = HTTPS_SERVER . 'index.php?route=localisation/city/delete&token=' . $this->session->data['token'] . $url;
pada baris: 188

Code: Select all

'href' => HTTPS_SERVER . 'index.php?route=localisation/city/update&city_id=' . $result['city_id'] . $url
ubah menjadi:

Code: Select all

'href' => HTTPS_SERVER . 'index.php?route=localisation/city/update&token=' . $this->session->data['token'] . '&city_id=' . $result['city_id'] . $url
pada baris: 239

Code: Select all

$this->data['sort_city'] = HTTPS_SERVER . 'index.php?route=localisation/city&sort=z.name' . $url;
ubah menjadi:

Code: Select all

$this->data['sort_city'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . '&sort=z.name' . $url;
pada baris: 240

Code: Select all

$this->data['sort_name'] = HTTPS_SERVER . 'index.php?route=localisation/city&sort=ct.name' . $url;
ubah menjadi:

Code: Select all

$this->data['sort_name'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . '&sort=ct.name' . $url;
pada baris: 241

Code: Select all

$this->data['sort_code'] = HTTPS_SERVER . 'index.php?route=localisation/city&sort=ct.code' . $url;
ubah menjadi:

Code: Select all

$this->data['sort_code'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . '&sort=ct.code' . $url;
pada baris: 258

Code: Select all

$pagination->url = HTTPS_SERVER . 'index.php?route=localisation/city' . $url . '&page={page}';
ubah menjadi:

Code: Select all

$pagination->url = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url . '&page={page}';
pada baris: 319

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home',
ubah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home&token=' . $this->session->data['token'],
pada baris: 325

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city' . $url,
ubah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url,
pada baris: 331

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert' . $url;
ubah menjadi:

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert&token=' . $this->session->data['token'] . $url;
pada baris: 333

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/update&city_id=' . $this->request->get['city_id'] . $url;
ubah menjadi:

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/update&token=' . $this->session->data['token'] . '&city_id=' . $this->request->get['city_id'] . $url;
pada baris: 336

Code: Select all

$this->data['cancel'] = HTTPS_SERVER . 'index.php?route=localisation/city' . $url;
ubah menjadi:

Code: Select all

$this->data['cancel'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url;
b. admin/view/template/common/header.tpl

setelah script (baris ke-105):

Code: Select all

<li><a href="<?php echo $geo_zone; ?>"><?php echo $text_geo_zone; ?></a></li>
sisipkan script berikut:

Code: Select all

<li><a href="<?php echo $city; ?>"><?php echo $text_city; ?></a></li>
c. admin/controller/common/header.php

setelah script (baris ke-67):

Code: Select all

$this->data['text_confirm'] = $this->language->get('text_confirm');
sisipkan script berikut:

Code: Select all

$this->data['text_city'] = $this->language->get('text_city');
setelah script (baris ke-128):

Code: Select all

$this->data['zone'] = HTTPS_SERVER . 'index.php?route=localisation/zone&token=' . $this->session->data['token'];
sisipkan script berikut:

Code: Select all

$this->data['city'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'];
d. admin/language/english/common/header.php

setelah script (baris ke-55):

Code: Select all

$_['text_zone']              = 'Zones';
sisipkan script berikut:

Code: Select all

$_['text_city']              = 'Cities';
3. Setelah itu instal file-file yang ada di catalog.

4. Tahap instalasi selanjutnya sama seperti yang ada di instalasi.doc.

5. Lakukan pengetesan. Apabila ditemukan bug atau error, mohon dilaporkan ke saya.

Semoga bermanfaat. Thanks.

Untuk metode pengiriman TIKI JNE dan PT Pos Indonesia menyusul.

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Fri Jun 11, 2010 3:41 pm
by feed
superbrands wrote:Menu Dropdown Nama Kota (City) di Alamat Penerima Barang (Shipping Address) untuk Opencart v.1.4.7 bisa digunakan untuk Opencart v.1.4.8, namun harus mengubah beberapa scriptnya.

Berikut cara instalasi Menu Dropdown untuk Opencart v.1.4.8:

1. Instal file-file berikut di Opencart v.1.4.8 anda:
- admin/controller/localisation/city.php
- admin/model/localisation/city.php
- admin/language/english/localisation/city.php
- admin/view/template/localisation/city_form.tpl
- admin/view/template/localisation/city_list.tpl

2. Di Opencart v.1.4.8 anda, temukan dan edit file-file berikut:

a. admin/controller/localisation/city.php

pada baris: 48, 80, 114,

Code: Select all

$this->redirect(HTTPS_SERVER . 'index.php?route=localisation/city' . $url);
ubah menjadi:

Code: Select all

$this->redirect(HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url);
pada baris: 156

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home',
udah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home&token=' . $this->session->data['token'],
pada baris: 162

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city' . $url,
ubah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url,
pada baris: 167

Code: Select all

$this->data['insert'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert' . $url;
ubah menjadi:

Code: Select all

$this->data['insert'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert&token=' . $this->session->data['token'] . $url;
pada baris: 168

Code: Select all

$this->data['delete'] = HTTPS_SERVER . 'index.php?route=localisation/city/delete' . $url;
ubah menjadi:

Code: Select all

$this->data['delete'] = HTTPS_SERVER . 'index.php?route=localisation/city/delete&token=' . $this->session->data['token'] . $url;
pada baris: 188

Code: Select all

'href' => HTTPS_SERVER . 'index.php?route=localisation/city/update&city_id=' . $result['city_id'] . $url
ubah menjadi:

Code: Select all

'href' => HTTPS_SERVER . 'index.php?route=localisation/city/update&token=' . $this->session->data['token'] . '&city_id=' . $result['city_id'] . $url
pada baris: 239

Code: Select all

$this->data['sort_city'] = HTTPS_SERVER . 'index.php?route=localisation/city&sort=z.name' . $url;
ubah menjadi:

Code: Select all

$this->data['sort_city'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . '&sort=z.name' . $url;
pada baris: 240

Code: Select all

$this->data['sort_name'] = HTTPS_SERVER . 'index.php?route=localisation/city&sort=ct.name' . $url;
ubah menjadi:

Code: Select all

$this->data['sort_name'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . '&sort=ct.name' . $url;
pada baris: 241

Code: Select all

$this->data['sort_code'] = HTTPS_SERVER . 'index.php?route=localisation/city&sort=ct.code' . $url;
ubah menjadi:

Code: Select all

$this->data['sort_code'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . '&sort=ct.code' . $url;
pada baris: 258

Code: Select all

$pagination->url = HTTPS_SERVER . 'index.php?route=localisation/city' . $url . '&page={page}';
ubah menjadi:

Code: Select all

$pagination->url = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url . '&page={page}';
pada baris: 319

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home',
ubah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=common/home&token=' . $this->session->data['token'],
pada baris: 325

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city' . $url,
ubah menjadi:

Code: Select all

'href'      => HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url,
pada baris: 331

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert' . $url;
ubah menjadi:

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/insert&token=' . $this->session->data['token'] . $url;
pada baris: 333

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/update&city_id=' . $this->request->get['city_id'] . $url;
ubah menjadi:

Code: Select all

$this->data['action'] = HTTPS_SERVER . 'index.php?route=localisation/city/update&token=' . $this->session->data['token'] . '&city_id=' . $this->request->get['city_id'] . $url;
pada baris: 336

Code: Select all

$this->data['cancel'] = HTTPS_SERVER . 'index.php?route=localisation/city' . $url;
ubah menjadi:

Code: Select all

$this->data['cancel'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'] . $url;
b. admin/view/template/common/header.tpl

setelah script (baris ke-105):

Code: Select all

<li><a href="<?php echo $geo_zone; ?>"><?php echo $text_geo_zone; ?></a></li>
sisipkan script berikut:

Code: Select all

<li><a href="<?php echo $city; ?>"><?php echo $text_city; ?></a></li>
c. admin/controller/common/header.php

setelah script (baris ke-67):

Code: Select all

$this->data['text_confirm'] = $this->language->get('text_confirm');
sisipkan script berikut:

Code: Select all

$this->data['text_city'] = $this->language->get('text_city');
setelah script (baris ke-128):

Code: Select all

$this->data['zone'] = HTTPS_SERVER . 'index.php?route=localisation/zone&token=' . $this->session->data['token'];
sisipkan script berikut:

Code: Select all

$this->data['city'] = HTTPS_SERVER . 'index.php?route=localisation/city&token=' . $this->session->data['token'];
d. admin/language/english/common/header.php

setelah script (baris ke-55):

Code: Select all

$_['text_zone']              = 'Zones';
sisipkan script berikut:

Code: Select all

$_['text_city']              = 'Cities';
3. Setelah itu instal file-file yang ada di catalog.

4. Tahap instalasi selanjutnya sama seperti yang ada di instalasi.doc.

5. Lakukan pengetesan. Apabila ditemukan bug atau error, mohon dilaporkan ke saya.

Semoga bermanfaat. Thanks.

Untuk metode pengiriman TIKI JNE dan PT Pos Indonesia menyusul.
Kenapa nggak langsung di update aja modul bos...
;D manja ;D

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Thu Jun 24, 2010 7:06 pm
by mulunix
cara update mudul kekmana bro ?

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Tue Jun 29, 2010 10:37 pm
by qahar
owh.. ternyata group opencart indo di cipika-cipiki ya? hmm.. lgsung daftar he3..

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Sat Aug 14, 2010 1:33 am
by one_bogor
om superbrands, undang ane dong di groups opencart cipkacipiki...
id ane : one_bogor

thank's b4

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Fri Sep 17, 2010 12:15 am
by one_bogor
di tahap 7. di admin/index.php?route=localisation/city ketika saya ke webnya koq error ya...

Code: Select all

Error: Table 'XXXXXXXXXXXXXX.city' doesn't exist
Error No: 1146
SELECT COUNT(*) AS total FROM city
kira2 kenapa ya mastah???

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Mon Sep 20, 2010 6:01 pm
by superbrands
one_bogor wrote:di tahap 7. di admin/index.php?route=localisation/city ketika saya ke webnya koq error ya...

Code: Select all

Error: Table 'XXXXXXXXXXXXXX.city' doesn't exist
Error No: 1146
SELECT COUNT(*) AS total FROM city
kira2 kenapa ya mastah???
Tebakan saya table city di database XXXXXXXXXXXXXX nggak ada. Hayoo dicek lagi... he..he.. ;)

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Wed Oct 06, 2010 11:32 pm
by leonides
bro superbrands,

untuk dropdownnya saya udah coba, di halaman depan sih ngga masalah.
tapi begitu saya ke admin, menu sales - customer (ceritanya udah ada customer yang register di halaman depan), edit customer tersebut, dan pilih address, maka di field city muncul error:

<b>Notice</b>: Undefined index: city in <b>D:\xampp\htdocs\opencart\admin\view\template\sale\customer_form.tpl</b> on line <b>135</b>

gimana cara benerinnya ya bro? thanks before

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Thu Oct 07, 2010 4:15 am
by prahastu
one_bogor wrote:di tahap 7. di admin/index.php?route=localisation/city ketika saya ke webnya koq error ya...

Code: Select all

Error: Table 'XXXXXXXXXXXXXX.city' doesn't exist
Error No: 1146
SELECT COUNT(*) AS total FROM city
kira2 kenapa ya mastah???

nama tabelnya jangan city doang gan,, tapi tabel_prerfix.city,,



ohya,, untuk yang memakai bahasa Indo lebih susah lagi nih,, nggak bisa langsung maen timpa file :D

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Thu Nov 11, 2010 7:25 am
by tedybear
Bro Superbrand....salam kenal dari aku,
aku sudah sign up di cipika cipiki, tapi belum dapat
undangan buat dapetin link download program shipping-nya,
HELP ME PLEASE ??? ??? ???

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Mon Nov 15, 2010 10:57 am
by diwa
wah gak salah nih dah pake jasanya bro superbrand O0
wmang masternya di opencart

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Wed Dec 01, 2010 8:59 am
by javasichiro
salam kenal sam aku baru mau coba ne....dibantu ya O0

sudah di TKP, masih nunggu invitation latter di cipikacipiki ???

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Wed Dec 01, 2010 9:14 am
by javasichiro
sudah di TKP, masih nunggu invitation latter di cipikacipiki ???

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Thu Dec 09, 2010 4:18 pm
by arekkreatif
sudah di TKP ne agan superbrands,,tolong di invite donk boz...ane juga sudah follower,,ne..tapi link downloadnya kok ga ada ya,,,please help me..gan.. username ane : arekkreatif.

Matur nuwun,,,:D

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Tue Dec 21, 2010 12:49 pm
by byens
Notice: Undefined index: city in public_html/admin/model/sale/customer.php on line 69

setelah sy buka di line 69 isinya:

'city' => $result['city'],

ada yang tau hrs ditambah apa atau gimana? thanks

Re: Metode Pengiriman untuk Opencart. GRATIS!

Posted: Wed Dec 22, 2010 6:20 pm
by togu25
Mantab bos!! Kalau untuk OC versi 1.4.9.3 bisa ga ya?