My Wordpress website is opening too Slow [closed]

浪子不回头ぞ 提交于 2019-12-24 03:48:07

问题


My WordPress website is opening too slow,

I am using woocomerce, flipbook, ajax event calendar , Email newsletter , adrotate , and some other plugin.

Theme Used : Nictitate ( FREE VERSION )

I don't know why it's so slow.

I have installed W3cahce and Cloudflare to attempt to improve the speed of my website but it is still very slow.

Is it a server issue or something else?


回答1:


Well there are many factors that as affecting your website performance..

If you are not aware of Google Pagespeed, you can take a look at detailed analysis of your website.

  1. You are loading many javascripts on pageload, you can decrease it by implementing something like lazy loading or combining javascripts.

  2. Same applies with all the CSS stylesheets, Although they are not blocking rendering, they do consume one request each.

  3. You have three images of size 1.2mb each.. which is huge compared to web standards, try reducing them.. Use www.kraken.io like services to optimize images.

  4. You have 116 requests which can be reduced..

Detailed analysis on : http://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.jni.co.in%2F&tab=desktop




回答2:


This is link Debugging in WordPress which should help you debug if there is any issue.

For enabling debugging your code should have:

// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);

Or you could possibly try this in your wp-config.php

define('WP_DEBUG', false);
@ini_set( 'error_reporting', E_ALL ^ E_NOTICE );



回答3:


You can try combining your CSS files to reduce the number of requests. Moreover, you can optimize these CSS files to achieve better performance. proCSSor is a useful tool to do that.



来源:https://stackoverflow.com/questions/25196524/my-wordpress-website-is-opening-too-slow

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!