Reputation: 71
Lately i have experienced something strange on my magento site. Sometimes my site is running slow and sometimes its acceptable.
Do you know some tools to test it a day long?My site is running on a VPS.
Love to know your results and reviews on the sites speed.
Thanks
Upvotes: 0
Views: 1649
Reputation: 456
I have checked many Magento websites and find that most of them are very slow. Have you ever checked why the Magento websites are very Slow. Let me show some reasons and the solution for making Magento Websites Faster. Reasons why Magento websites are slower
Solutions for Making Magento websites Faster 1. Compilation Turned Off : The Main reason due to the Installation of many modules.All activities of the system must go through modules and an action in Magento may involve some modules, thus the loading and running of Magento system are quite slow. So if you want to make your website faster then first enable the compilation. Procedure for enabling the compilation Login to the Admin panel System -> Tools -> Compilation -> Then Click on the Run Compilation Process
Cache Problem : Cache is not enabled in your system. Procedure for enabling the Cache System ->Cache Management -> Select All -> then from action select options -> select Enable ->click Submit
No Full Page Cache : Full page cache is very important for any Magento based websites. You can also use this free Magento extension for Full page Cache. Lesti Full PAge Cache
Code looping : Their might be a reason for the Custom Code, may be some wrong code added so that it is looping and using the wrong code and looping database queries. If this is the problem then any developer can only solve the problem or use the default code.
Flat Data not Enabled : Flat Category and product data is very important for Magento Websites. Whether or not you should enable the Flat Data of Products and/or Categories varies depending on your Magento website structure. If you have only dozens of products with many attributes, or have a few hundred products with only a few attributes/attribute variations, then flattening the products/categories may not impact the site speed significantly. On the other hand, if your website contained almost 1,000, or possibly several thousands of products, then it is almost always recommended to flatten your products. If these products are spread across multiple dozens of categories (and products aren’t duplicated across these categories), then flattening these categories would be suggested as well.
System -> Configuration -> Catalog -> Then in frontend tab you will find two settings as Use flat catalog category and flat catalog product. Enables both the settings to yes.
Procedure for enabling or disabling the logs in Magento System -> Configuration -> Developer – > Click on log settings tab Here you will find the setting for the log
what you are trying to do.
For more info about : Increasing Magento Speed and Loading Time
http://www.webtechnologycodes.com/increasing-magento-speed-and-loading-time/
Upvotes: -1
Reputation: 5410
To test the speed of a website + immediately get recommendations on what can be easily improved to reduce the loading time I use GTMetrix.
Some other pointers for speeding up Magento:
EDIT: As mentioned by ADM you must also optimize your MySQL and Apache (considering you are running apache2) configuration.
EDIT2: As general suggestion I suggest you to Google for "speed up Magento" and you will find hundreds of topics/articles covering this subject.
Upvotes: 1
Reputation: 272
@Kenny you have a bit wrong approach, to start you have to check your apache config, unload all extra modules apache2ctl -M
, same with php -m
, then install apc or eaccelerator, then check your mysql config, it usually takes 2 days to see mysql real values, use mysqlreport perl script, it will show you whats going on with your database. then you go for Leverage browser caching, and only after you setup FPC. not sure if compilation 'must have' feature...
Upvotes: -1