Some pages on my site take a while to load. I was wondering if there were any free tools that could help me speed up/improve the code. I’ve googled a bit but I wanna her from the experts.
EDIT: I’m using PHP, MySQL, jQuery, etc.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The first step is to understand there are two aspects of site performance – back-end (server & database related) and front-end (browser/caching related). Optimizing a dynamic website for database speed, server speed and so-on is almost a entire discipline itself.
Optimizing for the front-end, where the browser requests the page and it’s elements from the server is where 80% of most “speed” issues with websites lie, so that’s what I’ll focus on.
The first step is to identify where your speed issues occur. There’s several online tools that can help with that part:
The biggest gains can normally made around combining/minification/compression of your content, and one of the better tools that enable you to do that is the Minify project (requires PHP).
That should give you enough to start with until you come back with specifics.