<?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 on: Static Page eXtended</title>
	<atom:link href="http://blog.jixor.com/plugins/static-page-extended/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jixor.com</link>
	<description>General ramblings; Wordpress plugins, PHP, software, IT, etc.</description>
	<lastBuildDate>Wed, 21 Oct 2009 15:21:10 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Juan Daniel</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-459</link>
		<dc:creator>Juan Daniel</dc:creator>
		<pubDate>Mon, 07 Sep 2009 09:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-459</guid>
		<description>I wrote some PHP in the created file but it doesn&#039;t seem to update, its left in blank.
thank you</description>
		<content:encoded><![CDATA[<p>I wrote some PHP in the created file but it doesn&#8217;t seem to update, its left in blank.<br />
thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jixor</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-440</link>
		<dc:creator>jixor</dc:creator>
		<pubDate>Wed, 27 May 2009 14:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-440</guid>
		<description>Sorry, I dont quite understand what you want.</description>
		<content:encoded><![CDATA[<p>Sorry, I dont quite understand what you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michale</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-435</link>
		<dc:creator>Michale</dc:creator>
		<pubDate>Mon, 02 Feb 2009 00:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-435</guid>
		<description>can I get more info about this plugin ? i need him for my site. thank you</description>
		<content:encoded><![CDATA[<p>can I get more info about this plugin ? i need him for my site. thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: svdasein</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-429</link>
		<dc:creator>svdasein</dc:creator>
		<pubDate>Sun, 11 Jan 2009 09:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-429</guid>
		<description>Ok - I found it.

In function jp_staticpages and then within the conditional block with the JPSPX_INLINE_INCLUDES test, the code uses the preg_match() call to ostensibly gather a list of includes on the page.  However preg_match() explicitly stops when it finds the first match - the appropriate call is preg_match_all().

http://us2.php.net/preg_match versus http://us2.php.net/manual/en/function.preg-match-all.php

Further, the structure returned by preg_match_all is not what the code expects - preg_match_all returns a multidimensional array, so what the code needs to do is to iterate over the elements in $inlinincludes[1][1..N] - the preg_match_all page I linked above describes the structure.

I&#039;ve made these changes locally and I&#039;m able to include more than one item in a given page/post.</description>
		<content:encoded><![CDATA[<p>Ok &#8211; I found it.</p>
<p>In function jp_staticpages and then within the conditional block with the JPSPX_INLINE_INCLUDES test, the code uses the preg_match() call to ostensibly gather a list of includes on the page.  However preg_match() explicitly stops when it finds the first match &#8211; the appropriate call is preg_match_all().</p>
<p><a href="http://us2.php.net/preg_match" rel="nofollow">http://us2.php.net/preg_match</a> versus <a href="http://us2.php.net/manual/en/function.preg-match-all.php" rel="nofollow">http://us2.php.net/manual/en/function.preg-match-all.php</a></p>
<p>Further, the structure returned by preg_match_all is not what the code expects &#8211; preg_match_all returns a multidimensional array, so what the code needs to do is to iterate over the elements in $inlinincludes[1][1..N] &#8211; the preg_match_all page I linked above describes the structure.</p>
<p>I&#8217;ve made these changes locally and I&#8217;m able to include more than one item in a given page/post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: svdasein</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-439</link>
		<dc:creator>svdasein</dc:creator>
		<pubDate>Sun, 11 Jan 2009 08:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-439</guid>
		<description>Hi - just ran into a strange one.  I&#039;m working with an older wordpress - 2.1 - and the latest static page extended.

The strangeness is this:  I&#039;ve got one page on which I&#039;d like to include two static pages with inline includes.  The *first* one works.  Subsequent to that, the only thing you can include on a page is that file - you can include it again and again, but you cannot specify a different file - you just get nothing.

This ring any bells?</description>
		<content:encoded><![CDATA[<p>Hi &#8211; just ran into a strange one.  I&#8217;m working with an older wordpress &#8211; 2.1 &#8211; and the latest static page extended.</p>
<p>The strangeness is this:  I&#8217;ve got one page on which I&#8217;d like to include two static pages with inline includes.  The *first* one works.  Subsequent to that, the only thing you can include on a page is that file &#8211; you can include it again and again, but you cannot specify a different file &#8211; you just get nothing.</p>
<p>This ring any bells?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: En.nicuilie.eu Blogs &#187; Top 1000 WordPress Plugin Authors</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-437</link>
		<dc:creator>En.nicuilie.eu Blogs &#187; Top 1000 WordPress Plugin Authors</dc:creator>
		<pubDate>Wed, 31 Dec 2008 08:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-437</guid>
		<description>[...] Static Page eXtended [...]</description>
		<content:encoded><![CDATA[<p>[...] Static Page eXtended [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 4webmasters &#187; Top 1000 WordPress Plugin Authors</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-438</link>
		<dc:creator>4webmasters &#187; Top 1000 WordPress Plugin Authors</dc:creator>
		<pubDate>Wed, 31 Dec 2008 02:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-438</guid>
		<description>[...] Static Page eXtended [...]</description>
		<content:encoded><![CDATA[<p>[...] Static Page eXtended [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jixor</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-433</link>
		<dc:creator>jixor</dc:creator>
		<pubDate>Sun, 02 Nov 2008 06:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-433</guid>
		<description>Please see the Wordpress plugin Directory listing for screen shots.</description>
		<content:encoded><![CDATA[<p>Please see the Wordpress plugin Directory listing for screen shots.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thanks for this.</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-434</link>
		<dc:creator>Thanks for this.</dc:creator>
		<pubDate>Fri, 31 Oct 2008 06:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-434</guid>
		<description>&lt;strong&gt;Thanks for this....&lt;/strong&gt;

Just what the doctor ordered....</description>
		<content:encoded><![CDATA[<p><strong>Thanks for this&#8230;.</strong></p>
<p>Just what the doctor ordered&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Free-PHP-Scripts.org</title>
		<link>http://blog.jixor.com/plugins/static-page-extended/comment-page-1/#comment-432</link>
		<dc:creator>Free-PHP-Scripts.org</dc:creator>
		<pubDate>Mon, 27 Oct 2008 03:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://jp.jixor.com/plugins/static-page-extended/#comment-432</guid>
		<description>Any screen shots?</description>
		<content:encoded><![CDATA[<p>Any screen shots?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
