<?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>Google Stop Blog - The future is fusion &#187; PHP</title>
	<atom:link href="http://googlestop.com/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://googlestop.com/blog</link>
	<description>Just another weblog of Charry</description>
	<lastBuildDate>Sat, 10 Jul 2010 13:02:10 +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>A PHP snippet for managing htpasswd file of Apache</title>
		<link>http://googlestop.com/blog/2008/04/a-php-snippet-for-managing-htpasswd-file-of-apache/</link>
		<comments>http://googlestop.com/blog/2008/04/a-php-snippet-for-managing-htpasswd-file-of-apache/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 07:22:47 +0000</pubDate>
		<dc:creator>Charry</dc:creator>
				<category><![CDATA[My Application]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://googlestop.com/blog/2008/04/28/a-php-snippet-for-managing-htpasswd-file-of-apache/</guid>
		<description><![CDATA[Are you looking for a tool for managing AuthUserFile of Apache? if so, here&#8217;s a mini php-based htpasswd admin tool for you. maybe it helps.  http://code.google.com/p/phphtpasswdadmin/  For now, it&#8217;s just a draft, if you like it, please reach me and let&#8217;s make it better.]]></description>
			<content:encoded><![CDATA[<p>Are you looking for a tool for managing AuthUserFile of Apache? if so, here&#8217;s a mini php-based htpasswd admin tool for you. maybe it helps.</p>
<p> <a href="http://code.google.com/p/phphtpasswdadmin/">http://code.google.com/p/phphtpasswdadmin/</a></p>
<p> For now, it&#8217;s just a draft, if you like it, please reach me and let&#8217;s make it better.</p>
]]></content:encoded>
			<wfw:commentRss>http://googlestop.com/blog/2008/04/a-php-snippet-for-managing-htpasswd-file-of-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>贴士吧</title>
		<link>http://googlestop.com/blog/2007/07/%e8%b4%b4%e5%a3%ab%e5%90%a7/</link>
		<comments>http://googlestop.com/blog/2007/07/%e8%b4%b4%e5%a3%ab%e5%90%a7/#comments</comments>
		<pubDate>Wed, 25 Jul 2007 09:33:35 +0000</pubDate>
		<dc:creator>Charry</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Charry]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://googlestop.com/blog/2007/07/25/%e8%b4%b4%e5%a3%ab%e5%90%a7/</guid>
		<description><![CDATA[最近没事，搞了个‘贴士吧’用来记录自己的Tips，还未完工。 http://moretips.cn]]></description>
			<content:encoded><![CDATA[<p>最近没事，搞了个‘贴士吧’用来记录自己的Tips，还未完工。</p>
<p><a href="http://moretips.cn/">http://moretips.cn</a></p>
]]></content:encoded>
			<wfw:commentRss>http://googlestop.com/blog/2007/07/%e8%b4%b4%e5%a3%ab%e5%90%a7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress, tinyMCE, realpath</title>
		<link>http://googlestop.com/blog/2007/06/wordpress-tinymce-realpath/</link>
		<comments>http://googlestop.com/blog/2007/06/wordpress-tinymce-realpath/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 21:12:10 +0000</pubDate>
		<dc:creator>Charry</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://googlestop.com/blog/2007/06/17/wordpress-tinymce-realpath/</guid>
		<description><![CDATA[昨，搭建一个WordPress，发现tinyMCE不能使用，原来是虚拟主机提供商为了安全起见，把realpath函数屏蔽了，realpath的安全漏洞令商家不得不这么做，而这样将导致WP的后台管理不能使用WYSIWYG编辑文章。下面是解决这个问题的方法，如有朋友遇到，也许对您有帮助： 取得你的虚拟主机目录的物理路径，方法有多种，一般主机提供商给你开通服务的时候，会告诉你，假设这里是 /home/www/imchina.net/ 找到 wp-includesjstinymce 下的 tiny_mce_gzip.php 打开tiny_mce_gzip.php，搜索realpath，将第一个替换为：“$cachePath = &#8220;/home/www/imchina.net/wp-includes/js/tinymce/&#8221;;”，将第二个realpath替换为：“$path = &#8220;/home/www/imchina.net/wp-includes/js/tinymce/&#8221;.$path;”。]]></description>
			<content:encoded><![CDATA[<p>昨，搭建一个WordPress，发现tinyMCE不能使用，原来是虚拟主机提供商为了安全起见，把realpath函数屏蔽了，realpath的安全漏洞令商家不得不这么做，而这样将导致WP的后台管理不能使用WYSIWYG编辑文章。下面是解决这个问题的方法，如有朋友遇到，也许对您有帮助：</p>
<ol>
<li>取得你的虚拟主机目录的物理路径，方法有多种，一般主机提供商给你开通服务的时候，会告诉你，假设这里是 /home/www/imchina.net/</li>
<li>找到 wp-includesjstinymce 下的 tiny_mce_gzip.php</li>
<li>打开tiny_mce_gzip.php，搜索realpath，将第一个替换为：“$cachePath = &#8220;/home/www/imchina.net/wp-includes/js/tinymce/&#8221;;”，将第二个realpath替换为：“$path = &#8220;/home/www/imchina.net/wp-includes/js/tinymce/&#8221;.$path;”。</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://googlestop.com/blog/2007/06/wordpress-tinymce-realpath/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
