Magento:页面不会停止在 admin/system_config/edit/section/design 中加载
我使用 Magento 1.4.1 并优雅地升级到 1.4.2。测试升级是否正常后,我做了一些修改,以便使用这些 说明。这些修改已经在本地版本(Ubuntu 10.04,php 5.3.2)上进行了测试,并且效果很好。
当我将文件上传到预生产服务器(Centos 5.5,php 5.2.14)并访问管理后端中的System->Configuration->design
选项卡时,我的浏览器似乎无限期地继续加载。
我所做的:
- 我将
app/code/core/Mage/Page/*
目录复制到app/code/local/Mage/Page/< /代码>;
- 我创建了app/etc/modules/Mage_Page.xml,并将codePool定义为本地;
我已经检查过:
- 我在
/var/log/httpd/*.log
中没有发现错误; - 我在 magento 的 var/log/system.log 中没有收到任何错误;
- 前端工作正常;
- 后台可以访问,除了
系统->配置->设计
选项卡; - 我尝试将修改恢复到修改之前的修订版本(使用 svn);
- 我直接在服务器上使用 rm -fr var/cache/mage* var/session/* 清理缓存;
- 我多次重启服务器;
- 我什至尝试在 preprod 服务器上获取生产中的数据库转储,但没有效果。我仍然遇到同样的问题。
如果有人能指出任何事情我可能会忘记。 我准备尝试一切使其工作,因为它目前不会影响生产服务器。
I was using Magento 1.4.1 and upgrade gracefully to 1.4.2. After testing if the upgrade was Ok, I made some modification in order to have a new home page layout for a store using these instruction. The modifications have been tested on a local version (Ubuntu 10.04, php 5.3.2), and worked great.
When I upload the files to the pre-prod server (Centos 5.5, php 5.2.14), and access the System->Configuration->design
tab in the admin backend, my browser seems to keep loading indefinitly.
What I have done:
- I copied the
app/code/core/Mage/Page/*
directory to theapp/code/local/Mage/Page/
; - I created the app/etc/modules/Mage_Page.xml, and defined the codePool to local;
What I have already checked:
- I got no errors in
/var/log/httpd/*.log
; - I got no errors in magento's
var/log/system.log
; - The frontend works fine;
- The backend can be accessed, except the
System->Configuration->design
tab; - I tried to revert my modifications to a revision before the modification were made (using svn);
- I cleaned up the cache using
rm -fr var/cache/mage* var/session/*
directly on the server; - I restarted the server multiple time;
- I even tried to get a dump of the db in production on the preprod server, with no effect. I still got the same issue.
If someone could point out anything I could have forgot.
I am ready to try anything to make it work, since it would not affect the production server for now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过大量搜索,我们终于尝试重新启动apache服务器(我们不得不强制它重新启动,我不知道为什么?)。当我们重试时,一切都按预期进行。
服务器上可能存在损坏,导致仅此标签崩溃。
希望这可以帮助某人。
After a lot of searching, we finally tried to reboot the apache server (we had to force it to reboot, I don't know why?). When we retried, everything was working as expected.
There probably was a corruption on the server that made crash only this tag.
Hope this could help someone.