Magento管理员登录很慢

时间:2016-07-01 10:04:53

标签: magento magento-1.9

从1个月开始,当我登录我的Magento仪表板时,速度非常慢。记录我需要30秒! 在那之前,我登录4-8秒。

我正在运行Magento CE v1.9.2.4
我没有安装新模块2个月......没什么新的......我想

我不知道为什么。以下是Chrome开发者的屏幕截图。 TTFB超过40秒!

enter image description here

enter image description here

登录后,前端工作正常,仪表板也正常 在我的情况下,有人可以帮助我吗?

修改
    - 我尝试禁用管理员通知,但没有效果

谢谢!

3 个答案:

答案 0 :(得分:0)

管理面板运行缓慢可能有多种原因。

要防止Magento从第三方站点检索通知,您可以通过从Shell运行以下命令来禁用管理通知模块。

首先使用SSH登录,并确保您位于正确的文件夹(即/var/www/domain.com/web)中。

运行以下命令以卸载管理通知模块:

php bin/magento module:disable Magento_AdminNotification

下一步是检查Magento缓存设置是否全部启用。您可以通过运行以下命令进行检查:

php bin/magento cache:status
Current status:
                        config: 1
                        layout: 1
                    block_html: 1
                   collections: 1
                    reflection: 1
                        db_ddl: 1
                           eav: 1
         customer_notification: 1
            config_integration: 1
        config_integration_api: 1
                     full_page: 1
                     translate: 1
             config_webservice: 1

如果看到某些值为0,则必须通过运行以下命令进行修复:

php bin/magento cache:enable
There is nothing to change in cache status

如果设置了缓存,但您仍然遇到Magento站点缓慢的情况,请确保您的MySQL设置是最佳的,并且使用正确的硬件。快速的CPU,大量的RAM并使用SSD磁盘。

答案 1 :(得分:0)

在local.xml中禁用观察者事件。 1个元素可以是rss超时限制:

 <adminhtml>
    <events>
        <controller_action_predispatch>
            <observers>
                <adminnotification>
                    <type>disabled</type>
                </adminnotification>
            </observers>
        </controller_action_predispatch>
    </events>
</adminhtml>

答案 2 :(得分:-1)

该问题与Magento通知相关

在:系统&gt;配置&gt;高级&gt;高级&gt;禁用模块输出只需将 Mage_AdminNotification 设置为Disable

  1. 保存

  2. 退出

  3. 重新登录