您的购物车内没有物品。
如何开启Magento调试模式和SQL记录?
2016/6/12 上午7:35
1、如果是apache服务器,可以在根目录.htaccess添加下面代码,nginx在php.ini中修改display_errors
php_flag display_errors on
php_value error_reporting 2047
2、找到/errors/local.xml.sample这个文件,改名成/errors/local.xml
3、接着找到lib/Zend/Cache/Backend/File.php文件,在里面查找 protected $_options = array( ’cache_di...
Read MoreMagento2模块创建,Magento2模块插件开发
2016/5/10 上午12:43
Magento1.x运行在PHP5.6 Use of iconv.internal_encoding is deprecated
2016/5/5 下午8:01
Magento运行在PHP5.6以上版本,在日志文件中会有如下信息:
Deprecated functionality: iconv_set_encoding(): Use of iconv.internal_encoding is deprecated in /var/www/html/lib/Zend/Locale/Format.php on line 311Deprecated functionality: iconv_set_encoding(): Use of iconv.internal_encodin...Read Moremagento在安装的时候提示Database server does not support the InnoDB storage engine.
简短的描述下
InnoDB 被新版的mysql抛弃了
Open/app/code/core/Mage/Install/Model/Installer/Db.php
大概87行的位置 把如下内容注释掉!
再次安装···就可以了!
if (!$resource->supportEngine()) {
Mage::throwException(
Mage::helper(‘install...
Magento对接集成企业CRM和ERP系统
2016/3/8 上午1:13
越来越多的企业采用Salesforce等CRM平台或SAP等ERP系统管理客户信息、多渠道销售信息、多仓储库存,CRM对接微信,ERP对接微信,自主Magento商城集成对接各类CRM或ERP系统。先进的云SaaS管理平台集成对接各类客户收集渠道,有利于企业制定客户个性化营销策略,维系客户关系,统一管理错综复杂的客户关系。麦进斗科技实施Magento同Salesforce、SugarCRM、Zoho、Microsoft Dyanamics、OroCRM等CRM平台集成对接;Magento同SAP、Sage ERP、...
Read MoreMagento重建索引报错“There was a problem with reindexing process”
2016/3/1 下午8:06
magento重建索引时报错,There was a problem with reindexing process. Cannot initialize the indexer process.
两步解决问题:
1、可能是这几个文件没权限,设置如下文件权限为777;
app/etc
media
var
2、执行如下SQL语句:
"ALTER TABLE `catalog_category_product_index`
ADD CONSTRAINT `FK_CATALOG_CATEGORY_PROD_IDX_CATEGOR...