Tuesday, May 8, 2012

PyroCMS Error : Your system folder path does not appear to be set correctly

0 comments
Your system folder path does not appear to be set correctly. Please open the following file and correct this: index.php
Biasanya error ini terjadi setelah instalasi PyroCMS, saat hendak membuka control panel. Buka file index.php

// index.php
/*
|---------------------------------------------------------------
| SYSTEM FOLDER NAME
|---------------------------------------------------------------
|
| This variable must contain the name of your "system" folder.
| Include the path if the folder is not in the same  directory
| as this file.
|
| NO TRAILING SLASH!
|
*/
// $system_path = 'system/codeigniter';  #Ubah line ini menjadi seperti line dibawah
 $system_path = './system/codeigniter';

Tuesday, May 1, 2012

How to : GIT

0 comments
  1. Menambahkan remote branch
  2.  
    # Apabila menggunakan https
    git remote add origin https://daholicofneki@github.com/purwandi/project.git 
    
    # Apabila menggunakan ssh
    git remote add origin git@github.com:daholicofneki/project.git
    
    
  3. Menghapus remote branch yang tidak diperlukan
  4.  
    git remote rm origin
    
    
    Sintak ini akan menghapus remote dari local git repository dan memperbolehkan user untuk membuat nama remote yang baru lagi
GIT rtfm > http://help.github.com/win-set-up-git/