Optimizing web page loading times

So, you’ve got a web site and wonder how you can improve the load times of your web pages. In recent weeks, we’ve played around with a variety of techniques to optimize web pages for our clients and our own projects.

First, you should run a few analysis on your web page to make sure that the HTML and CSS syntax is correct and that all URLs can be found. Continue reading

PHP debugging

Sometimes there are little errors in your PHP scripts and you need to debug them. If you don’t have access to the global PHP error log, then it’ll be difficult to see what goes wrong and where.

However if you’re able to put a .htaccess file on your web host, then you can add some little commands to that file to enable PHP logging and displaying. This allows you to find out what’s happening in your script. Continue reading