Reputation: 198
Hi i want improve prestashop page speed i tried following thing
minfied css & js
use cdn (but not working )
Is there any way for do this currently page speed is 11.6 i need it 4-5. Thanks in advance
Upvotes: 0
Views: 647
Reputation: 5748
You should use Prestashop Profiling system to see if there are long running SQL queries or if a hook is taking too much time.
To enable Prestashop Profiling you should edit your /config/defines.inc.php
file and turn line define('_PS_DEBUG_PROFILING_', false);
to define('_PS_DEBUG_PROFILING_', true);
.
We can't help you further without more informations.
Ok, so this is not just a problem of optimization of your code. I can see that you added a cdn optimize1.
, Prestashop allows you to add 3 different cdn, you should use this option (it will allows parallels downloads of your content). Here is some information on the subject.
Upvotes: 3