<?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>老猫博客</title>
	<atom:link href="http://laomao.info/feed" rel="self" type="application/rss+xml" />
	<link>http://laomao.info</link>
	<description>Zen Cart,Magento&#124;外贸建站技术支持-http://laomao.info</description>
	<lastBuildDate>Mon, 06 Sep 2010 06:59:56 +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>上海的这帮租房黑中介和黑网站！</title>
		<link>http://laomao.info/archives/1419.html</link>
		<comments>http://laomao.info/archives/1419.html#comments</comments>
		<pubDate>Mon, 06 Sep 2010 06:59:55 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[口碑]]></category>
		<category><![CDATA[安家]]></category>
		<category><![CDATA[租房]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1419</guid>
		<description><![CDATA[外地人在上海，不免会遇到找房子的问题，有的时候为了省点中介费（这可是不小的一笔开销啊） 会在网上搜搜看，这个时候，一个很大的玩笑就会诞生了。这些个黑中介，要么充当个人发布房源，要么发布虚假房源，黑网站也成了他们的一个帮凶，一个房源的信息，应该可以花钱，推到前几名！ 以增加客户量， 一个黑中介的一个房源，往往，照片跟实际大相径庭，甚至虚假房源，他还窃喜着考验你的智商，房子刚刚出租出去！你才更新了一分钟的房源，就刚刚出租出去，你当我三岁小孩啊？ 点击个投诉虚假房源，尤其提一下这个安家网，anjia.com。什么烂网站，我发现唯一的一个好处就是联系电话，一下就打通了，传出来一个冷冰冰的我不确定是否女人的声音，不过反正不是男人 一问三不知到时令我很震惊，估计接到我这样的投诉电话，她已经习以为常了，如果不幸这个姑娘，看到了老猫的博客，看到了这个博文，请记住有个134的号在2010 09 06 14：33给你拨通了一个电话，给你叽歪了半天，你愣是啥也没跟我的那个人，就是我老猫， 我不是因为房租飞涨，而痛恨你！我是痛恨你所在的破网站，你作为你一个底层员工，跟你毛关系也没有，算了！ 你们那破网站还开了干嘛？这个时候一个灵感，我发现了，或许你们哪破网站，根本就不是服务我等小租客，打开你们的网站首页，发现到处都是充斥着买卖房屋和楼盘的！ 好吧，不过你们叫个安家网，实在是有点驴头不对马腚啊！ 最后建议大家，不要在网上找那些中介发布的房源了，如果找，就一定找个人，打电话过去，如果发现不是个人，就一定要投诉，虽然没用！但是也要让心里痛快一下！ 实在点的 还是去中介吧，至少不会让你那么大的落差！那些什么口碑网啊。什么租房网。都没一个好东西，真心的期望，有良心的人，能搞个真实性高点的租房网 或者国家你也出点更实际的政策，解决一下我们的租房问题啊，也戳戳这帮黑中介的脊梁骨，别让他们肆无忌惮！]]></description>
		<wfw:commentRss>http://laomao.info/archives/1419.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<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>1</slash:comments>
		</item>
		<item>
		<title>Can’t connect to local MySQL server through socket 解决办法</title>
		<link>http://laomao.info/archives/1412.html</link>
		<comments>http://laomao.info/archives/1412.html#comments</comments>
		<pubDate>Thu, 26 Aug 2010 03:22:56 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[kloxo]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[控制面板]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1412</guid>
		<description><![CDATA[Can’t connect to local MySQL server through socket 解决办法 今天在重装VPS的时候，遇到这样的一个问题 ，我自己不是搞技术，对于这样的问题求助谷歌或者百度，但是发现搜索之后，那些解决方法有点麻烦，后来干脆直接重装了， 但是重装的kloxo不是官方，是别人修改过的，至于有什么bug没，我就不清楚了，简单方便啊。 为了让linux vps用户更方便的安装kloxo面板，特别制作了一行命令的安装方法，安装Kloxo和中文语言包，只要1行命令： wget http://www.ctohome.com/linux-vps-pack/kloxo_with_chinese_language.sh;sh ./kloxo_with_chinese_language.sh; 直接复制以上的链接到你的ssh客户端里直接安装就行了，注意，安装前，重装一下你的VPS系统，还可以参考老猫的另外一个kloxo的教程贴 VPS Kloxo使用教程 http://laomao.info/archives/1279.html]]></description>
		<wfw:commentRss>http://laomao.info/archives/1412.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php在线解压缩工具faisun_unzip和phpzip</title>
		<link>http://laomao.info/archives/1410.html</link>
		<comments>http://laomao.info/archives/1410.html#comments</comments>
		<pubDate>Tue, 24 Aug 2010 03:28:34 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[phpzip]]></category>
		<category><![CDATA[php在线解压工具]]></category>
		<category><![CDATA[unzip]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1410</guid>
		<description><![CDATA[着重介绍faisun_unzip这款在线解压缩工具的具体使用方法。 faisun在线解压缩Zip文件程序详细说明： （本程序由 纯粹空间(http://www.softpure.com) 提供,作者：faisun(faisun@sina.com).） faisun在线解压缩工具压缩包里共有两个PHP文件，faisun_zip和faisun_unzip，分别是用来在线压缩和解压的。 faisun_zip在线压缩工具：选定要压缩的文件或目录（包含子目录），即可开始压缩。压缩的结果保留原来的目录结构。默认验证密码： 123456 ，使用前请更改该密码（在源文件的开始部分）。 faisun_unzip在线解压工具：把zip文件通过FTP上传到本文件相同的目录下，选择zip文件；或直接点击“浏览…”上传zip文件。解压的结果保留原来的目录结构。默认验证密码： 123456 ，使用前请更改该密码（在源文件的开始部分）。 优点： 1、支持流行的Zip格式。 2、使用方便：特别是自动探测服务器上的Zip文件，可通过下拉框选择。 3、消耗的内存小：有时用phpzip会遇到超过内存限制的情况，而faisun_unzip却没有这种情况。 4、界面简洁美观。 最后总结一下： phpZip功能比较强大，除了有在线解压和压缩功能外，还有快速删除大量文件的功能。虽然软件生成的压缩文件不是标准的压缩格式，不过压缩和解压速度都 很快。软件分客户端和服务器端。而faisun在线解压缩工具就是专门针对在线解压和压缩而成，可以生成流行的标准压缩格式Zip文件，操作都在服务器端 进行。简单、快速、方便、界面美观。傻瓜式操作！ 为方便快速上传安装，推荐使用在线解压工具：faisun_unzip； 为方便快速下载备份，推荐使用在线压缩工具：faisun_zip； 为方便快速删除大量文件，推荐使用phpZip中的rm.php。 下载地址：phpZip faisun在线解压缩工具]]></description>
		<wfw:commentRss>http://laomao.info/archives/1410.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress调用方法</title>
		<link>http://laomao.info/archives/1406.html</link>
		<comments>http://laomao.info/archives/1406.html#comments</comments>
		<pubDate>Thu, 19 Aug 2010 10:27:44 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[WordPress文章调用]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1406</guid>
		<description><![CDATA[WordPress得到所有的分类已 经是一个很简单的事件了，我们用”wp_list_categories()”函数就可以实现，但是如果我们要对每个分类进行操作就是一件很难的事件了。 查询了很多资料，终于找到了一个函数可以用来解决这个问题，”get_categories()”函数，它返回与查询参数匹配的类别objects 的数组，和”wp_list_categories()”函数非常相像。 好了，下面我们就用个例子来讲解一下这个函数。 下面的代码就是得到所有的分类，并显示出每个分类下最新的10篇文章： &#60;?php // 得到所有分类列表 $categories = get_categories();   // 循环所有分类 foreach ($categories as $cat) {   // 得到分类ID $catid = $cat-&#62;cat_ID;   // 得到分类下10篇最新文章 query_posts("showposts=10&#38;cat=$catid"); ?&#62;   &#60;!-- 输出分类标题及链接 --&#62; &#60;h4&#62;&#60;a href="&#60;?php echo get_category_link($catid);?&#62;" title="&#60;?php echo strip_tags(category_description($catid)); ?&#62;"&#62; &#60;?php single_cat_title(); ?&#62; &#60;/a&#62;&#60;/h4&#62;   &#60;!-- 输出10篇最新文章的标题及链接 --&#62; &#60;ul&#62; &#60;?php while (have_posts()) [...]]]></description>
		<wfw:commentRss>http://laomao.info/archives/1406.html/feed</wfw:commentRss>
		<slash:comments>1</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>htaccess设置301从老域名跳转到新域名</title>
		<link>http://laomao.info/archives/1397.html</link>
		<comments>http://laomao.info/archives/1397.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 14:24:08 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[域名跳转]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1397</guid>
		<description><![CDATA[换了好几次的域名了，需要把原来的域名和现在的不带WWW的域名转向到带WWW的域名上，网上看了下好多方法， dns的url转发，html的跳转，asp,jsp,php ，.htaccess,在此我用的是.htaccess， 所以只说明下.htaccess的多域名转向到新域名问题。头先做好了.htaccess，但是升级网站后.htaccess文件变成默认的了，所以说明做共享记录下来。 换域名，必须要做的就是使用301将老域名跳转到新域名，并且要持续一段时间，这样，老域名的收录，PR之类的网站信息，才会慢慢转移到域名！ 基本上用到的301转向使用方法: Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^laomao.info [NC] RewriteRule ^(.*)$ http://www.laomao.info/$1 [L,R=301] RewriteBase / 把以上代码加入到.htaccess“&#60;IfModule mod_rewrite.c&#62;”下面,如果有重复的话就给删除掉。 如果有多个域名我们这么写: Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^www.1122.cn [OR] RewriteCond %{HTTP_HOST} ^1122.cn [OR] RewriteCond %{HTTP_HOST} ^www.3344.com [OR] RewriteCond %{HTTP_HOST} ^3344.com [OR] RewriteCond %{HTTP_HOST} ^laomao.info$ [NC] RewriteRule ^(.*)$ http://www.laomao.info/$1 [L,R=301] RewriteBase / 记得把laomao.info和www.laomao.info等替换成自己的域名。 把以上内容保存到.htaccess即可。[OR]就是“或”，如果来路是laomao.info或www.3344.com等，那么就跳转到www.laomao.info，别忘了更改成你自己的地址！ [...]]]></description>
		<wfw:commentRss>http://laomao.info/archives/1397.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>magento安装插件进入后台管理该插件出现:Aaccess denied</title>
		<link>http://laomao.info/archives/1395.html</link>
		<comments>http://laomao.info/archives/1395.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 11:35:48 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Aaccess denied]]></category>
		<category><![CDATA[magento插件]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1395</guid>
		<description><![CDATA[magento安装插件进入后台管理该插件出现:Aaccess denied 活着， 点击插件名称，出来的页面是空白的， 遇到这样的情况，只要退出后台， 重新登陆，就恢复正常了]]></description>
		<wfw:commentRss>http://laomao.info/archives/1395.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>magento产品批量导出导入</title>
		<link>http://laomao.info/archives/1393.html</link>
		<comments>http://laomao.info/archives/1393.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 07:55:39 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[批量]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1393</guid>
		<description><![CDATA[如何使用&#8221;导入/导出&#8221;(import/export)工具在magento里添加、修改、删除产品 Magento的&#8221;导入/导出&#8221;(import/export)工具是个非常实用而且高效的功能。这篇文章就来介绍一下如何使用这个工具。 基本上你可以用&#8221;导入/导出&#8221;(import/export)工具来批量导入产品。比如使用这个功能一次添加100个产品会非常简单。你只需要创建 一个CSV或者XML文件，并且保证文件的各个字段和数据库相对应就可以了。如入你产品的各个信息，然后用导入工具导入数据库。 导出（Export）也非常简单。magento允许你导出全站的所有产品。如果你需要重装网站或者升级网站的话，导出数据是非常必要而且实用的功 能。 下面我们来讲一下如何在magento中导出（Export） 进入管理后台,到 System &#62; Import/Export &#62; Profiles. 这个名字一开始会造成一点困扰，但是等你意识到&#8221;导入/导出&#8221;(import/export)工具几乎可以导入导出任何东西的时候，就会理解这个菜单为什 么不仅仅是写“导入导出产品”了。 你想做的可能是把所有产品从本地的测试环境转移到真正的服务器上（反之亦然），很幸运，magento基本安装之后就有一个配置文件 （profile） 叫做 Export all products. 点编辑（Edit）并打开它. 有两点要特别注意，文件名Filename 和路径 Path, 因为这是告诉你magento存放.csv文件的位置. 如果 Excel (或者其他表单spreadsheet 编辑器)使用不同的定界符，你也可以在 数据格式（Data Format）里设置. 执行配置文件（ Run Profile）. 点击 “Run profile in pop-up” 按钮并等待. Magento 现在开始执行操作，这个时候你可以用FTP登陆到/var/export这个文件夹，你可以看到一个.CSV 文件出现了。等magento操作结束，就可以把这个文件下载到本地计算机。 如何导入Import 默认安装里也有个配置文件叫导入所有产品“Import all products”. 路径如下： System &#62; Import/Export &#62; Profiles. 点编辑“Edit”导入所有产品“Import [...]]]></description>
		<wfw:commentRss>http://laomao.info/archives/1393.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>初学magento 最好安装Magento演示数据</title>
		<link>http://laomao.info/archives/1388.html</link>
		<comments>http://laomao.info/archives/1388.html#comments</comments>
		<pubDate>Fri, 13 Aug 2010 07:06:02 +0000</pubDate>
		<dc:creator>老猫</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[演示数据]]></category>

		<guid isPermaLink="false">http://laomao.info/?p=1388</guid>
		<description><![CDATA[要想全面了解Magento，就需要一些演示数据来进行各种操作，自己输入太麻烦而且对入门来说，Magento还是有些复杂。所以官方提供的 Magento演示数据就非常有帮助了。 要安装演示数据首先就需要下载magento-sample-data-1.2.0.tar.bz2，这个压缩包里包含了一个media文件夹和一个 sql数据文件。media文件夹里就是样本数据的产品图片，Sql文件可以用任何数据库控制软件，比如phpMyAdmin导入数据库。 安装的顺序请一定要注意。 1. 第一步一定要新建一个全新的数据库，比如Sample； 2. 第二步建好数据库之后直接用phpmyadmin将SQL文件导入。 3. 第三步解压缩magento安装文件包，进行全新安装。 4. 装好之后样本数据也就直接生成了。然后把image文件夹里的图片放到magento的media文件夹下，所有产品的图片就都有了。 备用链接：http://www.magentocommerce.com/downloads/assets/1.1.2/magento-sample-data-1.1.2.zip]]></description>
		<wfw:commentRss>http://laomao.info/archives/1388.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
