0

我在 Media Temple GS 上运行 Magento 1.7.0.2。我在网站上最多可能有 3 个产品,没有插件等。今天突然之间,加载页面需要一分钟多的时间,加载管理员需要几分钟,等等。这可能是什么?上周很好,我 100% 确定没有任何改变、添加等。想法?

http://www.bellabooonline.com

有时网站会超时并显示以下内容:

出于安全原因,默认情况下禁用异常打印。

4

3 回答 3

0

You need to analyse your template and check whether template code uses Cache properly or not.

Most of the templates are not very efficient and you need to modify code to effectively use Cache.

if it was fine few days back but not now then you need to check if cache has been disabled or is it still enables.

Magento is configuration dependent so you need to check if you changed some configuration.

于 2013-05-02T03:37:02.183 回答
0

MediaTemple GS 对于 Magento 来说可能还不够。我目前在 MediaTemple DV 上运行 1 家商店和 3 个网站,这似乎足以满足该网站的流量。

您可以尝试通过在 Magento 中启用缓存来加快速度,看看是否有帮助。否则,如果性能是您的问题,我建议您升级到 DV。

于 2013-05-01T23:53:07.670 回答
0

如果使用默认配置,Magento 目前的缺点之一是它的速度。有一些方法可以让它运行得更快。最好的方法是通过稍微更改 .htaccess 文件来启用 GZip 压缩。您只需要取消注释部分代码。在我的例子中,速度提升正好是 235%。让我们开始加速 Magento!

在 Magento .htaccess 文件中找到以下行并将其替换为以下代码。

############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

插入过滤器

SetOutputFilter DEFLATE

Netscape 4.x 有一些问题……</h1>

BrowserMatch ^Mozilla/4 gzip-only-text/html

Netscape 4.06-4.08 还有一些问题

BrowserMatch ^Mozilla/4.0[678] 无 gzip

MSIE 伪装成 Netscape,但没问题

BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

不要压缩图像

SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

确保代理不会提供错误的内容

标头追加 Vary User-Agent env=!dont-vary

启用生成的 html 压缩

php_flag zlib.output_compression on


你可以在这里找到浏览链接

inchoo.net/ecommerce/magento/boost-the-speed-of-your-magento/

于 2013-05-02T05:46:39.220 回答