Laravel 4 is capable of running on a shared hosting environment. It’s a lot easier than you probably think. Login to your host and go to your home directory. This does not mean your public home directory, they are separate. ...
Blue Screen Of Death (BSOD) an inevitable part of using a windows machine. Today I received a BSOD with an error CRITICAL_STRUCTURE_CORRUPTION while working on my Android homework. The error wasn’t very descriptive and I wasn’t hopeful to find a ...
The following is the .gitignore file for my Android development in Android Studio. This is what worked for me, but if anyone has additional input that’s welcome too.
For some reason my server started displaying code instead of actually processing or rendering the code. After playing around with the server I noticed the php5 module was missing from Apache. If your code is displaying and not rendering you ...
I had a problem where I want to push my branch and overwrite what was the on the server. I kept receiving an error telling me to merge. I did not want to merge and found a way to force ...
If you find that your mod rewrite is enabled, but doesn’t seem to be working you may need to add this little bit of code to your httpd.conf file. AllowOverride All It’s possible your file might have the following: AllowOverride ...
After upgrading my xampp installation I had issues sending email. I wrote a small test PHP page and it was saying my emails were being sent, but I never received them. Obviously something was misconfigured. I thought I correctly edited ...
I wrote some code to dynamically generate an email message based on the names of form elements being sent through post. In this post I’ll describe how it’s done. The foreach loop grabs the keys from the post array. An ...
For me it’s difficult to retain and grasp the programming concept, especially if it’s new, if I don’t understand the why behind the concept. I didn’t understand how to properly use AJAX in WordPress. I started searching google and found ...
In this guide I’ll show you how to use one JavaScript function to slide any HTML element up and down with JQuery by simply sending the JavaScript function the id of an element.