Post by superbrands » Sun May 30, 2010 7:54 pm

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.

"For us, OpenCart is not 'just' a shopping cart. OpenCart is bigger than that. We bring OpenCart to the next level."

Produk:
- Toko Online - Toko Online Dropshipper - Toko Online Marketpace - Online Directory - Digital Marketplace - Property & Business Listings - News Portal - Corporate Website - Social Network

Info: http://www.bukausahaonline.com


User avatar
Active Member

Posts

Joined
Sun May 23, 2010 8:04 pm

Post by willi4m » Mon May 31, 2010 3:55 pm

Mantap banget modulenya,
makasih banyak bro....

Newbie

Posts

Joined
Mon May 31, 2010 3:53 pm

Post by parksides » Mon May 31, 2010 7:50 pm

mantab nih gan, trims bnyk gan, YM: park_sides@yahoo.co.id O0

Newbie

Posts

Joined
Sun May 16, 2010 3:24 pm

Post by goliwet » Sat Jun 05, 2010 6:32 am

sudah di TKP, masih nunggu invitation latter di cipikacipiki

Need for Promotion & Gift Products, visit http://svastika.web.id
Need for Some Ideas for Research in Indonesia,
Bhs Indonesia - visit http://andi.stk31.com
English - visit http://srabi.com


Newbie

Posts

Joined
Fri Jun 04, 2010 7:15 am
Location - Jakarta

Post by superbrands » Fri Jun 11, 2010 3:13 pm

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.

"For us, OpenCart is not 'just' a shopping cart. OpenCart is bigger than that. We bring OpenCart to the next level."

Produk:
- Toko Online - Toko Online Dropshipper - Toko Online Marketpace - Online Directory - Digital Marketplace - Property & Business Listings - News Portal - Corporate Website - Social Network

Info: http://www.bukausahaonline.com


User avatar
Active Member

Posts

Joined
Sun May 23, 2010 8:04 pm

Post by feed » Fri Jun 11, 2010 3:41 pm

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

Please try my Free and real time web translator made with Google API. and let me know what ya think :)


User avatar
New member

Posts

Joined
Fri Jun 11, 2010 5:21 am

Post by mulunix » Thu Jun 24, 2010 7:06 pm

cara update mudul kekmana bro ?

Image


User avatar
Active Member

Posts

Joined
Mon Jun 21, 2010 4:56 am

Post by qahar » Tue Jun 29, 2010 10:37 pm

owh.. ternyata group opencart indo di cipika-cipiki ya? hmm.. lgsung daftar he3..

User avatar
Expert Member

Posts

Joined
Tue Jun 29, 2010 10:24 pm
Location - Indonesia

Post by one_bogor » Sat Aug 14, 2010 1:33 am

om superbrands, undang ane dong di groups opencart cipkacipiki...
id ane : one_bogor

thank's b4

Newbie

Posts

Joined
Sat Aug 14, 2010 1:11 am

Post by one_bogor » Fri Sep 17, 2010 12:15 am

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???

Newbie

Posts

Joined
Sat Aug 14, 2010 1:11 am

Post by superbrands » Mon Sep 20, 2010 6:01 pm

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.. ;)

"For us, OpenCart is not 'just' a shopping cart. OpenCart is bigger than that. We bring OpenCart to the next level."

Produk:
- Toko Online - Toko Online Dropshipper - Toko Online Marketpace - Online Directory - Digital Marketplace - Property & Business Listings - News Portal - Corporate Website - Social Network

Info: http://www.bukausahaonline.com


User avatar
Active Member

Posts

Joined
Sun May 23, 2010 8:04 pm

Post by leonides » Wed Oct 06, 2010 11:32 pm

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

Newbie

Posts

Joined
Thu Aug 19, 2010 9:24 pm

Post by prahastu » Thu Oct 07, 2010 4:15 am

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

Newbie

Posts

Joined
Thu Oct 07, 2010 4:11 am

Post by tedybear » Thu Nov 11, 2010 7:25 am

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 ??? ??? ???

Newbie

Posts

Joined
Thu Nov 11, 2010 7:18 am

Post by diwa » Mon Nov 15, 2010 10:57 am

wah gak salah nih dah pake jasanya bro superbrand O0
wmang masternya di opencart

Berbagi itu indah...
http://tuban.des.net.id
http://antarlangit.com


Newbie

Posts

Joined
Thu Oct 07, 2010 2:20 pm
Location - Tuban

Post by javasichiro » Wed Dec 01, 2010 8:59 am

salam kenal sam aku baru mau coba ne....dibantu ya O0

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

http://KePlesetanKaos.com
aneka Kaos Plesetan anak &dewasa
----------terima reseller---------------


New member

Posts

Joined
Tue Nov 30, 2010 10:48 am
Location - Solo

Post by javasichiro » Wed Dec 01, 2010 9:14 am

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

http://KePlesetanKaos.com
aneka Kaos Plesetan anak &dewasa
----------terima reseller---------------


New member

Posts

Joined
Tue Nov 30, 2010 10:48 am
Location - Solo

Post by arekkreatif » Thu Dec 09, 2010 4:18 pm

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

Newbie

Posts

Joined
Thu Oct 28, 2010 10:27 pm

Post by byens » Tue Dec 21, 2010 12:49 pm

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

Selling Kristik - Jasa Foto Aura - Kapas Vapor - supplier baju anak -


Active Member

Posts

Joined
Sat Dec 11, 2010 12:29 pm
Location - Surabaya

Post by togu25 » Wed Dec 22, 2010 6:20 pm

Mantab bos!! Kalau untuk OC versi 1.4.9.3 bisa ga ya?

Newbie

Posts

Joined
Wed Dec 22, 2010 6:12 pm
Who is online

Users browsing this forum: No registered users and 10 guests