英文:
Admin grids are stuck on loading until refresh the page in magneto 2.4.5-p2
问题
在Magento管理后台登录后,网格表格一直显示加载中。只有在刷新页面之前,加载才会继续进行,而在加载中时,我们甚至无法打开管理后台的其他选项卡,例如:如果我打开"销售"->"订单网格" [它一直显示加载中],其他选项卡也无法使用。有时在Magento管理后台登录后,选项卡不起作用 - 销售 - 目录等等,都不起作用或无法点击。
到目前为止,我们已经尝试了以下方法来解决此问题,但问题仍未解决:我们检查了所有日志文件,没有错误。我们尝试删除ui_bookmark表格,但对我们没有用,我们尝试调试错误,但没有发现任何问题,我们处于生产模式,将模式更改为开发者模式以查找前端或日志中的问题,但再次发现日志文件中没有内容,前端没有错误。请问是否有人可以建议解决此问题的解决方案,以便我们可以继续进行。
英文:
After login in Magento admin grids are stuck on loading. It's continue loading until we not refresh the page while the grids are stuck on loading we are not even able to open any other tabs from admin for example : if I open sale -> order grid [ its stuck on loading ] & other tabs are not working too Sometimes its happen after login in Magento admin and tabs are not working - sales - catalogs etc. all the not working or not clickable .
We have done the following till now to solve this issue but the issue is fixed : We check all the log files and there are no errors . We try removing ui_bookmark table its not work for us too we try debug the error but we find nothing we are on production mode and we change the mode into developer to find the issue in frontend or in log but again we got nothing in log files or no error in frontend. Could anyone please suggest the solution to fix this issue so that we can proceed further.
答案1
得分: 1
我一直从Magento 2.4.5及更高版本面临这个问题,我怀疑这是浏览器缓存的问题,您可以在这里刷新或临时禁用缓存。
英文:
I've been facing this all time from Magento 2.4.5 and above, I suspect this is a issue with browser cache, you can refresh or temporally disable the cache here.
答案2
得分: 1
谢谢,这可能与由Adobe和他们的跟踪工具引起的错误相关,我们通过以下方式永久修复了这个问题:
bin/magento config:set admin/usage/enabled 0;
bin/magento cache:clean;
更多信息可以在这里找到:https://github.com/magento/magento2/issues/37618#issuecomment-1592991014
希望能帮助您。
英文:
Thanks this probably related to a bug that is caused by Adobe and their tracking tool and we fix this permanently by using this following ways :
bin/magento config:set admin/usage/enabled 0;
bin/magento cache:clean;
More info can be found here: https://github.com/magento/magento2/issues/37618#issuecomment-1592991014
Hope it will help you
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论