Monday, December 29, 2014

List of VirtualMin error when configuring and the its solutions

I'am as a web developer, often use Virtualmin as Control Panel, but sometimes when configuring i got stuck with the following error. After some research i got the solution to fix the error. I wrote here as reminder for future and also for you if stuck with the same error. "Your Postfix configuration...

Thursday, September 18, 2014

Install Vala with GTK+ 3 in Windows

As you may know, vala have binary release for windows maintain by communities. https://code.google.com/p/vala-win32/downloads/list But the binary release are not up to date now, their last release is for vala v0.12.0 on April 2011. But if you really want to develop an Application with this awesome...

Wednesday, August 6, 2014

Free Download ExtJS 4.2.2

If you are an ExtJs Developer, you should know that ExtJs v4.2.2 only available for subscriber-only release. So if you wanna get that but you're not support subscriber then, here's the trick: Download the extjs 4.2.2 full documentation: http://cdn.sencha.com/downloads/docs/extjs-docs-4.2.2.zip then extjs v4.2.2 sources are in: extjs-docs-4.2.2\extjs-build See You.....

Monday, August 4, 2014

Appcelerator/Titanium Error Message "failed to create java virtual machine"

Just now i wanna try to develop test application using Appcelerator/Titanium Framework, after installing then running, i get error message when try to run the IDE with message "failed to create java virtual machine". If you get same error like me, you can fix that with bellow changes: - Open "TitaniumStudio.ini" in Appcelerator/Titanium installation directory. - Make changes as below: Change: launcher.XXMaxPermSize...

Wednesday, July 23, 2014

Multilevel Sub Menu for Twitter Bootstrap Project

As you may know, with twitter bootstrap release version 3.x, there is no support Multilevel Sub Menu anymore in navbar and dropdown. So as an alternative which is better than you tweak twitter bootstrap by your hand, you can use "SmartMenus for JQuery" which can use side by side with twitter bootstrap...

Tuesday, June 10, 2014

Install PHP-FPM 5.4 in Ubuntu 12.04.4 + Nginx

For the startup i'm following https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-12-04 tutorial to installing LEMP (Linux, nginx, MySQL, PHP) in my VPS. The server Run perfectly. But then for my project i used Laravel 4.2 which required PHP 5.4 for minimal requirement. So then i upgrade the PHP by following http://www.dev-metal.com/how-to-install-latest-php-5-4-x-on-ubuntu-12-04-lts-precise-pangolin/: sudo...

Friday, June 6, 2014

Redirect Loop when PhpMyAdmin as SubFolder in Laravel Public Directory

If you use laravel in a hosting then you add PhpMyAdmin as subfolder in Laravel Public Directory, you may get error message as seen in image below: For the solution, you can do one of the following guide: 1. Visit PhpMyAdmin with: http://yourdomain.com/phpmyadmin/index.php or 2. Open .htaccess...

Saturday, May 3, 2014

Run "Linux XAMPP PHP" from Console

If you have installed XAMPP in Linux (Ubuntu), you dont have to install PHP from "Ubuntu Software Center" or "APT" just for executing some script. You can run PHP that already inside XAMPP for Linux to do that. Here's the way to execute it: path/to/php path/to/fileyouwantotrun.php So for xampp on linux this is /opt/lampp/bin/php /opt/lampp/htdocs/yourfile.php ...

Wednesday, April 2, 2014

Moving Outlook 2013 IMAP Data Folder to Other Place

If you want to move your Outlook 2013 IMAP Data Folder to Other Places instead of C:\Users\username\AppData\Local\Microsoft\Outlook then you can follow trick below: 1. Rename C:\Users\username\AppData\Local\Microsoft\Outlook to C:\Users\username\AppData\Local\Microsoft\Outlook-old 2. Create New Folder where you want the IMAP Data Folder to be stored, Ex: D:\Email 3. Open command prompt as Administrator...

Thursday, March 27, 2014

Claim VirtualBox HD Empty Space File Size

If You often Use VirtualBox to do your work, after sometime you will see the Disk (VDI) File Size increasing so Big. Even after you Delete many Files inside Guest OS, it still keep the size larger. You can do following steps to Reduce it: 1. Run Defrag in the Guest (Windows) 2. Nullify free space: With Linux guest run this: sudo dd if=/dev/zero of=/bigemptyfile bs=4096k sudo rm -rf /bigemptyfile With...

Wednesday, March 19, 2014

Best UI Kit For Web Programming

If you are Web Developer and want to have easy layout so you can build your website faster, you can use below UI Kit: Desktop - Twitter Bootstrap built by the Creator of Twitter. - Zurb Foundation built by The Foundation of Zurb Agency. - uikit built by the Creator of YOOtheme - Wordpress and Joomla Theme Maker. - ConciseCss by KEENAN PAYNE Mobile - Jquery Mobile -&nbs...

Monday, February 24, 2014

How to Run Twitter Bootstrap Documentation in Windows

Hi, you can arrived at here must be because you are Twitter Bootstrap Lover just like me. Anyway in Twitter Bootstrap version 3.x.x, it's Documentation Changed from pure HTML Files to Jekyll Site. You Can Run it Easely with following Guides Below : 1. Download Ruby Application Stack From Bitnami. Latest version is Better. Here's the Link : http://bitnami.com/stack/ruby then install it. 2....

Thursday, February 20, 2014

Setup Default website for IP address Visitor in Virtualmin

If you are using Virtualmin as Control Panel for Web Hosting, you may have visitor accessing your IP instead of your Domain. For default, Virtualmin will select first domain which sort alphabetically. But, to make it fix, you can follow step below: 1. Select your prefered domain. 2. Go to Server Configuration > Website Options > Default website for IP address? [Choose Yes] 3. Click Save to Save...

Setup Default Page For Virtualmin New Website

Virtualmin is one of Free Control Panel for Linux, it can host lot of website in one server. So if you create new website, that root webpage will be show empty. To put Default Page or Landing Page for every new website created, you can put whatever you'd like into the skel directory. Usually the location is /etc/skel. So, you'd create: /etc/skel/public_html And drop an index.html into it with whatever...

Visual Studio 2013 – The system cannot find the file specified. (Exception from HRESULT: 0×80070002)

If you have such error after install Visual Studio 2013 then create ASP.NET MVC Project, The system cannot find the file specified. (Exception from HRESULT: 0×80070002) The Solution is Reinstall Nuget from here http://docs.nuget.org/docs/start-here/installing-nuget, it’s work for Me.. Chee...