magento在不同的模块分别覆盖原来的model、block,假如有packageA的A模块要覆盖customer/model/customer,packageB的B模块也要覆盖,那么除了上篇文章介绍的配置以外,剩下的就是需要后覆盖的类在...
magento paypal无法处理付款
由于magento 设置了address_overyried=1,所以会出现下面这样的提示 Unable to process payment. Please contact the merchant as the shipping address provided by the merchant is invalid, and the merchant has requested that your or...
magento商品详细页product page 404错误
magento商品详细页product page 404错误,解决方法是在phpmyadminsql中运行,注意数据表名称改成report_event_types你所定义的前辍 INSERT INTO `report_event_types` (`event_type_id`, `event_name`, `customer_login`) VAL...
magento更改数据库连接 更换域名
1. magento 的数据库的配置文件在 documentROOT- app-etc - local.xml default_setup connection host![CDATA[localhost]]/host username![CDATA[ root ]]/username password![CDATA[ root ]]/password dbname![CDATA[ magento ]]/dbname initState...
Magento通过category name获取category信息
Magento: 通过category name获取category信息 $cat = Mage::getResourceModel(catalog/category_collection)-addFieldToFilter(name, Category_Name_Here); print_r($cat-getData()); To get the category id from $cat object, simply use: $cat-getFi...
解决magento保存产品时耗时很长的问题
以前我在更新magento产品属性值(拿price为例)的时候,通常会这样做: foreach($product_ids as $id){ $product = Mage::getModel(catalog/product)-load($id); $product-setPrice($price)-save(); } 因为之前网站产品很少,...
magento获取产品的方法
1.通过属性获取产品 $product =Mage::getModel( catalog/product )-loadByAttribute( sku , 70000 ); 2. 获取指定分类下的产品 1 2 3 4 5 $products =Mage::getModel( catalog/category )-load( $category_id ) -getProductCollection() -a...
Magento输入正确的登陆名和密码无法进入后台
Magento输入正确的登陆名和密码无法进入后台,请找到 这个文件夹: app\code\core\Mage\Core\Model\Session\Abstract 然后修改Varien.php这个文件: 找到代码(大约88行): $cookieParams = array( lifetime =...
magento如何在CMS page中使用php code
通常我们创建Magento一个cms page之后,在后台可以借助magento自带的编辑器进行一些简单的变量插入,但是如果页面内容比较复杂并且有很多自定义变量的时候,比如我们需要从db取一些数...
如何将twitter关联到你的magento站点 oauth1
[php] view plaincopy public function post_tweet( $tweet_text ){ include_once ( twitter/tmhOAuth.php ); //tmhOAuth.php为twitterapi,放到/lib/twitter下,下载地址请往下阅读 $connection = new tmhOAuth( array ( consumer_key = xrnO...