支付宝接口资料下载

piaoling  2011-08-08 18:40:06

http://club.alipay.com/read.php?tid=9976972   下载代码前一定要先熟悉接口代码集成流程: 1、先确定您签约的合同中是否包含该产品 若不包含,请联系0571-88158090申请开通。 2、获取签约账号的支付宝安全校验码(key)和合作者身份ID(partner ) 如何查询合作者身份ID(partner)和交易安全校验码(key)   每个接口资料中又包含以下资料: 接口技术文档、集成教程文档、各开发语言代码示例 各开发语言目前仅包含以下四种开发语......

类别 :  默认(748)  |  浏览(4508)  |  评论(0)

Most Downloaded FREE Magento Extensions

piaoling  2011-08-08 17:57:04

Most Downloaded FREE Magento Extensions February 20, 2010 techdad Leave a comment Go to comments MagentoConnect Manager 253356 Modern Theme 93723 Fontis WYSIWYG Editor 48093 Magento Community Modules – German (Germany) Language Pack 47591 Magento Community Modules – French (France) Language Pack 38250 Blue Skin 37507 Magento Classic Theme – 10 colors available ( Magento 1.4 compatible ) 29194 Blog Exten......

类别 :  magento(258)  |  浏览(129934)  |  评论(1)

你以为你知道

piaoling  2011-08-08 13:45:05

      你以为你知道,同寝室的小江是个极品,他自私小气,斤斤计较,五毛钱的电费都得每个人全摊上,要让他帮忙带一份饭一定要先给钱,他贪慕虚荣,眼睛里只有 钱,为了奖学金不惜到行政办公室去理论,为了助学金和同学闹得不可开交,他还不爱干净,好久才洗个澡才换身衣服。        直到那天你去帮老师整理档案,你才知道,小江来自农村,有个残疾的爸爸,有个没有出嫁的姐姐,有个还在念书的弟弟......

类别 :  感悟(15)  |  浏览(4795)  |  评论(0)

magento extentions

piaoling  2011-08-08 11:54:00

Lg lightBox key:http://connect20.magentocommerce.com/community/IG_LightBox             url:http://www.magentocommerce.com/magento-connect/IDEALIAGroup/extension/1843/ig-lightbox 2.Magento Classic Theme Free (10 colors included)     key:http://connect20.magentocommerce.com/community/magento_classic_theme_free magento-community/HM_DeveloperToolbar     url:http://www.magentocommerce.com/magento-connect/TemplatesMaster/extension/928/magento-classic-theme 3.HelloWired Free Theme 1.4  &nbs......

类别 :  magento(258)  |  浏览(4606)  |  评论(0)

老师,对不起,我古诗背串了...

piaoling  2011-08-05 18:25:29

1、少小离家老大回,安能辨我是雄雌。(苦命的人儿,这些年你都经历了什么?) 2、红酥手,黄藤酒,两个黄鹂鸣翠柳。长亭外,古道边,一行白鹭上青天。(如此意境,只有汉语做得到) 3、夜深忽梦少年事,惟梦闲人不梦君。(跟此人有仇啊?) 4、借问酒家何处是,姑苏城外寒山寺。(不许瞎说!) 5、洛阳亲友如相问,轻舟已过万重山,(欠人钱了?跑得够快的啊!) 6、爷娘闻女来,举身赴清池;阿姊闻妹来,自挂东南枝。小弟闻姊来,琵琶声停欲语迟......

类别 :  笑话(31)  |  浏览(4891)  |  评论(0)

Sending Email in Magento

piaoling  2011-08-05 15:42:18

Couple of days back I had to work with mail sending in magento e-commerce. Here I am giving a complete example of how to do that:- Magento sends mails with it’s model “core/email_template”. Here is an example code for your understanding:- 01 /** 02   * $templateId can be set to numeric or string type value. 03   * You can use Id of transacti......

类别 :  magento(258)  |  浏览(3744)  |  评论(0)

Force customer login

piaoling  2011-08-05 15:40:27

I had a requirement like customer support will able to login as any customer. Here is the code snippet i used to force customer support to login as normal user. 1 $customerId = (int) $this->getRequest()->getParam('id'); 2 $customer   = Mage::getModel('customer/customer') 3                   ->load($customerId); 4   ......

类别 :  magento(258)  |  浏览(3750)  |  评论(0)

Playing with Magento’s Entity Backend Model

piaoling  2011-08-05 14:15:44

Here I come to know about an awesome feature of Magento. When we add any eav attribute to an entity we can give a backend model name. Whenever Entity will be loaded magento initiates Mage_Eav_Model_Entity_Attribute model for each attribut. If it finds any backend model name for a eav attribut, it loads the corresponding model and based on what it is doing it will call different method from that model. Here I am giving a complete example how you can use this feature. We will add an attribue to address model as “address_verified” , use a backend model to set this value whenever th......

类别 :  magento(258)  |  浏览(3514)  |  评论(0)

How long customer is inactive ?

piaoling  2011-08-05 14:10:05

  $customer = Mage::getSingleton('customer/session')->getCustomer();   $log = Mage::getModel('log/customer')->load($customer->getId());   $inctive_time = now() - $log->getLastVisitAt();   ......

类别 :  magento(258)  |  浏览(3566)  |  评论(0)

Magento model to interact with db table

piaoling  2011-08-05 12:02:12

In this post I will show you how to write a basic magento model to do AMD activities to a db table. Under package “Mypackage” & module “Mymod” we will create model Test so that we can do AMD with table named “test”. 1.Here we first create a table test in db. 1 CREATE TABLE `test` ( 2 `test_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , 3 `name` VARCHAR( 25 ) NOT NULL ......

类别 :  magento(258)  |  浏览(3648)  |  评论(0)
  • Page:38/145  1448 Blogs
    <<
    >>
    20088
    周日 周一 周二 周三 周四 周五 周六

    文章分类