How to get currency symbol?

piaoling  2011-07-22 10:52:18

How to get currency symbol? Code is useful for get currency symbol           Mage::app()->getLocale()->currency(Mage::app()->getStore()->      getCurrentCurrencyCode())->getSymbol() or if you want to pass a certain currency code simply specify it:      Mage::app()->getLocale()->currency('EUR')->getSymbol()     Source  : http://www.activecodewar.com/ ......

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

magento category

piaoling  2011-07-21 13:34:47

$store = Mage::getModel('catalog/category')->setStoreId(3)->load(10); ......

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

get a list of all categories about target store

piaoling  2011-07-21 13:23:50

require_once $_SERVER[’DOCUMENT_ROOT’]."/app/Mage.php"; Mage::app(’1’); function nodeToArray(Varien_Data_Tree_Node $node) { $result = array(); $result[’category_id’] = $node->getId(); $result[’parent_id’] = $node->getParentId(); $result[’name’] = $node->getName(); $result[’is_active’] = $node->getIsActive(); $result[’position’] = $node->getPosition(); $result[’level’] = $node->getLevel(); $result[’children’] = array(); foreach ($node->getChil......

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

load store by code

piaoling  2011-07-21 10:17:54

$store = Mage::getModel("core/store")->load("french","code"); ......

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

Read Timed Out after 10 seconds magento

piaoling  2011-07-20 18:47:41

TheGingerOne - 06 October 2010 05:34 AM Hi, I had a similar problem recently with only being able to submit a few records at a time before the timeout message. I found out that you can increase the timeout limit in the Zend directories and thus give yourself a better chance of your items going through. Edit the following file on your server:  /lib/Zend/Http/Client.php Locate the following line: ‘timeout’ => 10 Increase it to what you need it to be. I set it to 30 which did the job for me. I’m very new to Magento and haven’t got......

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

xdebug 配置及使用详细

piaoling  2011-07-20 17:24:14

xdebug是PHP的一个扩展应用,有了xdebug就可以轻松的调试PHP程序,有了它,我们就不用使用var_dump(),print_r()之类的傻瓜调试函数了。 Xdebug则提供了更多的功能,能全方位的对PHP脚本进行调试。Xdebug主要的功能如下: 堆栈追踪和函数追踪; 错误信息; 内存分配; 剖析php脚本的信息; 代码覆盖率分析; 远程调试分析; 1、Ubuntu搭建xdebug调试环境 安装Xdebug模块 在终端中使用apt-get安装xdebug,命令如下 sudo apt-get install php5-dev php-pear sudo ......

类别 :  web(2)  |  浏览(4902)  |  评论(0)

HP大中华区总裁孙振耀退休感言

piaoling  2011-07-20 13:00:14

HP大中华区总裁孙振耀退休感言 : 如果这篇文章没有分享给你,那是我的错。 如果这篇文章分享给你了,你却没有读,继续走弯路的你不要怪我。 如果你看了这篇文章,只读了一半你就说没时间了,说明你已经是个“茫”人了。 如果你看完了,你觉得这篇文章只是讲讲大道理,说明你的人生阅历还不够,需要你把这篇文章珍藏,走出去碰几年壁,头破血流后再回来,再读,你就会感叹自己的年少无知。 如果你看完了,觉得很有道理,然后束之高阁......

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

magento api

piaoling  2011-07-19 10:21:30

If you are in the business of developing a mobile application or external web/desktop or some other application/service that needs to communicate with Magento trough its API, then my friend you are out of luck. I am not going to say Magento API is a trash, I’ll simply say it massively lacks certain methods within the existing exposed classes that will make your external application usable. Its all about simple things, right? Well, here is one bottom line simple thing I would like to do with my Magento API. I would like to get a list of all available websites, stores and store vie......

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

magento -- 修改代码让后台属性组合里的属性显示中文

piaoling  2011-07-18 14:13:35

Magento后台属性组合管理里的各个属性显示的是属性的code,也就是说,即便给每个属性加上了中文的标签(label),这里显示的依然是大片的英文,对一个不懂技术的后台管理者来说,这样多的英文时他们不愿意看到的,所以要想办法变一下。   打开/app/code/local/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php文件,找到几个用来显示的代码,替换成如下所示   view plaincopy to clipboardprint? public function getGroupTreeJson()  ......

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

Magento创建新支付模块

piaoling  2011-07-18 11:59:14

大家都知道,Magento 自带 paypal 支付模块,但对于中国大陆的网购用户来说,经常用的是网银,支付宝,财付通,等这些第三方支付。如果你的 Magento 跟踪官方升级到最新版本,也许后续版本中会有添加支付方式的后台操作模块,但是现在,我们必须以编程方式创建新的支付方式模块。 下面有一个小例子,Rikku 将解释如何创建一个简单的 Magento 支付模块。 当然,Rikku 在过去的涂鸦中,介绍过如何建立 Magento 模块,如果您不甚了解,那么请看 Rikku 的另外两篇涂鸦......

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

    文章分类