Magento Default System Configuration Values

piaoling  2011-07-05 10:49:29

Like this article? Frustrated by Magento? Then you’ll love Commerce Bug, the must have debugging extension for anyone using Magento. Whether you’re just starting out or you’re a seasoned pro, Commerce Bug will save you and your team hours everyday. Grab a copy and start working with Magento instead of against it. This is more of an addendum to my previous articles on the System Configuration system than an entirely new article. Go back and read up if anything’s over your head. When you create a new System Configuration path, Magento doesn’t store a default va......

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

newsLetter of Bysoft

piaoling  2011-07-04 10:06:19

http://newsletter.preprodbysoftchina.com/?page_id=1771 ......

类别 :  bysoft(1)  |  浏览(5040)  |  评论(0)

vimTutor 中文版

piaoling  2011-07-01 10:15:12

高级一些的编辑器,都会包含宏功能,vim当然不能缺少了,在vim中使用宏是非常方便的: :qx     开始记录宏,并将结果存入寄存器x q     退出记录模式 @x     播放记录在x寄存器中的宏命令 稍微解释一下,当在normal模式下输入:qx后,你对文本的所有编辑动作将会被记录下来,再次输入q即退出了记录模 式,然后输入@x对刚才记录下来的命令进行重复,此命令后可跟数字,表示要重复多少次,比如@x20,可以重复20次......

类别 :  ubuntu(21)  |  浏览(4917)  |  评论(0)

Zend Studio 快捷键表

piaoling  2011-06-30 17:05:55

注:本文省略“通用快捷键”描述,诸如:ctrl+N=新建,ctrl+O=打 开,ctrl+C=复制,ctrl+V,ctrl+X……等等几乎所有软件 都通用的一组快捷键,而着重介绍zde独有的快捷键,了解并灵活运用这些快捷键以后,一定能帮助您在实际的项目操作中更加游刃有余。   编辑功能 组合键 实现功能 适用条件 Ctrl+/ 单行注释。当前为php代码时,则在光标所在行添加双斜杠行注释,选择多行则每一行都添加双斜杠;而当代码为html时则在行前后添加<!-- ......

类别 :  默认(764)  |  浏览(4028)  |  评论(0)

magento -- 计划任务(cron job)在magento中的作用和使用教程

piaoling  2011-06-30 15:56:43

计划任务(cron job)是Magento系统中一个很有用甚至可以说必须使用的功能,而最近在网上跟人聊天发现很多Magento的使用者不知道这个功能或者知道却认为可有可无,我在这里建议各位Magento的使用者,把这个功能使用起来吧。 在之前关于Newsletter的那篇博文我有讲到,要使新闻 能按设定的时间自动发送,就必须设置好计划任务(cron job)。计划任务(cron job)简单的来说就是在系统中每隔一段时间来重复操作一件事,比如每隔多少时间清理日志,比如每天提交Sitemap给google等等......

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

PHP pear::mail_MIME 发送邮件,以及中文乱码问题

piaoling  2011-06-30 15:28:41

PHP pear::mail_MIME 发送邮件,以及中文乱码问题   <?php require_once('Mail.php'); require_once('Mail/mime.php'); $to = 'xxx@gmail.com'; //收信人 $headers['From'] = 'xxx@126.com'; //发信人 $subject = '测试中文';//标题 $headers['Subject'] = "=?UTF-8?B?".base64_encode($subject)."?="; //标题乱码 $mime = new Mail_mime; $html ='<html><body>测试中文邮件</body></html>'; $mime->setHTMLBody($html); //发送附件 $file ......

类别 :  PHP(78)  |  浏览(5339)  |  评论(0)

PEAR MAIL发送html邮件

piaoling  2011-06-30 15:25:54

PEAR MAIL发送html邮件   include('Mail.php'); include('Mail/mime.php'); $text = 'Text version of email'; $html = '<html><body>HTML version of email</body></html>'; $file = '/home/richard/example.php'; $crlf = "\n"; $hdrs = array(               'From'    => 'you@yourdomain.com', &nb......

类别 :  PHP(78)  |  浏览(4154)  |  评论(0)

magento blog

piaoling  2011-06-30 13:50:45

http://magento4u.wordpress.com/tag/class-override/ ......

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

Magento API / web service work

piaoling  2011-06-30 11:26:41

Magento has strong web service features. I can say Magento’s web service is one step ahead than others e-commerce. Magneto has soap, v2_soap(soap 2) and xmlrpc adapter facilities. Using magento web services you can synchronize customer, categories, products, orders etc data with existing stores. Here I am going to describe magento’s web service deals step by step. Setup API: At first create api user and api key from Magento’s admin. Follow below steps. 1. Create api user from admin->system->web services-> Users->Add New User->User Info. See picture. ......

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

33 超棒的 jQuery 教程【图文并茂】

piaoling  2011-06-30 10:19:44

在这篇文章中,我们为您收集了一些非常有用的,而且效果很好的 jQuery 实际开发教程。 1. 使用 jQuery 构建一个可滑动的产品幻灯展示 2. 使用 PHP、jQuery 和 CSS3 实现的相片展位 3. 使用 jQuery 创建很酷的动画菜单 4. 使用 Raphaël 实现的动画技巧 5. 对图片进行各种角度的旋转 6. 图片墙 7. 图片缩略图滑动展示 8. 支持缩略图的全屏图片展示 9. 移动方框中的内容 10. Sliding Stacked Images With JQuery......

类别 :  jQuery(9)  |  浏览(6241)  |  评论(0)
  • Page:50/147  1464 Blogs
    <<
    >>
    20088
    周日 周一 周二 周三 周四 周五 周六

    文章分类