Questions tagged «administration»

1
长时间运行的管理页面请求阻止其他请求
如果我登录到Magento的后端并执行一些需要很长时间的任务(在大型目录上进行全局搜索,长时间运行的数据流等),则我的Web浏览器将拒绝仅在该浏览器中加载其他管理页面。为什么会发生这种情况,并且有任何已知的解决方法科学? 也就是说,如果我 登录到Magento的仪表板页面 使用任何Magento管理页面打开第二个标签页 在第一个标签中执行长时间运行的全局搜索(以sleep(30)开头的调用模拟globalSearchAction) 尝试重新加载第二个标签 预期的行为:第二个选项卡立即加载页面内容 实际行为:只有长时间运行的全局搜索完成后,才会加载第二个选项卡 有谁知道具体为什么会这样?(我的猜测是Magento管理控制台请求锁定了Magento需要引导的某些资源,但我不知道那是什么) 有人知道修复/解决方法吗?

3
为配置定义值设置默认值?
如何为我在system.xml文件中定义的配置值分配默认值?目前它默认为“否”,但我希望它默认为“是”。 这是我当前的定义代码: <catalog> <groups> <my_val> <label>My Label</label> <frontend_type>text</frontend_type> <sort_order>160</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> <fields> <my_inner_val translate='label comment'> <label>Enable seperate cart items</label> <frontend_type>select</frontend_type> <source_model>adminhtml/system_config_source_yesno</source_model> <sort_order>1</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> </my_inner_val> </fields> </my_val> </groups> </catalog>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.