自从一个月以来,当我登录到我的Magento仪表板时,它非常慢。记录我花了30秒!
在那之前,我记录了4-8秒。
我正在运行Magento v1.9.2.4
两个月以来我没有安装新模块..。没什么新鲜的..。我猜
我只是不知道为什么。这是Chrome的屏幕截图。TTFB超过40秒了!


前端运行良好,登录后仪表板也很好。
有人能帮我吗?还有人帮我吗?
编辑
- I tried to disable Admin Notification, but there no effect谢谢!
发布于 2019-03-07 13:09:56
一个缓慢的管理面板可能有多种原因。
为了防止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速度快,内存丰富,使用SSD磁盘。
发布于 2020-02-03 08:11:18
禁用local.xml中的观察者-事件。1元素可以是rss超时限制:
<adminhtml>
<events>
<controller_action_predispatch>
<observers>
<adminnotification>
<type>disabled</type>
</adminnotification>
</observers>
</controller_action_predispatch>
</events>
</adminhtml>发布于 2016-11-23 20:25:41
这个问题与Magento通知有关。
在:Mage_AdminNotification系统>配置>高级>高级>禁用模块下,输出简单地将设置为Disable。
https://stackoverflow.com/questions/38142589
复制相似问题