
Magento
stefan321
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
深入理解Magento – 前言
前言我从2007年开始使用Magento,应该算是国内第一批使用Magento的用户。但是我却从来没有认真研究过Magento,更多的停留在应用层面。虽然也做过一些插件,但也就是依葫芦画瓢而已。偶然间看到 Alan Storm 的一系列关于Magento的文章,我忍不住的心潮澎湃,相见恨晚。Alan的文章循序渐进,深入浅出地讲述了Magento的架构和工作方式, 把一个复杂系统的内部结构淋...原创 2010-09-02 15:57:58 · 152 阅读 · 0 评论 -
Magento Log & Cache Maintenance Script
Create a file called cleanup.php and add the following code to it:[code="php"][/code]Save the file to the directory where Magento resides.Next, open up cPanel and click on the Cron Jobs ic...原创 2010-09-02 16:05:12 · 104 阅读 · 0 评论 -
深入理解Magento – 第二章 – Magento请求分发与控制器
深入理解Magento作者:Alan Storm翻译:Hailong Zhang第二章 – Magento请求分发与控制器Model-View-Controller (MVC) ,模型-视图-控制器,源于Smalltalk编程语言和Xerox Parc。现在有很多系统是基于MVC架构的,不同的系统MVC的实现也略有不同,但都体现了MVC的精髓,分离数据,业务逻辑和显示逻...原创 2010-09-07 17:24:22 · 107 阅读 · 0 评论 -
Magento 中文语言包
1,下载一个汉化包,参考地址:http://code.google.com/p/magento-cn/downloads/list 2,解压后copy得到 app文件夹,把汉化包 app文件夹 粘贴 magento下的 app文件夹 提示有一个对话框,点击“是” 3.后台登录操作 A:System ->Cache Magagent All Cache 后面选择Refresh 点...原创 2011-01-17 14:26:42 · 156 阅读 · 0 评论 -
Megento Block 解析
[code="java"]{{block type="tag/popular" template="tag/popular.phtml"}}[/code][code="java"]blockDirective(): /magento/app/code/core/Mage/Core/Model/Email/Template/Filter.php at line 191[/code] ...2011-01-18 17:58:59 · 196 阅读 · 0 评论 -
Magento XML file
[table]|Character|Description|Escape||&|Ampersand|&|||Greater than>||'|Apostrophe|'||"|Quotation mark|"|[/table]For example, if you wanted to display A & B > C < D '...2011-01-18 19:36:20 · 85 阅读 · 0 评论 -
Magento's IDs and classes
Magento's IDs and classesWhen creating themes that you intend to share with other Magento users, it can be helpful to use the same naming conventions used in Magento's default themes for the element...2011-01-21 20:21:56 · 113 阅读 · 0 评论 -
Magento get static Block content within a PHP function
[code="php"]$this->getLayout()->createBlock('cms/block')->setBlockId('staticblockname')->toHtml()[/code]2011-01-25 13:06:04 · 86 阅读 · 0 评论