<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>清水的百宝箱 &#187; zen-cart</title>
	<atom:link href="http://www.zouqingshui.net/headingto3/category/study/php/zen_cart/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zouqingshui.net</link>
	<description>专心做SEO博客，专业做外贸SEO网站开发，立足莆田致力研究SEO搜索引擎优化及网赚技巧</description>
	<lastBuildDate>Thu, 29 Dec 2011 05:12:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>zen-cart细节图紊乱解决方案</title>
		<link>http://www.zouqingshui.net/headingto3/zen-cart%e7%bb%86%e8%8a%82%e5%9b%be%e7%b4%8a%e4%b9%b1%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/</link>
		<comments>http://www.zouqingshui.net/headingto3/zen-cart%e7%bb%86%e8%8a%82%e5%9b%be%e7%b4%8a%e4%b9%b1%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 03:41:16 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[无风的飘逸]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2340</guid>
		<description><![CDATA[zen cart对产品细节图的识别可谓是非常先进。 它是根据主图，然后只要是图片名字以主图的名字开头的，或者放在以主图文件名（不包含扩展名）为名的文件夹里的图片都可以被识别为产品的细节图。 但是今天我碰到一个问题。 产品主图：   image1.jpg 产品细节图: image1_1.jpg  image1_2.jpg ..... 图片目录中还存在其它产品的主图和细节图： image2.jpg,    image10.jpg   image10_1.jpg   image11.jpg …… 结果程序把image10.jpg   image10_1.jpg   image11.jpg 等以image1开头的图片全部识别为产品图片的细节图。 解决方案： 修改细节图识别的那断代码。 打开includes/modules/ (或者 includes/modules/当前模板文件夹/)additional_images.php 找到 if(preg_match("/" . $products_image_base . "/i", $file) == 1) { 修改为： if(preg_match("/" . $products_image_base . "_/i", $file) == 1) { 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: zen-cart细节图紊乱解决方案 相关主题2011-08-01 -- [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/zen-cart%e7%bb%86%e8%8a%82%e5%9b%be%e7%b4%8a%e4%b9%b1%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>【转载】解决zen cart目录链接为-c-.html的问题</title>
		<link>http://www.zouqingshui.net/headingto3/%e3%80%90%e8%bd%ac%e8%bd%bd%e3%80%91%e8%a7%a3%e5%86%b3zen-cart%e7%9b%ae%e5%bd%95%e9%93%be%e6%8e%a5%e4%b8%ba-c-html%e7%9a%84%e9%97%ae%e9%a2%98/</link>
		<comments>http://www.zouqingshui.net/headingto3/%e3%80%90%e8%bd%ac%e8%bd%bd%e3%80%91%e8%a7%a3%e5%86%b3zen-cart%e7%9b%ae%e5%bd%95%e9%93%be%e6%8e%a5%e4%b8%ba-c-html%e7%9a%84%e9%97%ae%e9%a2%98/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 12:21:43 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[zen cart]]></category>
		<category><![CDATA[外贸SEO]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2257</guid>
		<description><![CDATA[Posted by 老邓 on Wednesday, December 8, 2010 · Leave a Comment 在进行一些zen cart设置时发现产品页面(product_info)的category icon显示有两个问题，一是category name不显示，二是链接错误，形如：http://example.com/-c-.html (开启了SEO URLS后)。检查后台设置 admin -&#62; configuration -&#62; product info 是没有问题的，默认就已经打开，因此错误来源于代码问题。检查 includes/modules/category_icon_display.php 可以看到如下代码： $category_icon_display_name = zen_get_categories_name((int)$current_category_id); $category_icon_display_image = zen_get_categories_image((int)$current_category_id); 然而die($category_icon_display_name)出来的结果是空的。检查 zen_get_categories_name 函数没有问题，因此问题出在 $current_category_id 变量，果然，打印结果显示它是空的！经过搜索 $current_category_id 变量初始化于 includes/init_includes/init_category_path.php，检查代码可以看到： $cPath = zen_get_product_path($_GET['products_id']); 检查函数 zen_get_product_path 代码可以看到zen cart使用 master_categories_id 来查看产品的分类的，而数据库中 master_categories_id 全是 0 ！这时想到我们上产品基本都是使用 easy [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/%e3%80%90%e8%bd%ac%e8%bd%bd%e3%80%91%e8%a7%a3%e5%86%b3zen-cart%e7%9b%ae%e5%bd%95%e9%93%be%e6%8e%a5%e4%b8%ba-c-html%e7%9a%84%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zen cart的IPS支付模块出现Forbidden! Please contact with us</title>
		<link>http://www.zouqingshui.net/headingto3/zen-cart%e7%9a%84ips%e6%94%af%e4%bb%98%e6%a8%a1%e5%9d%97%e5%87%ba%e7%8e%b0forbidden-please-contact-with-us/</link>
		<comments>http://www.zouqingshui.net/headingto3/zen-cart%e7%9a%84ips%e6%94%af%e4%bb%98%e6%a8%a1%e5%9d%97%e5%87%ba%e7%8e%b0forbidden-please-contact-with-us/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 08:59:28 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[ips]]></category>
		<category><![CDATA[zen cart]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2239</guid>
		<description><![CDATA[IPS付款的时候，出现Forbidden! Please contact with us提示，显示为alert警告框， 经过后台查询该代码，是IPS接口提出的警告！ 查看代码，发现后台没有添加CNY货币代码。 那么这就是问题了 解决方法：在后台添加CNY货币代码(currencies) 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: zen cart的IPS支付模块出现Forbidden! Please contact with us 相关主题2011-02-23 -- IPS调查单总结及处理方法 (0)2011-01-23 -- 【转载】解决zen cart目录链接为-c-.html的问题 (0)2010-12-02 -- IPS对交易按网站分类的公式 (0)2010-11-24 -- Email Error: SMTP Error: Could not connect to SMTP host. (0)]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/zen-cart%e7%9a%84ips%e6%94%af%e4%bb%98%e6%a8%a1%e5%9d%97%e5%87%ba%e7%8e%b0forbidden-please-contact-with-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Error: SMTP Error: Could not connect to SMTP host.</title>
		<link>http://www.zouqingshui.net/headingto3/email-error-smtp-error-could-not-connect-to-smtp-host/</link>
		<comments>http://www.zouqingshui.net/headingto3/email-error-smtp-error-could-not-connect-to-smtp-host/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 18:37:13 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[email error]]></category>
		<category><![CDATA[zen cart]]></category>
		<category><![CDATA[外贸SEO]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2191</guid>
		<description><![CDATA[zen cart常见错误之 email error: 错误提示：Email Error: SMTP Error: Could not connect to SMTP host. 一般在客户注册的时候，或者客户使用contact us联系我们的时候，此错误影响下单。 错误等级：五星 如果不及时修改，就算网站排名再好，也是没有单来的。 解决办法： 1、检查后台configuration-&#62; e-mail, 看邮箱的配置是否正确。主要就是密码，邮件服务器，及发送的方式。常见的邮件发送发式有php, smtp, smtpauth； 2、 为了防止下次邮箱不能用的时候不报这个错误导致客户不能继续下单，我们应该开启邮件的友好提示。 即如果是英文版的后台为"email friendly error"如果是中文版则是“电子邮件出错信息", 把它设置为true; 正常情况下（我用的是1.3.8a)它在后台邮件设置的第六项； 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: Email Error: SMTP Error: Could not connect to SMTP host. 相关主题2011-01-23 -- 【转载】解决zen cart目录链接为-c-.html的问题 (0)2010-12-14 -- zen cart的IPS支付模块出现Forbidden! Please contact with [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/email-error-smtp-error-could-not-connect-to-smtp-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zen cart的PP跳转终于测试成功！</title>
		<link>http://www.zouqingshui.net/headingto3/zen-cart%e7%9a%84pp%e8%b7%b3%e8%bd%ac%e7%bb%88%e4%ba%8e%e6%b5%8b%e8%af%95%e6%88%90%e5%8a%9f%ef%bc%81/</link>
		<comments>http://www.zouqingshui.net/headingto3/zen-cart%e7%9a%84pp%e8%b7%b3%e8%bd%ac%e7%bb%88%e4%ba%8e%e6%b5%8b%e8%af%95%e6%88%90%e5%8a%9f%ef%bc%81/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 08:05:29 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2187</guid>
		<description><![CDATA[正在用某个版本的PayPal跳转，发现后台一直没有生成订单。 经过两天的苦战（我有点菜，一开始就压根没有想到用最快的办法测试），终于把错误逮出来了！ 原来zen cart的ipn有对网站后台设置的pp邮箱地址和实际收款人的地址进行核对，如果正确无误，后台就会生成订单 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: zen cart的PP跳转终于测试成功！ 意犹未尽？到处逛逛吧！:)2009-07-08 -- 【原创】Zen-Cart滚动显示news(news_scroll_box) (2)2011-01-23 -- 【转载】解决zen cart目录链接为-c-.html的问题 (0)2009-07-10 -- 〖转〗WordPress插件开发全攻略(1) (0)2010-04-20 -- 各大主机商的name server (0)2009-08-08 -- 【工作日记】清除zen-cart中的冗余产品信息 (2)2009-09-02 -- 如何在网易博客中添加友情链接 (0)2009-07-25 -- 【转】SEO优化十问十答 (0)2009-10-22 -- lightinthebox安装方法 (6)2010-11-26 -- 抗DDOS服务器 (1)2009-02-17 -- pear 安装工具包 (0)]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/zen-cart%e7%9a%84pp%e8%b7%b3%e8%bd%ac%e7%bb%88%e4%ba%8e%e6%b5%8b%e8%af%95%e6%88%90%e5%8a%9f%ef%bc%81/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>LINUX环境下PHP后期安装DOM模块</title>
		<link>http://www.zouqingshui.net/headingto3/linux%e7%8e%af%e5%a2%83%e4%b8%8bphp%e5%90%8e%e6%9c%9f%e5%ae%89%e8%a3%85dom%e6%a8%a1%e5%9d%97/</link>
		<comments>http://www.zouqingshui.net/headingto3/linux%e7%8e%af%e5%a2%83%e4%b8%8bphp%e5%90%8e%e6%9c%9f%e5%ae%89%e8%a3%85dom%e6%a8%a1%e5%9d%97/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 03:20:55 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[Linux 技术]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2175</guid>
		<description><![CDATA[最近在安装某zen cart插件的时候，提示需要DOM模块的支持。 本来DOM模块在编译PHP的时候，默认被加上的，但是我用的是webmin整合的php居然给我禁用掉了。得补上。 于是网上找了教材，解决了。 解决方法很简单，只有一行命令： yum -y install php-dom 关联的问题： 1. webmin如何为PHP增加DOM模块； 2. virtualmin 如何为PHP增加DOM模块； 3. PHP后期安装DOM模块； 4. zen cart网站添加DOM模块支持 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: LINUX环境下PHP后期安装DOM模块 意犹未尽？到处逛逛吧！:)2009-07-26 -- 〖转〗Excel心得之——巧妙取消excel中的超级链接 (0)2009-04-24 -- 命令行设置IP (0)2009-08-28 -- 纪念一下，关键字排名有所上浮 (2)2009-08-06 -- HTML标签select 巧妙设置只读 (1)2009-08-20 -- 【开心一笑】如何体现出自己有钱(仅供娱乐) (0)2009-09-12 -- 人生在得到与失去间成长 (1)2009-08-23 -- 上帝最严厉的惩罚 (0)2009-06-30 -- 『开心一笑』打着灯笼都找不着 (0)2010-10-30 -- 如何控制html标签li的样式，比如删除前面的点 (0)2010-09-07 -- Linux系统使用find和sed命令批量替换文件内容 [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/linux%e7%8e%af%e5%a2%83%e4%b8%8bphp%e5%90%8e%e6%9c%9f%e5%ae%89%e8%a3%85dom%e6%a8%a1%e5%9d%97/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[zen cart] 用户无法登录提示There was a security error when trying to login</title>
		<link>http://www.zouqingshui.net/headingto3/zen-cart-there-was-a-security-error-when-trying-to-login/</link>
		<comments>http://www.zouqingshui.net/headingto3/zen-cart-there-was-a-security-error-when-trying-to-login/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 18:07:56 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2100</guid>
		<description><![CDATA[这几天修改zen cart测试了很多东西，结果发现我的网站坏了，具体情况是这样的： 当我想注册一个新用户的时候，发现表单提交之后重新回到注册页面，而当我想登录的时候，表单提交之后则提示There was a security error when trying to login. 网上查了，这个主要原因是一个叫做securekey 的较验码较验失败，但是我装的都是最新版的zen cart。不可能做有这个问题（经过测试，确实不是这个原因）。 后来发现是我设置的重写出了问题， 我写的重写是这样的： RewriteRule ^index.php$ / [R=301, L] 去掉就可以了 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: [zen cart] 用户无法登录提示There was a security error when trying to login 意犹未尽？到处逛逛吧！:)2009-11-13 -- mysqldump: Got error: 1556: You can’t use locks with log tables. when using LOCK TABLES (0)2009-06-15 -- [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/zen-cart-there-was-a-security-error-when-trying-to-login/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>安装 news and archive manager可能导致首页无法显示</title>
		<link>http://www.zouqingshui.net/headingto3/zen-cart-news-and-archive-manager-plugs-may-course-some-error/</link>
		<comments>http://www.zouqingshui.net/headingto3/zen-cart-news-and-archive-manager-plugs-may-course-some-error/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 08:07:38 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2081</guid>
		<description><![CDATA[据清水最新观察显示，安装 news and archive manager可能导致首页无法显示。 请广大zen cart使用者朋友们注意啦，安装news and archive manager这个插件时，一定要特别注意备份原网站。 如果你想减少麻烦，请备份includes\templates\template_default\templates\tpl_index_default.php 以待观察 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: 安装 news and archive manager可能导致首页无法显示 意犹未尽？到处逛逛吧！:)2009-10-21 -- 小马生病了，愿她早日康复 (2)2009-06-27 -- 美国流行巨星迈克尔•杰克逊去世 享年50岁（图） (0)2009-08-07 -- 【心情记事】淘宝——逃跑？ (0)2010-03-14 -- APMSERV 5.2.X 启动报错 (2)2010-11-26 -- 抗DDOS服务器 (1)2009-09-10 -- linux 实现多台ssh信任 执行命令的操作 (0)2009-10-14 -- 自杀式改版，准备中 (1)2010-11-29 -- 最简单的webmin安装教程 (3)2009-03-06 -- ADODB.Recordset 错误 &#8217;800a0cb3&#8242; (0)2009-07-10 [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/zen-cart-news-and-archive-manager-plugs-may-course-some-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[zen cart]Lightinthebox后台不能显示部分目录的产品，新建的目录正常</title>
		<link>http://www.zouqingshui.net/headingto3/zen-cart-could-not-show-categorys-content/</link>
		<comments>http://www.zouqingshui.net/headingto3/zen-cart-could-not-show-categorys-content/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 09:36:04 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[lightinthebox]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/?p=2049</guid>
		<description><![CDATA[问题１：zen cart安装后台权限管理模块（admin_auth)模块后，通过easypopulate导入的产品为什么不能在后台显示？ 问题２：Lightinthebox，通过easypopulate导入的产品为什么不能在后台显示？ 这两个问题的解决方法其实是一样的： 抱歉，只有对本文发表过评论才能阅读隐藏内容 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: [zen cart]Lightinthebox后台不能显示部分目录的产品，新建的目录正常 相关主题2010-04-03 -- 关于 news_articles_management_v2_110 新闻管理模块的首页调用 (0)2010-03-29 -- 【zen cart】在后台添加可以修改ＴＩＴＬＥ的补丁 (17)2010-03-19 -- zen cart的image handle2插件的弊端 (3)2010-03-19 -- zen cart解决image handle2插件对SEO的影响的一个方法 (2)2010-02-24 -- Linux 下的 Zen Cart 安全脚本 (5)2009-12-16 -- 关于zen cart网站系统的报错功能 (2)2009-12-07 -- producttags模块——来自lightinthebox (11)2009-12-01 -- Zen-cart后台 Session_start报错 (1)2009-11-28 -- zen cart RSS的缓存问题 (3)2009-10-31 -- 安装 [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/zen-cart-could-not-show-categorys-content/feed/</wfw:commentRss>
		<slash:comments>75</slash:comments>
		</item>
		<item>
		<title>robots.txt for zen cart</title>
		<link>http://www.zouqingshui.net/headingto3/robots-txt-for-zen-cart/</link>
		<comments>http://www.zouqingshui.net/headingto3/robots-txt-for-zen-cart/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:15:02 +0000</pubDate>
		<dc:creator>无风的飘逸</dc:creator>
				<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.zouqingshui.net/headingto3/robots-txt-for-zen-cart/</guid>
		<description><![CDATA[User-agent: * Disallow: /cache/ Disallow: /contrib/ Disallow: /docs/ Disallow: /extras/ Disallow: /htmlarea/ Disallow: /stats/ Disallow: /sitemap/ Disallow: /graphics/ Disallow: /login.html Disallow: /privacy.html Disallow: /conditions.html Disallow: /contact_us.html Disallow: /gv_faq.html Disallow: /discount_coupon.html Disallow: /unsubscribe.html Disallow: /shopping_cart.html Disallow: /ask_a_question.html Disallow: /popup_image_additional.html Disallow: /product_reviews_write.html Disallow: /tell_a_friend.html Disallow: /pages-popup_image.html? Disallow: /popup_image_additional.html? Disallow: /login.html User-agent: Googlebot-Image Disallow: / 原创文章，转载请注明： 转载自清水的百宝箱 本文链接地址: [...]]]></description>
		<wfw:commentRss>http://www.zouqingshui.net/headingto3/robots-txt-for-zen-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

