Guides

Setting Up a Custom PHP.INI File on GoDaddy Hosting

I've gotten a number of e-mails in response to a comment I made on a post about installing Wordpress on GoDaddy hosting. Given the response I've gotten, I thought it was a good idea to provide my PHP.INI file that I've set up to other people looking for this. You can download it below. The file is a complete PHP.INI file with all the configuration options you'd find in a full PHP installation. I've changed a few key settings that I found most important, such as max upload size and post...

Make Links Look & Feel Like Buttons

Ever wanted to make your links look like buttons, to give your site a more desktop application-like feel? If you've tried making an HTML form just to navigate the user to a new page, you know how frustrating this can be. Luckily, CSS offers an easy way to do this. First, let's write the HTML code we'll need for this: <html> <head> <title>Button Navigation</title> </head> <body> <div id="menu"> <ul> <li><a href="#">Example...