Tuesday, 10 October 2017

Command line instructions Pertama ketika Membuat Repository pada GITHUB/GITLAB

No comments:
Git global setup git config --global user.name "Jhon Doe" git config --global user.email "xxx@gmail.com" Create a new repository git clone git@gitlab.xxx/xxx.git cd xxx-folder touch README.md git add README.md git commit -m "add README" git push -u origin master Existing folder cd existing_folder git init git remote add origin git@gitlab.com:xxx/xxx.git git add . git commit...
Read More

FIX 'Permission Denied (publickey)' on GITLAB/GITHUB

No comments:
This means, on your local machine, you haven't made any SSH keys. Not to worry. Here's how to fix: Open git bash (Use the Windows search. To find it, type "git bash") or the Mac Terminal. Pro Tip: You can use any *nixbased command prompt (but not the default Windows Command Prompt!) Type cd ~/.ssh. This will take you to the root directory for Git (Likely C:\Users\[YOUR-USER-NAME]\.ssh\ on...
Read More

Monday, 29 September 2014

Understanding About Server-Side and Client-Side Programming

No comments:
Background Web development is all about communication. In this case, communication between 2 parties, over the HTTP protocol: The Server - This party is responsible for serving pages. The Client - This party requests pages from the Server, and displays them to the user. On most cases, the client is a web browser. The User - The user uses the Client in order to surf the web, fill...
Read More

Saturday, 28 June 2014

Integrasi PHPexcel dengan Codeigniter

No comments:
Pertama yang anda butuhkan ialah : 1. PHPExcel, Download 2. Codeigniter Langkahnya : 1. Extrak hasil downloadan PHPExcel, lalu ke direktori C:/download/PHPExcel/Classes. 2. Copy semuanya yaitu folder PHPExcel dan phpexcel.php ke folder codeigniter /application/third_party/ (pastekan disni) 3. Lalu membuat liblary pada direktori codeigniter /application/liblaries/, buat file excel.php...
Read More

Memperbaiki Tampilan Debug Array pada XAMPP

No comments:
Pertama download xdebug.dll yang terbaru Download Kemudian copy file tersebut ke direktori C:\xampp\php\ext dan rename manjadi xdebug.dll Lalu buka file php.ini pada direktori C:\xampp\php. Scroll paling bawah, maka akan menemukan ini dan ubahlah codenya (hilang tanda #) seperti dibawah ini: [XDebug] zend_extension = "C:\xampp\php\ext\php_xdebug.dll" xdebug.profiler_append =...
Read More

Saturday, 24 May 2014

Loading a controller from another module in CodeIgniter HMVC Wiredesign

No comments:
It seems that the module can be loaded without specifying the controller name only if the controller name matches the module name : Controllers can be loaded as class variables of other controllers using $this->load->module('module/controller'); or simply $this->load->module('module'); if the controller name matches the module name Try to load the module like that : //if...
Read More