
<?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>刘继宏&#124;Felix blog&#039;s &#187; 工作</title>
	<atom:link href="http://www.liujihong.com/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.liujihong.com</link>
	<description>爱的最高境界是做爱,SEO的最高境界是不做SEO</description>
	<lastBuildDate>Thu, 17 May 2012 05:19:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>wordpress重复文章删除</title>
		<link>http://www.liujihong.com/201205281.html</link>
		<comments>http://www.liujihong.com/201205281.html#comments</comments>
		<pubDate>Wed, 16 May 2012 16:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作]]></category>

		<guid isPermaLink="false">http://www.liujihong.com/?p=281</guid>
		<description><![CDATA[找到这么一句SQL，挺管用的，分享下，仅此而已。 create table my_tmp as select min(ID) as col1 from wp_posts group by post_title; delete from wp_posts where ID not in (select col1 from my_tmp); drop table my_tmp; 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; 刘继宏&#124;Felix blog&#039;s转载请注明转自《wordpress重复文章删除》]]></description>
		<wfw:commentRss>http://www.liujihong.com/201205281.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux服务器大小写问题（Apache URL大小写敏感的问题）</title>
		<link>http://www.liujihong.com/20120382.html</link>
		<comments>http://www.liujihong.com/20120382.html#comments</comments>
		<pubDate>Wed, 28 Mar 2012 07:31:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作]]></category>
		<category><![CDATA[网站建设]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[URL大小写]]></category>

		<guid isPermaLink="false">http://www.liujihong.com/?p=82</guid>
		<description><![CDATA[Linux操作系统Apache服务器，Web目录采用大写+小写方式，但是Linux系统对Url的大小写是有区分的，例如abc.com/aaa可以正常访问，但是abc.com/AAA则无法正常访问，这样就导致用户手动敲URL的时候有出错的几率。（有的用户敲大写，有的用户敲小写，还有的用户敲大写+小写，这样就会影响用户正常浏览） 本人收集了三种解决的方法： 1.利用.htaccess重写：'nocase&#124;NC' (忽略大小写 no case)，它使Pattern忽略大小写，即, 在Pattern与当前URL匹配时，'A-Z' 和'a-z'没有区别。 目前这种方法是我测试下来最简单也是最实用的一种方法。只要在.htaccess原始URL后面加上[NC]就OK了。 2.加载mod_speling模块，启动CheckSpelling可以解决这个问题，但启动了CheckSpelling会降低Apache的执行效率，所以建议不要在在服务器上这样设置。（具体请自行百度下） 3.把代码写进404页面（404.php），然后服务器会把请求的URL全部转换成小写，转换后能找到就跳到新页面，仍旧找不到就返回首页。 /** * @file nofound.php * @version 1.0 * @author hyperjiang * @date 2007-07-11 * @brief Try to redirect to correct url. */ $url = @$_SERVER[&#039;REQUEST_URI&#039;]; if (empty($url)) { header(”Location: /”); exit; } $newurl = strtolower($url); if ($url == $newurl) header(”Location: /”); else header(”Location: $newurl”); [...]]]></description>
		<wfw:commentRss>http://www.liujihong.com/20120382.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>修改ecshop网店系统订单编号规则</title>
		<link>http://www.liujihong.com/20120373.html</link>
		<comments>http://www.liujihong.com/20120373.html#comments</comments>
		<pubDate>Wed, 28 Mar 2012 06:24:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作]]></category>
		<category><![CDATA[电子商务]]></category>
		<category><![CDATA[网站建设]]></category>
		<category><![CDATA[ecshop]]></category>

		<guid isPermaLink="false">http://www.liujihong.com/?p=73</guid>
		<description><![CDATA[ecshop网站系统是一个很好用的免费开源网店程序，用ecshop开网店的朋友很多，网店竞争对手也不少，为了防止熟悉ecshop的网店店主根据订单号更细出你网店的商业秘密，今天鲜志分享一个修改ecshop订单编号规则的方法。 修改ecshop订单编号规则: includes/lib_order.php 818行左右 修改函数get_order_sn里面的规则. return date('Ymd') . str_pad(mt_rand(1, 99999), 5, '0', STR_PAD_LEFT); //显示为20091221+随机5个数字 我的改为: return 'SK'.date('Y') . str_pad(mt_rand(1, 9999999), 7, '0', STR_PAD_LEFT); //显示为SK2009+随机7个数字 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; 刘继宏&#124;Felix blog&#039;s转载请注明转自《修改ecshop网店系统订单编号规则》]]></description>
		<wfw:commentRss>http://www.liujihong.com/20120373.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>说的很有道理（转）</title>
		<link>http://www.liujihong.com/20111237.html</link>
		<comments>http://www.liujihong.com/20111237.html#comments</comments>
		<pubDate>Mon, 05 Dec 2011 14:25:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作]]></category>

		<guid isPermaLink="false">http://www.liujihong.com/?p=37</guid>
		<description><![CDATA[15岁开始尝试创业！（失败） 18岁留学时期创业！（失败） 19岁接着再次创业！（失败） 21岁回国重新创业！（失败） 22岁加入创新工场，原因：让我感觉我还是在创业！ 23岁，全心做好点名时间！ 我觉得，想创业，就是你想用一个真诚的心去帮助别人的同时，来帮助自己！ 仅仅为了利，仅仅为了名，仅仅因为不想打工，或者就想当老板，这些都不是你创业的理由！ 首先你是想创造一些能真正能帮助别人，帮助社会，甚至是改变世界的服务，产品，平台，或者任何东西，有时候也是因为你自己对一些事情的抱怨和不爽（也就是需求）！同时来实现你自己想要的财富，尊严，自由，或者任何你想要的东西（必须的回报）！ 我不认为有完全无私或者完全自私的人适合创业！你是真诚的想给这个社会一些好的东西（社会对你的肯定会给你动力走下去），同时你也是真实地强烈地想获得你渴望的那些东西（你的欲望会让你更有冲动去开始，去坚持）！两者必须都很强烈！ 如果你是这种人，那么就创业吧！ 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; 刘继宏&#124;Felix blog&#039;s转载请注明转自《说的很有道理（转）》]]></description>
		<wfw:commentRss>http://www.liujihong.com/20111237.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>创业者们你们是如何管理财务问题的？</title>
		<link>http://www.liujihong.com/20111234.html</link>
		<comments>http://www.liujihong.com/20111234.html#comments</comments>
		<pubDate>Mon, 05 Dec 2011 14:09:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作]]></category>

		<guid isPermaLink="false">http://www.liujihong.com/?p=34</guid>
		<description><![CDATA[注册阶段： １、注册公司：找专门代办公司注册的，时间较短。工商和税务都是代办的。 ２、注册验资：没有用注册公司的资金，基本上跑了４、５趟银行跑下来了。 ３、银行基本户：自己办，跑了３趟。 初期运营阶段： ４、日常例行性支出：　由行政统一整理票据（每个月大约会花１天时间），交给兼职财务做帐。 ５、日常小额支付：　设一个箱子，产生公司费用之后，由成员垫付，同时填一张付款申请单，并粘发票上去扔进箱子里。每周四行政固定把箱子里的单子收走。次周周二把钱付给垫付的人。 ６、工资发放：　通过银行划账。 ７、社保：　通过网银转账。 ８、大额资金支付：　通过网银支付，由行政在网银上提交汇款项目，创业者做最后审核。 ９、账务：　由兼职的财务来做，然后自己核对，像损益表多看几次，大部分内容都能明白了。 １０、报税：　由财务代理报税。 １１、收入：　在网银上直接查看。 １２、开发票：　由行政开发票。 注： A.行政还没招到之前，是由我们的创始人代理行政的工作。 摘自：http://www.zhihu.com/question/19632603 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; 刘继宏&#124;Felix blog&#039;s转载请注明转自《创业者们你们是如何管理财务问题的？》]]></description>
		<wfw:commentRss>http://www.liujihong.com/20111234.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>年轻人的舞台</title>
		<link>http://www.liujihong.com/20111226.html</link>
		<comments>http://www.liujihong.com/20111226.html#comments</comments>
		<pubDate>Mon, 05 Dec 2011 11:48:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作]]></category>

		<guid isPermaLink="false">http://www.liujihong.com/?p=26</guid>
		<description><![CDATA[「人才篇」 我们给成员每个人一个清晰的愿景，并且一直在努力营造一个更好的氛围 1、能吃饱饭。 2、做喜欢做的工作。 3、营造平等的氛围。 「团队篇」 我们保持一支小而精干的团队，力图每个成员都能很好沟通 1、如果没有确实需要，我们不会增加岗位。 2、能够机器完成的事情，我们尽量交给机器完成。 3、有试错的心态，并能不断总结。 4、多数情况下，成员面对面交流。用最短时间，达到最好的沟通效果。 「周报篇」 我们以周为单位进行管理，踏实做好每一周 1、通过每个成员周报，了解该成员上周做了什么、计划做什么、计划做的事情的进展情况。 2、明晰成员上周碰到的问题，确定问题的解决方案并执行。 3、每个成员写下周的工作计划，明确下周要做什么。 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; 刘继宏&#124;Felix blog&#039;s转载请注明转自《年轻人的舞台》]]></description>
		<wfw:commentRss>http://www.liujihong.com/20111226.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>第一篇博文</title>
		<link>http://www.liujihong.com/20111217.html</link>
		<comments>http://www.liujihong.com/20111217.html#comments</comments>
		<pubDate>Sun, 04 Dec 2011 04:31:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作]]></category>

		<guid isPermaLink="false">http://www.liujihong.com/?p=17</guid>
		<description><![CDATA[博客准备做好久了，但是由于时间关系，一直没完善起来，难得一个周末，稍作修改，就算上线把，呵呵。 也感谢盛大云提供的邀请码，让我的博客有个安身之地. 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; 刘继宏&#124;Felix blog&#039;s转载请注明转自《第一篇博文》]]></description>
		<wfw:commentRss>http://www.liujihong.com/20111217.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

