Showing articles 41 - 50 (147 total)
Posted on 08/28/2013 at 01:24 pm | Viewed 11,158 times | 0 comments
The settings listed below is what you are going to be adding to your php.ini file. The xdebug.profiler_output_dir setting, you want to make sure that this goes to the right tmp directory on your server and xdebug.default_enable = 0 is shutting off the xdebug locally. [xdebug] xdebug.remote_enable = 0 xdebug.profiler_enable = 0...
Read More | Comments
Posted on 07/09/2013 at 10:03 am | Viewed 11,773 times | 0 comments
I needed to turn off min-height in css. I can't believe it's been this long and I've never had to do it. In case you are wondering: How to turn off min-height in CSS min-height: inherit;
Read More | Comments
Posted on 07/08/2013 at 12:39 pm | Viewed 18,071 times | 0 comments
I've recently taken the plunge and learned about CSS Media Queries and Responsive Web Design. We launched a new ordering site and made the whole website, including the checkout process, mobile-friendly. It's really opened up my eyes to the possibilities of mobile web design. I started out wondering why responsive web design was all the rage,...
Read More | Comments
Posted on 06/18/2013 at 01:01 pm | Viewed 19,597 times | 0 comments
Get PHP File Uploads Working The first trick to having any user contributed content these days is to get PHP File Uploads working (especially with big files). Our configuration we use for our Wamp local development and on our Linux server is below. When managing file uploads to a server, there seems to be a lot of confusion regarding optimized...
Read More | Comments
Posted on 03/21/2013 at 02:36 pm | Viewed 20,679 times | 0 comments
I had a need to close all active jQuery UI dialogs on the page (yes, I have more than 1 open at a time!). You may think it's as easy as calling $('.ui-dialog').dialog('cose') but you'll throw an error. The way I've figured out how to do it (jquery UI 1.10) is pretty simple, really: Close all Active jQuery UI Dialog Windows var $activeDialogs...
Read More | Comments
Posted on 03/18/2013 at 10:00 pm | Viewed 18,516 times | 0 comments
I remember being able to get the index of the current tab very easily from jQuery UI , something like ui.panel.index. I couldn't find it in my code and figured out the way to do it with jQuery UI 1.10 Determining the Current Tab Index Most of the documentation and examples for JQuery UI keep using the same basic code that doesn't really work...
Read More | Comments
Posted on 03/18/2013 at 01:00 pm | Viewed 80,110 times | 0 comments
I continue to find things that I overlooked on my upgrade to using jQuery UI 1.10. This time it was the tabs API changes that got me. No more show(); Now use activate(); The first change that really did me in ("why aren't any of my tabs executing my show callback function???") was the elimination of the show() callback. This callback used to...
Read More | Comments
Posted on 02/25/2013 at 01:33 pm | Viewed 48,775 times | 0 comments
Here is my list of optimizations and changes you can make (and I've had to make) in order to get WAMP (and CakePHP) to run faster on my Windows 8 computer. Speed Up WAMP Web Development on Windows 8 The short list, in order of importance (stop once you are happy with your localhost web server response time and speed): Get the latest version of...
Read More | Comments
Posted on 02/25/2013 at 12:31 pm | Viewed 13,658 times | 0 comments
I'm attempting to better document some of the tools and utitlites I use on a daily basis to make worklife just a little bit easier. Something I find myself doing more and more (especially with my new focus on documentation) is taking screen shots. First, for a primer on capturing your screen and saving it or emailing it to someone, please...
Read More | Comments
Posted on 02/23/2013 at 11:47 am | Viewed 38,595 times | 0 comments
My review of iBackuper: Excellent, Simple and easy to use . You can't go wrong when there are only 3 buttons. I can restore my iTunes Library onto a new Computer using my iPod. Sure thing. My Windows music library computer finally crashed. With its demise, all of my music files were safe. Don't worry I said. All my music is safely backed...
Read More | Comments