odoo和magento的连接器部分 https://github.com/aliomattux/mage2odoo 模块作者 Kyle Waid 安装后界面 mage2odoo上配置magento服务器信息 连接器本身依赖 payment_method https://github.com/aliomattux/payment_method stock...
更改magento订单号规则:日期时间+随机
app\code\core\Mage\Eav\Model\Entity\Increment\Numeric.php public function getNextId() { $last = $this-getLastId(); if(!$last){$last=10000000;} return $showtime = date(ymdHis).sprintf(%03d,mt_rand(0, 999)); if (strpos($last, $this-getPrefix(...
开启magento让某个页面支持SSL访问
比如带有creditcard-pay的url页面,修改下面几处,具体方法作用可以看注释 \app\code\core\Mage\Core\Model\Store.php /** * Check if frontend URLs should be secure * * @return boolean */ public function isFrontUrlSecure()...
解决Magento安装时数据库不支持InnoDB存储引擎问题
找到文件app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php的第59行: 将 public function supportEngine() { $variables = $this-_getConnection() -fetchPairs(SHOW VARIABLES); return (!isset($variables[have_innodb]) || $variables[...
magento产品添加到购物车后跳转到不同页面
1 添加产品到购物车成功后是跳转到购物车页面或不跳转。这个在后台可以设置 system -》 configuration -》After Adding a Product Redirect to Shopping Cart Yes/No 这个是设置成功添加产品后是跳转到购...
让Magento的Paypal付款不成功返回后不要清空购物车产品
经常遇到这个问题,当我们使用第三方支付工具Gateway如paypal支付的时候,如果用户付款不成功或者取消了订单再返回网站时,发现购物车里面的产品已经被清空了,如果是客户主动ca...
magento设置订单状态代码详细分析
Magento订单有两个状态变量:state和status,这让人困惑,只有测试下了,于是下了个单,然后在Magneto后台处理订单,得出下面的Magento订单状态值 1. 新订单 state : new status : pending 2. 配送后...
在本地用xampp主机上安装 Magento 2.0(Alpha)
如你所知,Magento 2.0 Alpha 版本已被释放,在 2015 年 12 月,当然,许多 Magento 开发人员想要赶上这个最新的 Magento 版本。 我们将发布一系列文章 Magento 2,开始今天的教程有关的: 如何正...
修复Magento SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry报错
magneto在意外情况下报错Magento SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry,出现这个问题最有可能是数据库因为非法重启关机等情况造成的。 去phpmyadmin里面把这几个表清空了...
Magento网站迁移数据时需要注意的问题
在用Magento系统进行开发时,我们有时会遇到系统搬家的问题,从一个服务器挪至另一台总体性能更好的服务器上,或者从测试环境上将系统和数据完全地迁移至生产环境中。 根据两种...