<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Simply Breath Teching...</title>
	<atom:link href="http://www.breathteching.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.breathteching.com</link>
	<description>Resources for PHP Programmers and Small Business Operators</description>
	<lastBuildDate>Mon, 29 Jun 2009 01:34:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on file_exists doesn&#8217;t work for me by bretto36</title>
		<link>http://www.breathteching.com/2009/02/05/file_exists-doesnt-work-for-me/comment-page-1/#comment-168</link>
		<dc:creator>bretto36</dc:creator>
		<pubDate>Mon, 29 Jun 2009 01:34:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2009/02/05/file_exists-doesnt-work-for-me/#comment-168</guid>
		<description>Is this still an issue for you? Have you checked openbasedir restrictions. Generally you can&#039;t access things outside the root directory unless oyu open it up in httpd.conf</description>
		<content:encoded><![CDATA[<p>Is this still an issue for you? Have you checked openbasedir restrictions. Generally you can&#8217;t access things outside the root directory unless oyu open it up in httpd.conf</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on file_exists doesn&#8217;t work for me by sri20198</title>
		<link>http://www.breathteching.com/2009/02/05/file_exists-doesnt-work-for-me/comment-page-1/#comment-167</link>
		<dc:creator>sri20198</dc:creator>
		<pubDate>Tue, 16 Jun 2009 13:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2009/02/05/file_exists-doesnt-work-for-me/#comment-167</guid>
		<description>Trying to implement a function that depends on file_exists in a drupal setup. I am checking for an image file which has a path like &#039;/sites/all/themes/themename/images/img_var0.gif&#039;. The strange thing is, when i run for file_exists from the local directory (meaning sitting in images directory), it returns true, but when run from the root, it returns false. Also checked on the safe mode restrictions using phpinfo(), it is set to OFF. The directories as well as the files have read permissions for all.

Don&#039;t know where i am going wrong.</description>
		<content:encoded><![CDATA[<p>Trying to implement a function that depends on file_exists in a drupal setup. I am checking for an image file which has a path like &#8216;/sites/all/themes/themename/images/img_var0.gif&#8217;. The strange thing is, when i run for file_exists from the local directory (meaning sitting in images directory), it returns true, but when run from the root, it returns false. Also checked on the safe mode restrictions using phpinfo(), it is set to OFF. The directories as well as the files have read permissions for all.</p>
<p>Don&#8217;t know where i am going wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FCKEditor shows current website instead of editor area by Mike</title>
		<link>http://www.breathteching.com/2009/01/05/fckeditor-shows-current-website-instead-of-editor-area/comment-page-1/#comment-166</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 29 Apr 2009 15:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2009/01/05/fckeditor-shows-current-website-instead-of-editor-area/#comment-166</guid>
		<description>I encountered the same problem this morning, didn&#039;t knew what to do. Even updated FCK 2 times!
Can&#039;t wait to try this solution monday :) Hope it works for me.</description>
		<content:encoded><![CDATA[<p>I encountered the same problem this morning, didn&#8217;t knew what to do. Even updated FCK 2 times!<br />
Can&#8217;t wait to try this solution monday <img src='http://www.breathteching.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hope it works for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Function for dealing with quotes in input fields in HTML/PHP by Menno</title>
		<link>http://www.breathteching.com/2008/03/24/function-for-dealing-with-quotes-in-input-fields-in-htmlphp/comment-page-1/#comment-165</link>
		<dc:creator>Menno</dc:creator>
		<pubDate>Tue, 21 Apr 2009 20:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2008/03/24/function-for-dealing-with-quotes-in-input-fields-in-htmlphp/#comment-165</guid>
		<description>sorry should be this without the spaces on both sides of quot
$kop = ereg_replace(&#039;&quot;&#039;,&quot;&amp; quot ;&quot;, $kop);</description>
		<content:encoded><![CDATA[<p>sorry should be this without the spaces on both sides of quot<br />
$kop = ereg_replace(&#8216;&#8221;&#8216;,&#8221;&amp; quot ;&#8221;, $kop);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Function for dealing with quotes in input fields in HTML/PHP by Menno</title>
		<link>http://www.breathteching.com/2008/03/24/function-for-dealing-with-quotes-in-input-fields-in-htmlphp/comment-page-1/#comment-164</link>
		<dc:creator>Menno</dc:creator>
		<pubDate>Tue, 21 Apr 2009 20:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2008/03/24/function-for-dealing-with-quotes-in-input-fields-in-htmlphp/#comment-164</guid>
		<description>Why not have this on top of your form code instead?

/* Replace on submit into MySQL database */
$formfield = ereg_replace(&#039;&quot;&#039;,&quot;&quot;&quot;, $formfield);</description>
		<content:encoded><![CDATA[<p>Why not have this on top of your form code instead?</p>
<p>/* Replace on submit into MySQL database */<br />
$formfield = ereg_replace(&#8216;&#8221;&#8216;,&#8221;&quot;&#8221;, $formfield);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on file_exists doesn&#8217;t work for me by granitemountie</title>
		<link>http://www.breathteching.com/2009/02/05/file_exists-doesnt-work-for-me/comment-page-1/#comment-161</link>
		<dc:creator>granitemountie</dc:creator>
		<pubDate>Tue, 03 Mar 2009 17:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2009/02/05/file_exists-doesnt-work-for-me/#comment-161</guid>
		<description>This comment applies to a solution you posted November 1, 2007 Titled &quot;Forms submitting twice in Firefox&quot;.  I send my eternal gratitude for your post.  I have spent hours and hours, days! trying to figure out odd behavior in a web survey.  The symptoms were different depending on whether starting a new survey, or &quot;next&quot;ing through, but I now know they were ALL caused by having a src=&quot;&quot; within a  tag.    Thank you, thank you!! bretto36  for your generous sharing of knowledge!!!</description>
		<content:encoded><![CDATA[<p>This comment applies to a solution you posted November 1, 2007 Titled &#8220;Forms submitting twice in Firefox&#8221;.  I send my eternal gratitude for your post.  I have spent hours and hours, days! trying to figure out odd behavior in a web survey.  The symptoms were different depending on whether starting a new survey, or &#8220;next&#8221;ing through, but I now know they were ALL caused by having a src=&#8221;" within a  tag.    Thank you, thank you!! bretto36  for your generous sharing of knowledge!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firefox Losing Session Variables on Redirect by Dan</title>
		<link>http://www.breathteching.com/2008/04/28/firefox-losing-session-variables-on-redirect/comment-page-1/#comment-159</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 23 Dec 2008 17:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2008/04/28/firefox-losing-session-variables-on-redirect/#comment-159</guid>
		<description>Thanks for posting this, you are a God amongst Men!!!!   I had to deal with this issue today.  I did notice one thing that lead to different solution for me.  After the first redirect to http://www.website.com  the session variable was lost.  However after the second redirect to http://www.website.com the session variable held its value.  So as a solution i force an initial redirect to http://www.website.com before the user can input any data.  I have tested it out with off site credit transactions and it seems to do the trick.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this, you are a God amongst Men!!!!   I had to deal with this issue today.  I did notice one thing that lead to different solution for me.  After the first redirect to <a href="http://www.website.com" rel="nofollow">http://www.website.com</a>  the session variable was lost.  However after the second redirect to <a href="http://www.website.com" rel="nofollow">http://www.website.com</a> the session variable held its value.  So as a solution i force an initial redirect to <a href="http://www.website.com" rel="nofollow">http://www.website.com</a> before the user can input any data.  I have tested it out with off site credit transactions and it seems to do the trick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firefox Losing Session Variables on Redirect by bretto36</title>
		<link>http://www.breathteching.com/2008/04/28/firefox-losing-session-variables-on-redirect/comment-page-1/#comment-158</link>
		<dc:creator>bretto36</dc:creator>
		<pubDate>Thu, 18 Dec 2008 23:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2008/04/28/firefox-losing-session-variables-on-redirect/#comment-158</guid>
		<description>Generally with redirecting to a off site credit card payment system and back as long as it was the same main domain no change to www then the session variables would remain active. I will do some testing of this. Thanks for the comment Chris</description>
		<content:encoded><![CDATA[<p>Generally with redirecting to a off site credit card payment system and back as long as it was the same main domain no change to www then the session variables would remain active. I will do some testing of this. Thanks for the comment Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firefox Losing Session Variables on Redirect by Chris</title>
		<link>http://www.breathteching.com/2008/04/28/firefox-losing-session-variables-on-redirect/comment-page-1/#comment-157</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 18 Dec 2008 19:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2008/04/28/firefox-losing-session-variables-on-redirect/#comment-157</guid>
		<description>Firefox also sees a redirect from www.host.com/page1.html  to www.host.com/page2.html as a totally separate site. the solution as posted here is to only use relative links so &quot;page2.html&quot; really sucks for off site credit card payments when they redirect you back to the original site. I still consider this a bug.</description>
		<content:encoded><![CDATA[<p>Firefox also sees a redirect from <a href="http://www.host.com/page1.html" rel="nofollow">http://www.host.com/page1.html</a>  to <a href="http://www.host.com/page2.html" rel="nofollow">http://www.host.com/page2.html</a> as a totally separate site. the solution as posted here is to only use relative links so &#8220;page2.html&#8221; really sucks for off site credit card payments when they redirect you back to the original site. I still consider this a bug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FireFox Caches Images When It Shouldn&#8217;t by James</title>
		<link>http://www.breathteching.com/2007/11/10/firefox-caches-images-when-it-shouldnt/comment-page-1/#comment-156</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sat, 05 Jul 2008 13:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.breathteching.com/2007/11/10/firefox-caches-images-when-it-shouldnt/#comment-156</guid>
		<description>Thank you ! A good idea!</description>
		<content:encoded><![CDATA[<p>Thank you ! A good idea!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
