Vagrant syntax for adding existing local box

Syntax provided below can be used on windows to add existing local vagrant boxes. [sourcecode language=”bash”] vagrant box add custom32 file:///f://Vagrant//precise32.box [/sourcecode] In the above command custom32 is the name for the vagrant box and “file:///f://Vagrant//precise32.box” is the locally available box. This box was downloaded from internet and placed locally on f drives Vagrant folder. … Continue reading “Vagrant syntax for adding existing local box”

[Solved] How to deploy php app to heroku from windows

I am fulltime linux user and parttime windows user. Lately I have started working with windows for some project stuffs. I found windows quite frustating and limited to what linux provided me. Well it’s all personal feelings. I always hated unnecessary installations of extra applications for the same tools which most of the linux distributions … Continue reading “[Solved] How to deploy php app to heroku from windows”

[Solved] Codeigniter session expires frequently

I was working in a Codeigniter project and when I hit refresh button (F5) continuously, My application session was expiring frequently. I googled for a while and found the simple solution. A solution is to increase the amount of time for the session_time_to_update in codeigniter config. Since I won’t be updating session frequently. I am … Continue reading “[Solved] Codeigniter session expires frequently”

[Solved] Netbeans- Long running project scan

I use Netbeans for my daily web development. Sometimes I have very huge projects working with SVN, Git Version Controls. And sometimes I use the symlinks in my document root and other project folders. So, you might be wondering why I am mentioning all these things here, So lets get to the point. Cause for … Continue reading “[Solved] Netbeans- Long running project scan”