<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[僕の世界]]></title> 
<link>http://www.bokunosekai.com/index.php</link> 
<description><![CDATA[It was the best of times, it was the worst of times.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[僕の世界]]></copyright>
<item>
<link>http://www.bokunosekai.com/post/141/</link>
<title><![CDATA[phpwind 防范注册机的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Tue, 06 Jan 2009 19:52:18 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/141/</guid> 
<description>
<![CDATA[ 
	以phpwind 6.0为例<br/>1、随机32位MD5注册码<br/>这个是网上看到的 修正了一下错误 不过思路并不是很好 理论上说不难突破<br/>修改register.php<br/>找到<br/><div class="code">@include_once(D_P.&#039;data/bbscache/inv_config.php&#039;);</div><br/>在后面添加<br/><div class="code"><br/>$checkmd=1;//add MD5 check<br/>$regid=$_POST&#91;&quot;regid&quot;&#93;;<br/>$regidcheck=$_POST&#91;&quot;regidcheck&quot;&#93;;<br/></div><br/><br/>找到<br/><div class="code">&#125; elseif($_POST&#91;&#039;step&#039;&#93;==2)&#123;</div><br/>在后面添加<br/><div class="code"><br/>&nbsp;&nbsp;&nbsp;&nbsp;if($checkmd==1)&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;$regid != $regidcheck &amp;&amp; Showmsg(&quot;注册码错误!请将系统提供给你的注册码 $regid 在注册框中输入完整!&quot;);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&#125;<br/></div><br/>保存关闭<br/>接下来修改register.htm文件，默认在wind模板目录下面<br/>找到<br/><div class="code"><br/>&lt;!--<br/>EOT;<br/>if($reggd)&#123;<br/>print &lt;&lt;&lt;EOT<br/>--&gt;<br/>&lt;tr class=&quot;tr3 f_one&quot;&gt;&lt;th&gt;认证码&lt;font color=&quot;red&quot;&gt;*&lt;/font&gt;&lt;/th&gt;<br/>&lt;th&gt;&lt;input class=&quot;input&quot; type=&quot;text&quot; maxLength=&quot;4&quot; name=&quot;gdcode&quot; size=&quot;10&quot; /&gt;<br/>&lt;img src=&quot;ck.php?&quot; align=&quot;absmiddle&quot; onclick=&quot;this.src=&#039;ck.php?&#039;&quot; style=&quot;cursor:pointer;&quot; /&gt; 请将图片中的数字或英文字母填入到<br/><br/>文本框中&lt;/th&gt;&lt;/tr&gt;<br/>&lt;!--<br/>EOT;<br/>&#125;print &lt;&lt;&lt;EOT<br/>--&gt;<br/></div><br/>在后面添加<br/><div class="code"><br/>&lt;!--<br/>EOT;<br/>if($checkmd==&#039;1&#039;)&#123;&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$str_a=rand(1,9);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$str_b=rand(10,99);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$str_c=rand(100,999);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$str_d=rand(1000,9999);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$str_m=$str_a.$str_b.$str_c.$str_d;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$regid=md5($str_m);<br/>print &lt;&lt;&lt;EOT<br/>--&gt;<br/>&lt;tr class=&quot;tr3 f_one&quot;&gt;&lt;th&gt;注册码&lt;font color=&quot;red&quot;&gt;*&lt;/font&gt;&lt;/th&gt;<br/>&lt;th&gt;&lt;input class=&quot;input&quot; type=&quot;text&quot; maxLength=&quot;32&quot; name=&quot;regidcheck&quot; size=&quot;20&quot; /&gt; &lt;br&gt;系统分配给您的注册码&lt;font color=red&gt; <br/><br/>$regid &lt;/font&gt;(使用说明:将该注册码复制到上边的文本框中)&lt;input type=&quot;hidden&quot; value=&quot;$regid&quot; name=&quot;regid&quot; /&gt;&lt;/th&gt;&lt;/tr&gt;<br/><br/>&lt;!--<br/>EOT;<br/>&#125;print &lt;&lt;&lt;EOT<br/>--&gt;<br/></div><br/>这样就完成了 但是理论上说还是可以被突破的因为注册码就包含在注册页面中 而且不会因为页面刷新而改变<br/>2、新增或者更换原有的Captcha认证码<br/>我目前使用的是securimage的开源方案<br/>去官网（http://www.phpcaptcha.org）下载下来之后<br/>上传securimage.php、securimage_show.php以及你打算使用的字体文件到服务器上面<br/>并配置好securimage.php里的配置参数之后就可以把它集成到phpwind里面去了<br/>集成方法如下<br/>修改register.php<br/>找到<br/><div class="code">@include_once(D_P.&#039;data/bbscache/inv_config.php&#039;);</div><br/>在后面添加<br/><div class="code"><br/>$checkmycap=1;//add my Captcha<br/>include(&quot;newre/securimage.php&quot;);<br/>$imgmycap = new Securimage();<br/>$validmycap = $imgmycap-&gt;check($_POST&#91;&#039;mycapcheck&#039;&#93;);<br/></div><br/><div class="code">&#125; elseif($_POST&#91;&#039;step&#039;&#93;==2)&#123;</div><br/>在后面添加<br/><div class="code"><br/>&nbsp;&nbsp;&nbsp;&nbsp;if($checkmycap==1)&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;$validmycap != true &amp;&amp; Showmsg(&quot;验证码2错误!请将系统提供给你的验证码2在注册框中输入完整!&quot;);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&#125;<br/></div><br/>保存关闭<br/>接下来修改register.htm文件，默认在wind模板目录下面<br/>找到<br/><div class="code"><br/>&lt;!--<br/>EOT;<br/>if($reggd)&#123;<br/>print &lt;&lt;&lt;EOT<br/>--&gt;<br/>&lt;tr class=&quot;tr3 f_one&quot;&gt;&lt;th&gt;认证码&lt;font color=&quot;red&quot;&gt;*&lt;/font&gt;&lt;/th&gt;<br/>&lt;th&gt;&lt;input class=&quot;input&quot; type=&quot;text&quot; maxLength=&quot;4&quot; name=&quot;gdcode&quot; size=&quot;10&quot; /&gt;<br/>&lt;img src=&quot;ck.php?&quot; align=&quot;absmiddle&quot; onclick=&quot;this.src=&#039;ck.php?&#039;&quot; style=&quot;cursor:pointer;&quot; /&gt; 请将图片中的数字或英文字母填入到<br/><br/>文本框中&lt;/th&gt;&lt;/tr&gt;<br/>&lt;!--<br/>EOT;<br/>&#125;print &lt;&lt;&lt;EOT<br/>--&gt;<br/></div><br/>在后面添加<br/><div class="code"><br/>&lt;!--<br/>EOT;<br/>if($checkmycap==&#039;1&#039;)&#123;print &lt;&lt;&lt;EOT<br/>--&gt;<br/>&lt;tr class=&quot;tr3 f_one&quot;&gt;&lt;th&gt;验证码2&lt;font color=&quot;red&quot;&gt;*&lt;/font&gt;&lt;/th&gt;<br/>&lt;th&gt;<br/>&lt;img src=&quot;newre/securimage_show.php?sid=&lt;?php echo md5(uniqid(time())); ?&gt;&quot; id=&quot;image&quot; align=&quot;absmiddle&quot; onclick=&quot;document.getElementById(&#039;image&#039;).src = &#039;newre/securimage_show.php?sid=&#039; + Math.random(); return false&quot; style=&quot;cursor:pointer;&quot;/&gt;&lt;br&gt;<br/>&lt;font color=&quot;red&quot;&gt;请将上图中的数字或英文字母填入到下面的文本框中&lt;/font&gt;&lt;br&gt;<br/>&lt;input class=&quot;input&quot; type=&quot;text&quot; maxLength=&quot;6&quot; name=&quot;mycapcheck&quot; size=&quot;10&quot; /&gt;<br/>&lt;/th&gt;&lt;/tr&gt;<br/>&lt;!--<br/>EOT;<br/>&#125;print &lt;&lt;&lt;EOT<br/>--&gt;<br/></div><br/>这样就在原有认证码的基础上又添加了一个认证码<br/>更为重要的是这个认证码可以通过修改配置文件和更换字体来达到完全的自定义的效果<br/>基本上可以解决绝大多数的注册机的问题<br/><br/><br/>Tags - <a href="http://www.bokunosekai.com/tags/php/" rel="tag">php</a> , <a href="http://www.bokunosekai.com/tags/phpwind/" rel="tag">phpwind</a> , <a href="http://www.bokunosekai.com/tags/%25E6%25B3%25A8%25E5%2586%258C%25E6%259C%25BA/" rel="tag">注册机</a> , <a href="http://www.bokunosekai.com/tags/captcha/" rel="tag">captcha</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/140/</link>
<title><![CDATA[Acronis Secure Zone内文件删除管理的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Wed, 31 Dec 2008 07:37:22 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/140/</guid> 
<description>
<![CDATA[ 
	其实也很简单了<br />所谓的Acronis Secure Zone不过是一个卷名为ACRONIS SZ的FAT32分区罢了<br />唯一的一点花招就只是把分区类型设置成了BC<br />所以只要用Disk&nbsp;Genius之类的工具把分区类型修改为正确的<span style="font-family: Courier New">0B就可以自由的访问和修改了<br /></span>弄完之后再恢复成BC的话就有可以用ATI来管理了<br />另外再顺便说一下就是<br />ATI的备份的时候貌似会备份分区状态的<br />所以修改了分区大小之后再恢复到没有修改之前的备份的话可能导致分区丢失<br />至少我是这样子的了<br />不过还好用Disk Genius之类的也能迅速恢复就是了<br/>Tags - <a href="http://www.bokunosekai.com/tags/acronis/" rel="tag">acronis</a> , <a href="http://www.bokunosekai.com/tags/secure/" rel="tag">secure</a> , <a href="http://www.bokunosekai.com/tags/zone/" rel="tag">zone</a> , <a href="http://www.bokunosekai.com/tags/disk/" rel="tag">disk</a> , <a href="http://www.bokunosekai.com/tags/genius/" rel="tag">genius</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/139/</link>
<title><![CDATA[linux下关闭蜂鸣器的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Tue, 30 Dec 2008 18:30:30 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/139/</guid> 
<description>
<![CDATA[ 
	setterm -blength 0<br /><br />echo 'set bell-style none' &gt;&gt; ~/.inputrc<br /><br />xset b off<br/>Tags - <a href="http://www.bokunosekai.com/tags/linux/" rel="tag">linux</a> , <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a> , <a href="http://www.bokunosekai.com/tags/%25E8%259C%2582%25E9%25B8%25A3%25E5%2599%25A8/" rel="tag">蜂鸣器</a> , <a href="http://www.bokunosekai.com/tags/beep/" rel="tag">beep</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/138/</link>
<title><![CDATA[淘宝删除差评的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[杂项]]></category>
<pubDate>Mon, 22 Dec 2008 04:16:51 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/138/</guid> 
<description>
<![CDATA[ 
	貌似不少人现在做这个买卖的了<br />不过也差不多该被封了吧<br />就说出来好了<br />关键点就是用显示任意号码的voip回拨卡或者软件来显示买家号码冒充买家来打淘宝客服电话了<br />然后这类卡现在也很便宜了<br/>Tags - <a href="http://www.bokunosekai.com/tags/%25E6%25B7%2598%25E5%25AE%259D/" rel="tag">淘宝</a> , <a href="http://www.bokunosekai.com/tags/%25E5%2588%25A0%25E9%2599%25A4%25E5%25B7%25AE%25E8%25AF%2584/" rel="tag">删除差评</a> , <a href="http://www.bokunosekai.com/tags/voip/" rel="tag">voip</a> , <a href="http://www.bokunosekai.com/tags/%25E6%2598%25BE%25E7%25A4%25BA%25E4%25BB%25BB%25E6%2584%258F%25E5%258F%25B7%25E7%25A0%2581/" rel="tag">显示任意号码</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/137/</link>
<title><![CDATA[修改deb包的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Sun, 14 Dec 2008 21:15:39 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/137/</guid> 
<description>
<![CDATA[ 
	$ mkdir&nbsp;nano //创建目录<br />$ dpkg-deb -e ./nano_1.3.10-2_i386.deb ./nano/DEBIAN&nbsp;&nbsp;&nbsp; //解压控制文件<br />$ dpkg-deb -x ./nano_1.3.10-2_i386.deb ./nano&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //解压程序文件<br />$&nbsp;vi ./nano/DEBIAN/control&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //修改控制信息<br />$ dpkg-deb -b nano nano_1.3.10-2_ill.deb&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //重新打包<br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a> , <a href="http://www.bokunosekai.com/tags/deb/" rel="tag">deb</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/136/</link>
<title><![CDATA[Debian 修改时区的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Fri, 12 Dec 2008 18:43:54 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/136/</guid> 
<description>
<![CDATA[ 
	<p>Linux中使用两种时间：世界时间（GMT）和本地时间（Local Time）。世界时间即格林尼治时间。而各个时区用户根据所在的时区（Time Zone）与国际时间的差值来获得本地时间。比如中国在东8区（CST +8:00），所以本地时间比国际时间快8小时。</p><p>Debian下设置时区的命令是tzconfig。</p><p>Linux 在每次启动时会加载BIOS的时间，并在退出时把时间写回BIOS。默认情况下，Linux认为BIOS里的时间是世界时间（UTC）。因此它读入世界时间然后根据用户所在时区计算出本地时间。对于中国而言，就是加上8小时。这种机制在多系统环境中会产生问题：因为Windows只认识本地时间，所以你在 Windows里设置的时间（会写回BIOS）在Linux环境中被认为是世界时间，从而导致Linux本地时间比正确时间快了8小时（对于中国而言）。 如果你在Linux里把本地时间减去8小时来修正（世界时间相应的也会被减去8），又会导致Windows里的时间慢了8小时（因为Linux在退出时会 将修改后的世界时间写回BIOS）</p><p>解决办法：<br />编辑文件/etc/default/rcS，把其中的UTC=yes选项改为UTC=no（即让Linux认为BIOS里的是本地时间）。<br />然后ntpdate time.nist.gov校对时间。<br />最后hwclock -w写入BIOS就完成了。<br />最后就是一个CST的问题，因为有很多不同的意义，所以最好设置时区的时候选择香港时间。</p><br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/135/</link>
<title><![CDATA[debian 自动加载模块的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Fri, 12 Dec 2008 00:04:13 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/135/</guid> 
<description>
<![CDATA[ 
	echo &quot;module name&quot; &gt;;&gt;;/etc/modules<br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/134/</link>
<title><![CDATA[debian 4 开启ipforward的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Thu, 11 Dec 2008 21:20:42 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/134/</guid> 
<description>
<![CDATA[ 
	编辑<br />/etc/sysctl.conf<br />将net.ipv4.ipforward的注释去掉<br />当然了echo 1 &gt; /proc/sys/net/ipv4/ip_forward也是可行的<br />但是每次重启都会复原 所以要加到启动组里面去<br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a> , <a href="http://www.bokunosekai.com/tags/ipforward/" rel="tag">ipforward</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/133/</link>
<title><![CDATA[Debian的vmware虚拟机迁移后不能启动网络]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Thu, 11 Dec 2008 03:35:15 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/133/</guid> 
<description>
<![CDATA[ 
	原因：<br />迁移虚拟机导致虚拟机<span class="t_tag">配置</span><span class="t_tag">文件</span>中的mac地址和debian<span class="t_tag">系统</span>的mac地址不一致。<br /><br /><span class="t_tag">解决</span>办法：<br />在虚拟机文件所在目录中用文本编辑器打开*.vmx，找到ethernet0.generatedAddress字段，记下mac地址。<br /><br />启动debian，nano /etc/udev/rules.d/z25_persistent-net.rules，用新的mac地址替换旧的mac地址，reboot之后就可以了。<br /><br /><br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a> , <a href="http://www.bokunosekai.com/tags/vmware/" rel="tag">vmware</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/132/</link>
<title><![CDATA[debian 4.0 安装时配置网络的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Thu, 11 Dec 2008 00:17:34 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/132/</guid> 
<description>
<![CDATA[ 
	alt+F2进入busybox<br />配置可以用的命令只有<br />ifconfig和route<br />ifconfig eth0 ip netmask<br />route add default gw gwip eth0<br />效果都是临时的完成安装之后再用netconfig来永久配置<br />测试只能用wget<br />ping都没有<br />只能说这是debian一贯的缺根筋的风格了吧囧rz...<br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/131/</link>
<title><![CDATA[阻止金山词霸2009自动更新的简单方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Fri, 05 Dec 2008 11:20:55 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/131/</guid> 
<description>
<![CDATA[ 
	其实只要设置一个无效的代理服务器就搞定了<br />比设置防火墙规则方便多了<br />不过话说回来<br />其实还是谷歌合作版本更好用<br />毕竟所有现有的中文词典都太烂了<br />国内常见的英文的也太正规或者陈旧了<br />像我经常会找的IT相关的词汇一般十个里面能查出一两个就不错了<br />谷歌合作的版本利用网络的话虽然准确性还不是很高<br />但是至少能返回70%左右的有效结果了<br />而且还是Free的
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/130/</link>
<title><![CDATA[debian或Ubuntu下的squid包不支持ssl]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Sun, 30 Nov 2008 21:45:54 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/130/</guid> 
<description>
<![CDATA[ 
	这个是由于OpenSSL的license和Squid的license并不完全兼容的原因<br />这点就是debian对于实用主义者而言最讨厌的地方了<br />Debian从来都是最重视license的毕竟它自己就是GNU/Linux了啦<br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a> , <a href="http://www.bokunosekai.com/tags/gnu/" rel="tag">gnu</a> , <a href="http://www.bokunosekai.com/tags/linux/" rel="tag">linux</a> , <a href="http://www.bokunosekai.com/tags/squid/" rel="tag">squid</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/129/</link>
<title><![CDATA[强悍的MSNshell]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Thu, 27 Nov 2008 01:40:13 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/129/</guid> 
<description>
<![CDATA[ 
	小小一个外挂竟然集成了接近10个广告<br />而且一旦安装之后就无法卸载了（软件可以卸载，但广告会有残留）<br />好久米见过那么强悍的流氓软件了的说...<br/>Tags - <a href="http://www.bokunosekai.com/tags/msn/" rel="tag">msn</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/128/</link>
<title><![CDATA[apache运行CGI程序出现Internet Explorer 无法显示该网页的解决方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Wed, 26 Nov 2008 21:18:21 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/128/</guid> 
<description>
<![CDATA[ 
	error_log里记录的是<br />&quot;[Wed Nov 26 12:18:45 2008] [error] [client xxx.xxx.xxx.xxx] suexec policy violation: see suexec log for more details&quot;<br />suexec.log里记录的是<br />&quot;[2008-11-26 13:14:29]: file is writable by others: (/home/xxx/xxx.cgi)&quot;<br />所以直接把权限改成&quot;766&quot;就可以了<br/>Tags - <a href="http://www.bokunosekai.com/tags/apache/" rel="tag">apache</a> , <a href="http://www.bokunosekai.com/tags/cgi/" rel="tag">cgi</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/127/</link>
<title><![CDATA[debian校准时间的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[WebHost]]></category>
<pubDate>Wed, 26 Nov 2008 19:31:00 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/127/</guid> 
<description>
<![CDATA[ 
	先安装下ntpdate<br />apt-get install ntpdate<br />然后就可以校时了<br />ntpdate time.nist.gov<br />然后写入BIOS<br />/sbin/hwclock -w<br />最好做个cron<br />这样就可以每天自动校时了<br/>Tags - <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a> , <a href="http://www.bokunosekai.com/tags/%25E6%25A0%25A1%25E6%2597%25B6/" rel="tag">校时</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/126/</link>
<title><![CDATA[PHPwind修改综合积分公式的方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[WebSite]]></category>
<pubDate>Tue, 25 Nov 2008 15:35:41 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/126/</guid> 
<description>
<![CDATA[ 
	在管理界面里面<br />用户下面的<br />会员组提升方案里<br />PHPwind的不人性化确实是到了一定的境界了...<br/>Tags - <a href="http://www.bokunosekai.com/tags/phpwind/" rel="tag">phpwind</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/123_txt/</link>
<title><![CDATA[D盘根目录下出现123.txt的原因及解决方案]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Tue, 18 Nov 2008 11:08:52 +0000</pubDate> 
<guid>http://www.bokunosekai.com/123_txt/</guid> 
<description>
<![CDATA[ 
	直接删除后会不断出现<br />里面内容为不断重复的你最后一次复制的文件的后缀名<br />这个文件是由iTudou注入到Explorer.EXE里的某个DLL生成的<br />原因应该是监视用户的磁盘操作吧<br />毕竟国内几乎所有的免费软件都有内嵌的间谍功能了<br />毕竟靠卖用户隐私赚钱比直接收费的盈利模式可行多了<br />解决方法的话也就只有卸载iTudou了<br />卸载不了的话先更新到最新版本然后再卸载<br />当然了直接解除C:&#92;windows&#92;system32&#92;tudouupload.dll也是可行的
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/123/</link>
<title><![CDATA[090105TODO]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[blog维护]]></category>
<pubDate>Thu, 13 Nov 2008 05:20:23 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/123/</guid> 
<description>
<![CDATA[ 
	<p>1、整合FCKeditor，加入自动保存<br /><strike>2、增加前后文标题</strike><br />3、增加订阅器<br /><strike>4、增加日志访问次数<br />5、确认全文搜索不能搜索英文的原因</strike></p><p><strike>6、标题及正文的换行长度以及标题的重叠</strike><br /><strike>7、BGM自动播放关闭<br /></strike>8、BGM播放器颜色 考虑弄两个<br />9、tag显示<br />10、logo修正<br />11、点击排行修正<br />12、链接滚动修正<br />13、版本升级<br />14、插件升级</p><br/>Tags - <a href="http://www.bokunosekai.com/tags/todo/" rel="tag">todo</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/122/</link>
<title><![CDATA[windows 2003 (win 2003) 能用的 msn message ]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Thu, 13 Nov 2008 03:54:58 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/122/</guid> 
<description>
<![CDATA[ 
	版本号为：8.1.0178.0<br />下载地址：<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&amp;FamilyID=d78f2ff1-79ea-4066-8ba0-ddbed94864fc">http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&amp;FamilyID=d78f2ff1-79ea-4066-8ba0-ddbed94864fc</a><br />去广告多开补丁：<a href="http://www.msgshit.com/downloads/620/MultiLive-8.1.0178.html">http://www.msgshit.com/downloads/620/MultiLive-8.1.0178.html</a><br /><br />应该也同样适用于windows (win)&nbsp;2000及 windows (win)&nbsp;2008<br/>Tags - <a href="http://www.bokunosekai.com/tags/msn/" rel="tag">msn</a> , <a href="http://www.bokunosekai.com/tags/message/" rel="tag">message</a> , <a href="http://www.bokunosekai.com/tags/win2003/" rel="tag">win2003</a> , <a href="http://www.bokunosekai.com/tags/windows2003/" rel="tag">windows2003</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/121/</link>
<title><![CDATA[全品牌硬盘质保在线查询]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Wed, 12 Nov 2008 17:58:03 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/121/</guid> 
<description>
<![CDATA[ 
	<p>希捷、迈拓（已被希捷收购）：<a href="http://support.seagate.com/customer/warranty_validation.jsp"><br />http://support.seagate.com/customer/warranty_validation.jsp</a><br /><br />西数<br /><a href="http://websupport.wdc.com/warranty/serialinput.asp?aspsid=221569007&amp;custtype=end&amp;requesttype=warranty&amp;lang=cn">http://websupport.wdc.com/warranty/serialinput.asp?aspsid=221569007&amp;custtype=end&amp;requesttype=warranty&amp;lang=cn</a><br /><br />日立、IBM（已被日立收购）<br /><a href="http://www.hgst.com/portal/site/en/menuitem.4e6284c20a3050a7760062f6aac4f0a0/">http://www.hgst.com/portal/site/en/menuitem.4e6284c20a3050a7760062f6aac4f0a0/</a><br /></p><p>国内代理查询：<br />建达蓝德盒装正品条码查询（迈拓、西数、希捷、易拓）<br /><a href="http://ecc.xander.com.cn/serial/inq.asp?mode=inq">http://ecc.xander.com.cn/serial/inq.asp?mode=inq</a><br /><br />联强国际（迈拓、西数、希捷）<br /><a href="http://www.synnex.com.cn/about.aspx?itemname=Productsystem">http://www.synnex.com.cn/about.aspx?itemname=Productsystem</a><br /><br />暂时就这些 有空再补充</p>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/120/</link>
<title><![CDATA[无法定位程序输入点 IsThreadDesktopComposited 于动态链接库 USER32.dll 上。的出错原因及解决方法 ]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Mon, 10 Nov 2008 13:43:10 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/120/</guid> 
<description>
<![CDATA[ 
	原因应该是VC++ 2005或者它的runtime和IE7的冲突<br/>装了VC++ 2005或者它的runtime之后IE7就会以为你是vista或者2008的系统有所以有dwmapi.dll文件但是事实上之前的任何系统都不会有这个文件的<br/>这个问题貌似没有解决方法 只有把IE7删掉恢复成IE6了<br/>------------------------------------------------------------------------------------------------------------------------------------<br/>MSDN上一个MS的官方代表的原话 IE7的开发团队果然是烂到了连他们自己人都看不下去的程度了<br/>Peter RitchieMVP, Moderator - Posted on 2007年11月7日 7:23:09<br/>Good luck with that.&nbsp;&nbsp;I've found the IE7 team, if there still is one; to be completely unresponsive.&nbsp;&nbsp;IE7 have to be the lowest-quality product that Microsoft currently supports.&nbsp;&nbsp;I have more problems with IE7 than with IE6.&nbsp;&nbsp;&nbsp;&nbsp;The IE teams is one of the stand-offish teams that hasn't got any space on Connect.Microsoft.com--suggesting they just don't care if there are any bugs and certainly don't care about supporting their product. <br/><br/>The recommended support site is http://www.microsoft.com/windows/products/winfamily/ie/iefaq.mspx.<br/><br/>If I were you, and have and MSDN license, I would phone customer support and try to get this resolved.&nbsp;&nbsp;I've found, barring contacting a member of a team directly, phoning PSS is the only way to get things resolved.
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/119/</link>
<title><![CDATA[CopyText的完整使用方法]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[tools]]></category>
<pubDate>Mon, 10 Nov 2008 13:13:24 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/119/</guid> 
<description>
<![CDATA[ 
	先右键发送到桌面快捷方式<br/>然后在快捷方式上点右键属性设置快捷键<br/>这样就准备完成了<br/>使用的时候选中你要捕获文本的窗体<br/>然后点你设置的快捷键<br/>这样CopyText就弹出来并捕获了窗体里面的文本<br/>然后再按回车CopyText就会把捕获的文本复制到粘贴板里面并自动退出了<br/>这个工具确实超级实用的说
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/118/</link>
<title><![CDATA[0811110]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[blog维护]]></category>
<pubDate>Mon, 10 Nov 2008 11:57:54 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/118/</guid> 
<description>
<![CDATA[ 
	果然还是两栏比较顺眼一点<br/>决定变两栏了的说<br/>Tags - <a href="http://www.bokunosekai.com/tags/%25E7%25BB%25B4%25E6%258A%25A4%25E6%2597%25A5%25E5%25BF%2597/" rel="tag">维护日志</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/117/</link>
<title><![CDATA[这季有趣的新番推荐之ミチコとハッチン]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[动漫ACG]]></category>
<pubDate>Mon, 10 Nov 2008 11:44:37 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/117/</guid> 
<description>
<![CDATA[ 
	中文名的话大致是道子和哈金一类的样子<br/>西部剧的感觉 很有趣的说...<br/>萝莉加暴力御姐的组合貌似我是最米抵抗力地说...<br/><a href="http://www.bokunosekai.com/attachment.php?fid=70" target="_blank"><img src="http://www.bokunosekai.com/attachment.php?fid=70" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bokunosekai.com/attachment.php?fid=71" target="_blank"><img src="http://www.bokunosekai.com/attachment.php?fid=71" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>官网：<a href="http://www.michikotohatchin.com/" target="_blank">http://www.michikotohatchin.com/</a><br/>Tags - <a href="http://www.bokunosekai.com/tags/%25E6%2596%25B0%25E7%2595%25AA/" rel="tag">新番</a> , <a href="http://www.bokunosekai.com/tags/acg/" rel="tag">acg</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/116/</link>
<title><![CDATA[ConvertZ最好用的内码转换工具之一]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Mon, 10 Nov 2008 11:28:41 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/116/</guid> 
<description>
<![CDATA[ 
	中日简繁的内码转换通吃<br/>可以直接转换粘贴板里的内容<br/>还能直接转换mp3的标签<br/>也能直接转换整个文件内的全部文件名甚至包括文件的内容<br/>基本上是强大到极限了<br/>对于经常下日文的东东的人而言还是很实用的<br/>这个就是完全基于需要而非利益开发出来的免费软件的强大之处了吧<br/>可惜官网貌似挂了 最新版本一直停留在v8.02<br/>不过话说回来 已经很完美了的样子<br/>下载的话自己去霏凡之类的地方找吧<br/>不算是罕见的东西我也就不上传了<br/>Tags - <a href="http://www.bokunosekai.com/tags/%25E6%2597%25A5%25E6%259C%25AC%25E8%25AF%25AD/" rel="tag">日本语</a> , <a href="http://www.bokunosekai.com/tags/%25E5%2586%2585%25E7%25A0%2581%25E8%25BD%25AC%25E6%258D%25A2/" rel="tag">内码转换</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/115/</link>
<title><![CDATA[php升级后apache不能打开的原因]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[WebSite]]></category>
<pubDate>Mon, 10 Nov 2008 11:18:55 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/115/</guid> 
<description>
<![CDATA[ 
	上个月debian自动升级时遇到的状况<br/>原因么其实很简单查下日志就知道了<br/>是因为同时安装的eaccelerator没有跟着升级<br/>而eaccelerator是必须更着当前的php版本进行编译的<br/>所以重新安装下就可以了<br/>不过话说apt-get的自动升级还真是不安全的说...<br/>Tags - <a href="http://www.bokunosekai.com/tags/php/" rel="tag">php</a> , <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a> , <a href="http://www.bokunosekai.com/tags/eaccelerator/" rel="tag">eaccelerator</a> , <a href="http://www.bokunosekai.com/tags/apache/" rel="tag">apache</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/114/</link>
<title><![CDATA[每日天气预报]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[杂项]]></category>
<pubDate>Mon, 10 Nov 2008 10:59:19 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/114/</guid> 
<description>
<![CDATA[ 
	强大的说<br/>老爸老妈忘了看的时候就可以直接上网看了囧rz...<br/><br/>此处包含一个多媒体文件，请用网页方式查看。<br/>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/113/</link>
<title><![CDATA[root下面不断增大的sent文件的解决方案]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[WebSite]]></category>
<pubDate>Sat, 08 Nov 2008 06:28:10 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/113/</guid> 
<description>
<![CDATA[ 
	这个文件是mutt默认的已发出邮件的保存位置<br/>建议配置一下 不然的话迟早会变得非常庞大<br/>配置文件是Muttrc一般在etc下面建议搜索下<br/><div class="code">set record=&quot;/Maildir/sent/=sent-mail-`date +%Y-%m`&quot;</div><br/>这样的话就会按月来存放了<br/>然后就可以建个cron来定期清除了<br/>Tags - <a href="http://www.bokunosekai.com/tags/mutt/" rel="tag">mutt</a> , <a href="http://www.bokunosekai.com/tags/debian/" rel="tag">debian</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/112/</link>
<title><![CDATA[更换新模板]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[blog维护]]></category>
<pubDate>Sat, 08 Nov 2008 05:44:08 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/112/</guid> 
<description>
<![CDATA[ 
	顺便调整了下布局和分类<br/>因为是三栏的 建议在阅读时关闭边栏<br/>Tags - <a href="http://www.bokunosekai.com/tags/%25E7%25BB%25B4%25E6%258A%25A4%25E6%2597%25A5%25E5%25BF%2597/" rel="tag">维护日志</a>
]]>
</description>
</item><item>
<link>http://www.bokunosekai.com/post/111/</link>
<title><![CDATA[loadlibrary() 失败 找不到指定的模块的解决方案]]></title> 
<author>ray &lt;admin@yourname.com&gt;</author>
<category><![CDATA[IT tech]]></category>
<pubDate>Sun, 05 Oct 2008 09:42:48 +0000</pubDate> 
<guid>http://www.bokunosekai.com/post/111/</guid> 
<description>
<![CDATA[ 
	""内是你在使用或者注册的ocx或者dll文件<br/>导致这一错误的原因是缺少改文件所依赖的库文件<br/>通常情况下是runtime了<br/>vb5之类的<br/>要想准确的了解的话可以用Dependency Walker来检查<br/>主页是http://www.dependencywalker.com/
]]>
</description>
</item>
</channel>
</rss>