Author: 芳草苑主

  • Activate Magento ajax loading graphic using jQuery

    I extend Magento js using jQuery.
    I need ajax loading mask and grahpic for jQuery ajax request.
    I want to achieve consistent look and feel.
    I want to activate Magento ajax loading graphic initially used in prototype using jQuery.

    Although prototype register global event handlers for ajax create and complete events, the handlers will not fire by jQuery ajax request. For jQuery to activate ajax loading graphic, I manually fire the onCreate event in jQuery function.

    var r = {options:{loadArea:''}};
    varienLoaderHandler.handler.onCreate(r);
    

    to deactivate

    varienLoaderHandler.handler.onComplete();
    

    Let me know if you know a better way to tie jQuery and prototype together.

  • Magento Cush module is about to release

    Long long time ago, I installed Customshippingrate module, but never made it work on my site. The module sits on the disk but disabled. Recently I took some trouble and about three days developing my own module Cush for admin panel users to charge special shipping price when creating an order.

    Cush module does not override any Magento classes so it is virtually 100% compatible with other modules. Neither does Cush module override any Magento templates so basically it reuses Magento native interface. Cush is not a shipping method so it can work with any Magento shipping methods or 3rd party shipping methods.

    Cush module injects customisation logic by javascript. What it actually customise are values in magento_sales_flat_quote_shipping_rate where is pool of shipping quotes. Values customised belong to an individual quote so the customisation hits its point.

    When writing Cush module, I found a defect in Magento own code app/design/adminhtml/default/default/template/sales/order/create/shipping/method/form.phtml.

    
    echo $this->getCarrierName($_rate->getCarrier());
    
    

    The above code reads value from configuration and shows it as carrier title. If I was not injecting shipping method customisation logic, I would not realise it is a defect. Carrier title value, like method title and shipping rate, if read from magento_sales_flat_quote_shipping_rate using $_rate->getCarrierTitle(), will make more sense. Values from configuration will not reflect carrier title changes done by Cush. I respect Magento own templates, especially adminhtml templates. Instead of overriding this template, I wrote some additional javascript in Cush module to correct carrier title. I stick to my green principle although it costs much more time developing.

    Upon installing Cush module, I removed all files of Customshippingrate module. A small accident happened – can not create shipment. It turns out during creating shipment, Magento is gathering all config paths start with “carriers/” and working out all carriers between two slashes. It is a bad logic, or I can call it a bug. It does not check whether this carrier exists or is active. So, very bad.

    Just add to my Magento caveats: after removing a shipping method, remove all entries of “carriers/CARRIER_CODE/*” in magento_core_config_data.

  • Godaddy 25% off promo code

    gdd5013g

    At GoDaddy, I can use gdd5013g for 25% off any order above $75.

    25% off godaddy orders
    25% off godaddy orders

    I just want to make a note here for myself instead of every time googling for a code.

    Let me know if you know a code for 30%, 35%, … off or even more. My orders are normally above $100 or I can put orders together to be qualified for higher discounts.

  • 欧陆制袋 = Euro Bags

    已经不止一次惊奇于 Google 的聪明了。

    今天无意中在 Google Translate 中输入申通快递,竟然翻出了 STO。

    然后我再想惊喜一下,输入欧陆制袋,很遗憾,没看到 Euro Bags,看到的是 Continental Bag。又试了一下逆向翻译,输入 Euro Bags,看到的是欧元袋。

    什么时候能让 Google 认识到 欧陆制袋 就是 Euro Bags 呢?

  • Magento datetime picker is not picking up time value

    Magento 用了 dynarch.com 的 calendar 1.0 javascript,有个 bug:无法得到 time 的值。

    dynarch.com calendar 已经是 2.0 了,单独使用的话,能显示和修改 time 的值。

    我暂时没想好该怎么办:我倾向于用 jQuery 去增强 Magento(prototype 我也用不好,其他的就更不要说了),但 jQuery 现下的版本只有 datepicker,官方还没有 datetimepicker。试过很多第三方 jQuery datetimepicker plugin,没觉得某一款有 jQuery 的神韵。

  • I could use Google apps account as my OpenId

    Years ago, I knew OpenId.
    Years ago, I knew Google account supports OpenId as OpenId provider.
    Years ago, I knew Google apps premium version account support SSO.

    And I was misled by many threads that Google apps standard version account does not support OpenId. I did try several times without success, but I did not try hard.

    Today, a great post How to Setup OpenID with Google Apps gave me a big confidence that I can do it. So I tried hard – spent a whole evening trying, and successfully logged into SourceForge with my Google apps acount, and I am using Google apps standard version!

  • Controller override and request rewrite in Magento

    There are three ways to override controller in Magento. They fit for various purposes.

    The first and easiest way can be used to route the request to more than one module. When a request arrives on a frontName, it usually is rounted to a module. For example, /cms/page/view is routed to cms module page controller view action. If I have developed a cms related module called “faq” with a brand new controller “QuestionController”, but I want it share the same cms frontName with cms module, i.e., I want /cms/question/any_action be routed to faq module.

    It is very easy to achieve by a config.xml like the following:

    <config>
    	<frontend>
    		<routers>
    			<cms>
    				<args>
    					<modules>
    						<any_name>MyNamespace_Faq</any_name>
    					</modules>
    				</args>
    			</cms>
    		</routers>
    	</frontend>
    </config>
    

    Strictly speaking, no overriding in above example because it only activates a brand new controller. In a truly overriding example, if I want PageController of faq module override PageController in cms module, I can add before=”Mage_Cms” to make sure PageController of faq module supersede the same name controller in cms module. The complete configuration is shown below:

    <config>
    	<frontend>
    		<routers>
    			<cms>
    				<args>
    					<modules>
    						<any_name before="Mage_Cms">MyNamespace_Faq</any_name>
    					</modules>
    				</args>
    			</cms>
    		</routers>
    	</frontend>
    </config>
    

    The second way can be used to mass override controllers.

    <config>
    	<global>
    		<rewrite>
    			<any_name>
    				<from><![CDATA[#^/cms/#]]></from>
    				<to>/faq/</to>
    				<complete></complete>
    			</any_name>
    		</rewrite>
    	</global>
    </config>
    

    The above configuration makes all controllers in faq module override same name controllers in cms module. In class Mage_Core_Controller_Varien_Front, there is

    $pathInfo = preg_replace($from, $to, $request->getPathInfo());
    

    doing path info string replacement based on regular expression. And because it is based on regular expression, I can do mass replacement at a time.

    The tag flags whether requested path info should be turned into new module path info. In other words, when the request arrives on /cms/page/view, it is rewritten to /faq/page/view. Without tag, the action layout handle is cms_page_view; with tag, the action layout handle is faq_page_view.

    I can use this method to route the request to a brand new controller, i.e.

    <config>
    	<global>
    		<rewrite>
    			<any_name>
    				<from><![CDATA[#^/cms/question/#]]></from>
    				<to>/faq/question/</to>
    				<complete></complete>
    			</any_name>
    		</rewrite>
    	</global>
    </config>
    

    Note that cms module does not have question controller, but the above configuration will not cause any error.

    The third way can be used to override individual actions.

    <config>
    	<global>
    		<routers>
    			<cms>
    				<rewrite>
    					<page>
    						<to>faq/question</to>
    						<override_actions>true</override_actions>
    						<actions>
    							<view_action><to>new_module/new_controller/new_action</view_action>
    						</actions>
    					</page>
    				</rewrite>
    			</cms>
    		</routers>
    	</global>
    </config>
    

    This method is documented in class Mage_Core_Controller_Varien_Action.

    * This will override:
    * 1. cms_module/page_controller/view_action to new_module/new_controller/new_action
    * 2. all other actions of cms_module/page_controller to faq_module/question_module

    It is very handy to precisely control the request rewrite to action level, but it can not route to a brand new controller. The following code will cause an error.

    <config>
    	<global>
    		<routers>
    			<cms>
    				<rewrite>
    					<question><!-- Error: cms module does not have question controller -->
    						<to>faq/question</to>
    						<override_actions>true</override_actions>
    						<actions>
    							<view_action><to>new_module/new_controller/new_action</view_action>
    						</actions>
    					</question>
    				</rewrite>
    			</cms>
    		</routers>
    	</global>
    </config>
    

  • Bxgy 0.1.2 release

    Bxgy 0.1.0 and Bxgy 0.1.1 packaged a layout file bxgy.xml to a wrong place. Bxgy 0.1.2 is a quick release not on schedule.

    Thanks to Carsten for pointing out the error. Sorry to John, Hamichok and Tsk for reporting the bug but I pointed them into wrong direction.

    Down BuyXGetY.tar.gz

  • What is web 2.0?

    Web 2.0 这个名词都出来好多年了。它还是新鲜名词的时候,我买了本书 Web 2.0 strategy guide,太深奥,扔在那里没看。还已有人嚷嚷着 web 3.0,我现在再来讨论“什么是 Web 2.0”似乎有点过时。

    迟了这么多年谈这个,跟我不是搞理论的有关。我倒不是说理论不重要,恰恰相反,理论很重要。我总结不出理论,只能关心我要怎么做才能 web 2.0。当然了,名词也不重要,2.0、3.0 当然就更不重要了,就说怎么做一个好网站吧。

    话题的起因是今天看到一个论坛帖:几月几日某地到某地回程空车,找想搭车的。那个论坛纯属杂谈,突然冒出这个让我有点想笑,转念一想其实没什么好笑的——我22号要去 Heathrow 接老婆,也可以找搭车出程的。但我不屑于在那论坛上发帖,一是不看好那坛的人气,二是都 web 2.0 了,肯定有更好的办法。于是调查了一下,果然有,叫 liftshare。

    唉,我怎么早先没想到呢?几年的独自上下班本来也可以 share 的嘛。唉,这年头只有想不到,没有做不到的。唉,题外话。

    玩了一下 liftshare,感觉还不错。只是它在路线、时间的匹配上不是那么智能,毕竟 liftshare 的算法不是 IBM Watson,我提醒自己。liftshare 到底干了什么呢?它的卖点就是提供一种匹配互补行程的功能,网站不做任何内容,内容是行程,而行程都是用户提供的。

    联想到 YouTube,网站也不做内容,内容是 video,而 video 都是用户上传的。而且,不上传 video 的用户也可以参与做一些既是内容又不是内容、半内容半功能的东西,比如说 playlist。YouTube 有成千上百的有关 jeopardy Watson 的 video,良莠不齐,我看了 Watson 的三天比赛 6 段 video,是不同的人上传的 。我留意了一下,还没有一个人完整上传过这 6 段视频。所以我把它们组织成一个 playlist,方便我介绍给朋友们看。YouTube 在其中干了什么?要说它什么都没干也可以,因为 video 不是它的,playlist 也不是它的,要说它什么都干也可以,因为没有它用户什么也干不了。这就是 web 2.0。

    联想到 SEO,“Content is the King” 被奉为经典,做了内容还不够,还要做原创内容,搞得象我这样的人疲于奔命。其实搜索引擎鼓吹内容的重要性是带有很强的功利性,因为它不做内容,再没人做内容的话,它还靠什么吃饭啊。搜索引擎就像我排 playlist,排得好就有人看,排得不好就没人看,但归根结底要有内容可排,这就是 web 2.0。

    Ecommerce 网站目前沦落为内容网站,内容就是产品。内容网站和搜索引擎之间的关系就好比作家和评论家,理论上家家是平等的,事实上平均水平的评论家比平均水平的作家更吃香。在内容网站和搜索引擎的博弈中,通常也是搜索引擎占主导地位,搞得内容网站整天揣摩搜索引擎的心思。例外也有,除非 ecommerce 网站卖一个全球独家产品,还要是热门产品,这下轮到搜索引擎揣摩了。但这种情况太少了。

    换位思考一下,同是网站,凭什么 ecommerce 网站就是作家,搜索引擎就是评论家?凭的是 web 2.0?可 ecommerce 网站毕竟还是要卖产品的,内容不能不做,那就考虑一下兼做 web 2.0。产品比较单一怎么办?比如外卖店就几个炒菜怎么做 web 2.0(最近在外卖店搭伙,想到的就是炒菜了)?

    我天方夜谭了一下炒菜 2.0 的思路:

    让吃客公布 eatlist,让他们介绍 eatlist 推荐场合,比如情人节、工作日赶场,让别的吃客可以 add eatlist to cart,评选本周/本月/本年最受欢迎 eatlist,奖励 eatlist 原创作者 Android 3.0 手机一部,让他明年用手机点餐。