Rabu, 26 November 2014

Mengubah SmartGit Free Trial Lisensi ke Non-Komersial

Untuk mengubah lisensi

Windows:% APPDATA% \ syntevo \ SmartGit \ <SmartGit-version>
Unix / Linux: ~ / .smartgit / <SmartGit-version>

kemudian hapus file settings.xml.

Kemudian memulai program SmartGit lagi.

Rabu, 22 Oktober 2014

Menonaktifkan/Disable Google SSL Search pada browser

Windows


1. Buka file C:\Windows\System32\Drivers\etc\hosts
2. Tambahkan script berikut
    216.239.32.20 google.com www.google.com
    216.239.32.20 google.co.id www.google.co.id
3. Kemudian coba buka browser ketikan google.com .....jeng jeng, browser tidak akan meredirect ke https://www.google.com tapi ke http://www.google.com


Linux


Letak file hosts -> /etc/hosts



Jumat, 15 Agustus 2014

Remove Index.php codeigniter di address browser

# Windows

1. Buat file baru ".htaccess" di folder root tanpa tanda petik, isi file dengan syntax berikut :

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

2. Buka File "..\application\config\config.php, ubah $config['index_page'] = "";

3. Buka file " ..\xampp\apache\conf\httpd.conf" , jika menggunakan zend "..\zend\Apache2\conf\httpd.conf"
- Aktifkan "LoadModule rewrite_module modules/mod_rewrite.so" dengan menghilangkan tanda # atau tambahkan bila belum ada.
- Pastikan syntax AllowOverride All yang ada di tag <Directory ".. \xampp\htdocs">

<Directory "../xampp/htdocs">
   ...
    AllowOverride All
   ...
</Directory>


# Linux

1. Ikuti langkah pertama dan kedua windows.
2. Aktifkan "mod_rewrite.so"
- buka terminal
- ketik "sudo a2enmod rewrite"
- restart apache, ketik "sudo service apache2 restart"
3. Buka file "..\etc\apache2\sites-available\default". Pastikan syntax AllowOverride All yang ada di tag <Directory ".. \var\www">

<Directory ".. \var\www">
   ...
    AllowOverride All
   ...
</Directory>



Jumat, 18 April 2014

Install Virtualbox 4.3 di Ubuntu Desktop 12.04

sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) 
contrib" >> /etc/apt/sources.list'
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
sudo apt-get update
sudo apt-get install virtualbox-4.3 
ref : 
http://ubuntuhandbook.org/index.php/2013/10/virtualbox-4-3-released-install-or-upgrade-in-ubuntu-linux-mint/ 

Driver Grafik Unknown di Ubuntu Desktop 12.04

Driver grafik unknown,


Langsung aja buka terminal,

ketik, sudo apt-get install mesa-utils




Minggu, 13 April 2014

Mengaktifkan InnoDB Storage MySQL pada XAMPP

1. Edit file my.cnf di folder /instalation_path/xampp/mysql/bin/, instalation_path tempat intalasi xampp

sebelum diedit :

# Comment the following if you are using InnoDB tables
skip-innodb
#innodb_data_home_dir = "D:/xampp/mysql/"
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = "D:/xampp/mysql/"
#innodb_log_arch_dir = "D:/xampp/mysql/"
## You can set .._buffer_pool_size up to 50 - 80 %
## of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
## Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50


setelah diedit
# Comment the following if you are using InnoDB tables
#skip-innodb
innodb_data_home_dir = "D:/xampp/mysql/"
innodb_data_file_path = ibdata1:10M:autoextend
innodb_log_group_home_dir = "D:/xampp/mysql/"
innodb_log_arch_dir = "D:/xampp/mysql/"
## You can set .._buffer_pool_size up to 50 - 80 %
## of RAM but beware of setting memory usage too high
innodb_buffer_pool_size = 16M
innodb_additional_mem_pool_size = 2M
## Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 5M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 50

2. stop kemudian start lg service mysql lewat control panel XAMPP

jeng jeng akhirnya, bisa menggunakan engine tabel innoDB :)