Danau Toba Nan Indah

Posted on Leave a commentPosted in Hobby, Photography, Vacation

Sungguh bahagia rasanya ketika kita melihat pemandangan landscape yang indah di depan mata. Hal ini saya gambarkan ketika kurang lebih 2 tahun saya tidak mengunjunginya, terbalaskan ketika bulan Desember 2012 saya mengunjungi Danau Toba, sebuah danau alam indah yang berada di sebelah selatan kota Medan. Saya tidak pernah bosan untuk pergi ke lokasi wisata ini […]

Error CI 1.6 on XAMPP 1.7

Posted on Leave a commentPosted in PHP, Programming

We can solve it by: System/codeigniter/CodeIgniter.php ChangeĀ  : $objects[$class] =& new $name(); To : $objects[$class] =new $name(); System/database/DB.php Change : $DB =& new $driver($params); To : $DB =new $driver($params); System/libraries/Loader.php Change : $CI->dbutil =& new $class(); To : $CI->dbutil = new $class(); System/libraries/URI.php Change : if ( ! preg_match(“|^[“.preg_quote($this->config->item(‘permitted_uri_chars’)).”]+$|i”, $str)) To : if ( ! […]

Berbelanja Online di Sukamart.com

Posted on 2 CommentsPosted in Article

Kita sering sekali tidak punya waktu untuk berbelanja kebutuhan bulanan dikarenakan kesibukan yang harus kita jalani pada saat hari kerja maupun berkumpul bersama keluarga di week-end. Sebelumnya sih saya mendapatkan kupon promosi untuk berbelanja di Online shopping ini, saya coba melihat lebih detil, ternyata barang yang ditawarkan cukup variatif dan harganya lumayan terjangkau. Kemudian saya […]

Install Siege Load Test

Posted on Leave a commentPosted in PHP, Programming

We can use Siege app to do load test especially to test Magento application. The steps to install Siege on Linux environment are: – Download the application from http://www.joedog.org and download the latest version of Siege. – Copy the tar file to your server, and then extract using command : tar -xvf siege.tar.gz – Go […]

Cannot load from mysql.proc

Posted on Leave a commentPosted in PHP, SQL Server

Today, I’ve problem with my database. When I try to export/backup a database, the following error is shown: [code] Cannot load from mysql.proc. The table is probably corrupted [/code] And that is happened because some error in mysql engine. I try to solve it with upgrade mysql engine. The following steps are: 1. Using command […]

Error Not Found on Magento Admin Page

Posted on 1 CommentPosted in Magento, Programming

When I move the Magento Enterprise to the another server, I found the error on backend page. I update the table : core_store, core_store_group and core_website. [code]SET FOREIGN_KEY_CHECKS=0; UPDATE `core_store` SET store_id = 0 WHERE code=’admin’; UPDATE `core_store_group` SET group_id = 0 WHERE name=’Default’; UPDATE `core_website` SET website_id = 0 WHERE code=’admin’; UPDATE `customer_group` SET […]