<?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://laomao.info/teg/zen-cart/feed" rel="self" type="application/rss+xml" />
	<link>http://laomao.info</link>
	<description>Zen Cart,Magento&#124;外贸建站技术支持-http://laomao.info</description>
	<lastBuildDate>Fri, 02 Sep 2011 07:33:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>使用 .htaccess 提高 WordPress 的安全性和可用性</title>
		<link>http://laomao.info/archives/1416.html</link>
		<comments>http://laomao.info/archives/1416.html#comments</comments>
		<pubDate>Sat, 28 Aug 2010 11:15:39 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1416</guid>
		<description><![CDATA[1. 保护 .htaccess 自身的安全性阻止用户通过读取和写入 .htaceess 来更改服务器安全性的设置。 &#60;files .htaccess&#62; order allow,deny deny from all &#60;/files&#62; 2. 隐藏服务器的数字签名隐藏服务器的数字签名之后，入侵者将很难有机会找到安全漏洞，因为他们不知道背后的服务器是什么。 ServerSignature Off 3. 限制上传文件的大小这个能够帮助阻止 DoS 攻击（用户通过上传巨大的文件来冲垮服务器）并且能够节约带宽。 LimitRequestBody 10240000 # limit file uploads to 10mb 4. 停止 mod_security 过滤器这是一个可选的设置并且要小心处理。这些指令告诉服务器不要使用 mod_security 过滤器，因为 mod_security 过滤器不允许用户发表含有这些单词 “curl”，“lynx” 或者 “wget” 等等单词的文章。这个看起来有点琐碎，但是这个让一些站点头痛，因为这些单词几乎那些站点每天都会用到。 SecFilterInheritance Off 5. 保护 wp-config.php 文件我们可以通过 .htaccess 文件阻止用户读取和写入 WordPress 的配置文件。这个指令假设 WordPress 是安装在根目录。 &#60;files [...]]]></description>
		<wfw:commentRss>http://laomao.info/archives/1416.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>zencart中wordpress文章调用的时候出现的错误解决方法</title>
		<link>http://laomao.info/archives/1404.html</link>
		<comments>http://laomao.info/archives/1404.html#comments</comments>
		<pubDate>Thu, 19 Aug 2010 09:40:35 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WordPress文章调用]]></category>
		<category><![CDATA[zen cart 文章调用]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1404</guid>
		<description><![CDATA[如果你的网站曾经安装过tabbed_products这个插件的话，你再使用调用可能会出现如下的错误。之所以会出现这个错误，是那个插件中有一句话定义了wordpress的物理路径，如果你已经出现了如下的错误， Warning: require_once(/Warning: require_once(/var/www/zc138/wordpress//wp-includes/classes.php)var/www/zc138/wordpress//wp-includes/classes.php) 就要修改一下那个文件了，路径为： /public_html/includes/functions/extra_functions/class.rlwp.php 打开class.rlwp.php这个文件，找到14行， Line #14 : define (&#8216;ABSPATH&#8217;,'/var/www/zc138/wordpress/&#8217;); // abs-path to wp 修改成你的博客安装路径。。 我的是如下的样子的， define (&#8216;ABSPATH&#8217;,'/home/*****/public_html/blog/&#8217;);   // abs-path to wp 仅供参考！ 关于zen cart中WordPress的调用方法可以参考如下文章：http://laomao.info/?s=WordPress  ]]></description>
		<wfw:commentRss>http://laomao.info/archives/1404.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zen cart 一直显示二级分类的解决方法</title>
		<link>http://laomao.info/archives/1367.html</link>
		<comments>http://laomao.info/archives/1367.html#comments</comments>
		<pubDate>Mon, 02 Aug 2010 05:21:29 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1367</guid>
		<description><![CDATA[一直说是有插件可以解决这个问题，但是实际安装的时候 插件是会出现一点问题的 现在不用插件了，只修改一下文件，就可以解决这个问题了， 路径为/includes/classes，名字为category_tree.php 下面我提供一下文件，你直接上传覆盖就行了，不过为了避免不必要的麻烦，你还是先备份一下你原来的文件， /laomao.info/wp-content/uploads 点击这里下载：zen cart 一直显示二级分类的解决方法category_tree]]></description>
		<wfw:commentRss>http://laomao.info/archives/1367.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>zencart如何批量删除商品，分类，属性，详细描述？</title>
		<link>http://laomao.info/archives/1319.html</link>
		<comments>http://laomao.info/archives/1319.html#comments</comments>
		<pubDate>Thu, 29 Jul 2010 03:04:51 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[商品分类]]></category>
		<category><![CDATA[商品属性]]></category>
		<category><![CDATA[批量删除]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1319</guid>
		<description><![CDATA[zencart快速批量删除商品，分类，属性，详细描述，要彻底清空数据，最好还是重新执行一次安装脚本 zc_install/index.php ，简单而彻底。 如果要手动删除部分数据，参考下面的脚本。 # &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; # 功能：清空Zen Cart中文版1.3.x的演示数据 # 提醒：请做好备份 !!! # 使用：管理页面 -&#62; 工具 -&#62; 执行SQL脚本 # &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; 代码: # 清空商品分类、商品、属性 TRUNCATE TABLE categories; TRUNCATE TABLE categories_description; # 清空商品以及属性 TRUNCATE TABLE media_clips; TRUNCATE TABLE media_manager; TRUNCATE TABLE media_to_products; TRUNCATE TABLE media_types; TRUNCATE TABLE music_genre; TRUNCATE TABLE product_music_extra; TRUNCATE TABLE product_types_to_category; TRUNCATE TABLE products; [...]]]></description>
		<wfw:commentRss>http://laomao.info/archives/1319.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 本地调试环境简易安装配置-phpnow</title>
		<link>http://laomao.info/archives/1315.html</link>
		<comments>http://laomao.info/archives/1315.html#comments</comments>
		<pubDate>Thu, 08 Jul 2010 01:41:57 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpnow]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1315</guid>
		<description><![CDATA[最近总是有朋友问我，想在本地安装测试zen-cart,该怎么做？ 一开始会很耐心的给他们说，后来见老是有人问，索性就写在老猫博客里，分享一下， 我本人比较推荐PHPnow，官网地址：http://phpnow.org/ 详细介绍如下：摘抄自官网 Win32 下绿色免费的 Apache + PHP + MySQL 环境套件包。 简易安装、快速搭建支持虚拟主机的 PHP 环境。附带 PnCp.cmd 控制面板，帮助你快速配置你的套件，使用非常方便。 PHPnow 是绿色的，解压后执行 Setup.cmd 初始化，即可得到一个 PHP + MySQL 环境。 然后就可以直接安装 Discuz!, PHPWind, DeDe, WordPress 等程序。 支持虚拟主机：便捷的虚拟主机管理 配置文件备份：放心地去尝试修改配置文件，乱了就还原配置 虚拟主机代理：可与 IIS 共存 (不同端口，泛解析代理) 插件支持：ASP.NET &#124; JSP(寻找最佳解决) 有必要掌握手动配置 PHP ，PHPnow 只是为你减少重复的动作。请尝试自己搭建 PHP 环境，参考参考相关权威文档。 一步到位的安装方式，省却了很多麻烦，对于想快速搭建本地环境，出奇制胜。 如果你想全部动手解决所有的安装过程的话，可以参考如下教程，测试学习 php环境配置 php5 MySQL5 apache2 phpmyadmin ZendOptimizer安装与配置 http://www.phpfans.net/bbs/viewthread.php?tid=331]]></description>
		<wfw:commentRss>http://laomao.info/archives/1315.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zencart lightinthebox 后台控制popular searches功能</title>
		<link>http://laomao.info/archives/1266.html</link>
		<comments>http://laomao.info/archives/1266.html#comments</comments>
		<pubDate>Thu, 10 Jun 2010 10:25:57 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[lightinhtebox]]></category>
		<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[zencart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1266</guid>
		<description><![CDATA[zencart lightinthebox-popular searches- 今日修复了，可以在后台自行控制LB前台popular searches，显示的内容！ 避免以往还要去数据库修改！]]></description>
		<wfw:commentRss>http://laomao.info/archives/1266.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>zencart 如何设置根据日期加随机数产生订单号</title>
		<link>http://laomao.info/archives/1264.html</link>
		<comments>http://laomao.info/archives/1264.html#comments</comments>
		<pubDate>Wed, 09 Jun 2010 03:21:47 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[zen-cart]]></category>
		<category><![CDATA[zencart]]></category>
		<category><![CDATA[订单号]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1264</guid>
		<description><![CDATA[按时间加随机数产生订单includes\classes\order.php: 1、把orders字段中orders_id 的 Auto_increment 关闭，并把字段INT改为BIGINT（根据订单位数设置合理类型长度）； 2、把以下代码插入到order.php中; 查找：function create($zf_ot_modules, $zf_mode = 2) { global $db; 插入以下代码： ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ （方法一：）$t1 = date(&#8220;YmdGis&#8221;); //时间为年月日时分秒,去掉Gis为年月日，即：$t1=date(&#8220;Ymd&#8221;); srand ((float) microtime() * 10000000); $input = array (&#8220;1&#8243;, &#8220;2&#8243;, &#8220;3&#8243;, &#8220;4&#8243;, &#8220;5&#8243;, &#8220;6&#8243;, &#8220;7&#8243;, &#8220;8&#8243;, &#8220;9&#8243;, &#8220;0&#8243;); $rand_keys = array_rand ($input, 2); $l1 = $input; $l2 = $input; $r1 = rand(0,9); $ordernum = $t1.$l1.$l2.$r1;   [...]]]></description>
		<wfw:commentRss>http://laomao.info/archives/1264.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Lightinthebox模版快速修改中文教程</title>
		<link>http://laomao.info/archives/1254.html</link>
		<comments>http://laomao.info/archives/1254.html#comments</comments>
		<pubDate>Fri, 04 Jun 2010 02:24:53 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[LB模板]]></category>
		<category><![CDATA[lightinhtebox]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1254</guid>
		<description><![CDATA[前段时间市面上很火的&#8221;lightinthebox模版&#8221;&#8211;简称light模版。该模版具有很漂亮的外观界面，而且功能也是异常强大的，几乎含盖了zen cart网站程序的所有功能。可以说把zencart站的SEO发挥到了极智。如何将lightinthebox模版再次开发？这应该是很多zen cart人的梦想。但是理想是远大的，现实是残酷的，如何才能得到一套几乎无Bug的lightinthebox模版呢？而现在市面上很多个lightinthebox模版价格很低，有卖几百的，也有卖几千的？差别在哪，无非就是BUG的多少，以及插件的多少了。 下面主要介绍下Lighinthebox模版的修改方式。 一.  如何修改lightinthebox模版的LOGO 操作：  右键点击网站LOGO查看路径，不难看出替换 includes/templates/lightinthebox/images/logo.jpg  图片就可以搞定。 二. 如何修改lightinthebox模版的网站小图标？ 操作： 替换网站程序中的根目录下的  favicon.ico   文件，这个文件格式，可以去百度或者GOOGLE下，用免费的软件就可以做出来。 三. 如何修改lightinthebox模版的首页flash广告图片？ 操作：网站程序根目录下 /flash/promotion2.xml    这个里面，替换图片名称，以及连接图片的地址，就可以了！ 四. 如何修改lightinthebox模版首页的Featured Categories 操作： lightinthebox模版的后台分类里，添加分类时可以选择 Featured Categories 就可以展示到首页的这个栏目。 五. 如何修改lightinthebox模版首页的Best Deals 操作： best deals  的产品图片就是后台的分类管理里的 Specials 六. 如何修改lightinthebox模版首页的Free Shipping 操作：在上传产品的时候，可以选择free shipping 这个拦目，选择后保存，就显示在首页的free shipping 七. 如何修改lightinthebox模版首页的Shopping by Categories 操作： 上传产品分类，可以选择Shopping by Categories这个项目。然后商品分类的图片就展示出来了 八. 如何编辑lightinthebox模版的Why buy [...]]]></description>
		<wfw:commentRss>http://laomao.info/archives/1254.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>出售zencart模板</title>
		<link>http://laomao.info/archives/1249.html</link>
		<comments>http://laomao.info/archives/1249.html#comments</comments>
		<pubDate>Thu, 03 Jun 2010 03:00:45 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[zen cart templates]]></category>
		<category><![CDATA[zen cart 模板]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1249</guid>
		<description><![CDATA[// Zen cart templates http://laomao.info/index.php/demo-zencart-template一zencart模板的小问题也可以跟老猫交流一下，稍微麻烦点zen cart模板，老猫会有偿帮助]]></description>
		<wfw:commentRss>http://laomao.info/archives/1249.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>zencart seo 中文地址乱码</title>
		<link>http://laomao.info/archives/1230.html</link>
		<comments>http://laomao.info/archives/1230.html#comments</comments>
		<pubDate>Mon, 31 May 2010 04:41:16 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Zen cart]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1230</guid>
		<description><![CDATA[zencart使用的seo静态插件： Ultimate SEO URLs 在地址里有中文的时候出现如下乱码 http://127.0.0.1/æ¨¡æ¿å®è£-p-21.html 本 来应该是http://127.0.0.1/叽里呱啦-p-21.html 解决方法： 后台seo选项的w3c标准设为false 老猫博客 http://laomao.info]]></description>
		<wfw:commentRss>http://laomao.info/archives/1230.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

