Questions tagged «ee-1.13»

4
清除所有URL重写-企业版(1.13)
在几次混乱的导入之后,剩下了许多需要删除的URL重写。 我正在运行Enterprise 1.13 当我在社区中遇到这个问题时,我只是被截断了core_url_rewrite,然后重新索引了。 但是,在Enterprise中,我注意到有许多控制重写的不同表。 enterprise_url_rewrite enterprise_url_rewrite_category_cl enterprise_url_rewrite_product_cl enterprise_url_rewrite_redirect enterprise_url_rewrite_redirect_cl enterprise_url_rewrite_redirect_rewrite 我可以全部截断吗? 我完全希望有人告诉我,我永远不要截断这些表,因此提前为您的幼稚而道歉。

2
索引停留在“处理”上
根据Magento管理员的说法,“产品网址重写”索引和“类别/产品”关联已运行了几天 但是,没有正在运行的reindex php进程,该var/locks文件夹为空,并且index_processMySQL表的状态完全不同: +------------+------------------------------+-----------------+---------------------+---------------------+--------+ | process_id | indexer_code | status | started_at | ended_at | mode | +------------+------------------------------+-----------------+---------------------+---------------------+--------+ | 1 | catalog_product_attribute | pending | 2014-01-03 18:17:32 | 2014-01-03 18:17:34 | manual | | 2 | catalog_product_price | pending | 2013-11-06 21:26:32 | 2013-11-06 21:26:32 | manual | | 3 …
24 indexing  ee-1.13 

1
新Changelog表的机制(例如:catalog_category_product_cat_cl)
我刚刚发现数据库中提到的表。我认为它们是Magento EE 1.13中的新功能,可能与新索引相关。 + ---------------------------------------- + | catalog_category_flat_cl | | catalog_category_product_cat_cl | | catalog_category_product_index_cl | | catalog_product_flat_cl | | catalog_product_index_price_cl | | cataloginventory_stock_status_cl | | catalogsearch_fulltext_cl | | enterprise_url_rewrite_category_cl | | enterprise_url_rewrite_product_cl | | enterprise_url_rewrite_redirect_cl | + ---------------------------------------- + 这些表格如何运作?目的是什么? 他们会在一段时间后自动清洗吗? 将这些表包括在备份中是否有意义?
15 database  ee-1.13 

1
带有其他参数的产品网址(CE 1.8和EE 1.13)
简而言之:在CE 1.8和EE 1.13中,检索带有其他参数的产品URL无效。 URL已随着最新版本的Magento更改。先前在CE 1.7和EE 1.12中,$this->getAddToCartUrl($_product)从产品列表进行调用将经历以下阶段: Mage_Catalog_Block_Product_Abstract::getAddToCartUrl() 在这里它将添加查询参数“ options”,其值为“ cart” Mage_Catalog_Block_Product_Abstract::getProductUrl() 此方法本质上是从URL模型获取值 Mage_Catalog_Model_Product_Url::getUrl() 直到最终生成URL为止,需要进行大量处理,并完成最初传入的查询参数 现在,使用CE 1.8和EE 1.13,第3步Mage_Catalog_Model_Product_Url::getUrl()开始如下: $url = $product->getData('url'); if (!empty($url)) { return $url; } 由于列表中的产品已经具有URL数据,因此不会添加查询参数,并且最终URL不包含?options=cart。 我的问题:这是错误还是功能?

2
使用自定义主题时不使用样式的CMS预览
我使用具有自定义主题的magento EE 1.13.1.0,该主题在“系统”->“配置”->“设计”->“默认”中设置。 当我们使用Magento CMS预览版时,会出现此问题。它显示时没有自定义主题样式,因为默认情况下magento预览使用base/default主题。 如果我编辑CMS Page的“设计”选项卡,并将Custom Theme属性设置为某些自定义主题,则一切正常。但是默认情况下不是。 以前有人问过这个问题吗?也许我错过了一些配置? 无论如何要解决此问题,我创建了观察者并将其附加到cms_page_render事件中以检查是否Custom Theme设置了CMS页面的属性。如果不是,则使用真实的默认主题: public function setDefaultThemeForCmsPreview(Varien_Event_Observer $oObserver) { $oRequest = $oObserver->getControllerAction()->getRequest(); if ( $oRequest->getControllerName() == 'cms_page_revision' && $oRequest->getActionName() == 'drop' ) { $oCmsPage = $oObserver->getPage(); if ($oCmsPage->getCustomTheme()) { list($sPackage, $sTheme) = explode('/', $oCmsPage->getCustomTheme()); } else { $sPackage = Mage::getStoreConfig('design/package/name'); $sTheme = Mage::getStoreConfig('design/theme/default'); …
10 cms  theme  ee-1.13 

1
如何报告Magento Enterprise中的错误?
我在Magento Enterprise 1.13中发现了“网站限制”和“单页签出”的错误。尽管我正在开发一种解决方法,但我也想提交一个故障单。 尝试报告错误时,可用版本仅限于Community Edition。报告企业中的错误的正确过程是什么?
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.