<?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: WordPress Plugin : Multipage Toolkit</title>
	<atom:link href="http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit</link>
	<description>Welcome to the Notice Bored</description>
	<lastBuildDate>Tue, 07 Feb 2012 14:26:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: kar</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-132775</link>
		<dc:creator>kar</dc:creator>
		<pubDate>Fri, 12 Aug 2011 17:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-132775</guid>
		<description>Have you a beta version for Wordpress 3.1/3.2?</description>
		<content:encoded><![CDATA[<p>Have you a beta version for WordPress 3.1/3.2?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarkan</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-130800</link>
		<dc:creator>Tarkan</dc:creator>
		<pubDate>Thu, 28 Jul 2011 21:46:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-130800</guid>
		<description>Ok, Sorry I just realised I am running a beta version on my website.

I have emailed you the beta version, to try on your website.</description>
		<content:encoded><![CDATA[<p>Ok, Sorry I just realised I am running a beta version on my website.</p>
<p>I have emailed you the beta version, to try on your website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarkan</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-130798</link>
		<dc:creator>Tarkan</dc:creator>
		<pubDate>Thu, 28 Jul 2011 21:32:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-130798</guid>
		<description>Hi,

Have you tried de-activating then activating the plugin?

I just did that on my site and view all is now working ok.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Have you tried de-activating then activating the plugin?</p>
<p>I just did that on my site and view all is now working ok.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Improve WordPress WebSite Navigation menu - Wordpress Arena</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-130237</link>
		<dc:creator>How to Improve WordPress WebSite Navigation menu - Wordpress Arena</dc:creator>
		<pubDate>Sun, 24 Jul 2011 00:13:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-130237</guid>
		<description>[...] Multi-page toolkit [...]</description>
		<content:encoded><![CDATA[<p>[...] Multi-page toolkit [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Assad</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-118206</link>
		<dc:creator>Assad</dc:creator>
		<pubDate>Sun, 08 May 2011 17:02:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-118206</guid>
		<description>I have installed the toolkit and have filled the options in settings of plugin, but still I dont see any changes in the posts. They are still appearing on a single page and i have to scroll down the whole page to reach the bottom.</description>
		<content:encoded><![CDATA[<p>I have installed the toolkit and have filled the options in settings of plugin, but still I dont see any changes in the posts. They are still appearing on a single page and i have to scroll down the whole page to reach the bottom.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aronyan</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-114734</link>
		<dc:creator>Aronyan</dc:creator>
		<pubDate>Tue, 19 Apr 2011 13:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-114734</guid>
		<description>Nice plugin. Only problem is, with any system where php gets are used for setting the language, your plugin will break: ?lang=frall/1 being the sort out output recieved, instead of /1?lang=fr.

I&#039;ve modified it to work for my site: include the line $del = explode(&quot;?&quot;, get_permalink());
and replace all occurances of get_permalink() with $del[0], as well as affixing &quot;?&quot; .$del[1]. to all outputs.
(Not exact code, but you get the gist).</description>
		<content:encoded><![CDATA[<p>Nice plugin. Only problem is, with any system where php gets are used for setting the language, your plugin will break: ?lang=frall/1 being the sort out output recieved, instead of /1?lang=fr.</p>
<p>I&#8217;ve modified it to work for my site: include the line $del = explode(&#8220;?&#8221;, get_permalink());<br />
and replace all occurances of get_permalink() with $del[0], as well as affixing &#8220;?&#8221; .$del[1]. to all outputs.<br />
(Not exact code, but you get the gist).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Lee Tong</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-106420</link>
		<dc:creator>David Lee Tong</dc:creator>
		<pubDate>Sat, 05 Mar 2011 15:50:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-106420</guid>
		<description>Hello, first of all, thanks for the plug-in.

The plug-in worked fine until I recently upgraded to WP3.1, the page links no longer appear after the WP upgrade, will there be an update soon? Thanks.

Dave (www.davidleetong.com)</description>
		<content:encoded><![CDATA[<p>Hello, first of all, thanks for the plug-in.</p>
<p>The plug-in worked fine until I recently upgraded to WP3.1, the page links no longer appear after the WP upgrade, will there be an update soon? Thanks.</p>
<p>Dave (www.davidleetong.com)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mat</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-96268</link>
		<dc:creator>mat</dc:creator>
		<pubDate>Mon, 03 Jan 2011 21:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-96268</guid>
		<description>Im using this on my site www.originbmx.com it&#039;s great thanks!</description>
		<content:encoded><![CDATA[<p>Im using this on my site <a href="http://www.originbmx.com" rel="nofollow">http://www.originbmx.com</a> it&#8217;s great thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Rosenberg</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-78770</link>
		<dc:creator>Phil Rosenberg</dc:creator>
		<pubDate>Tue, 14 Sep 2010 21:54:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-78770</guid>
		<description>I&#039;m a WP newbie and am in process of migrating my Blogger Blog to WP.  I want to break individual posts into multi-page posts.  I&#039;ve read that the original plug-in doesn&#039;t work on WP 3.0.  

Can anyone provide guidance about how to achieve multi-page post functionality for a WP 3.0 blog?

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>I&#8217;m a WP newbie and am in process of migrating my Blogger Blog to WP.  I want to break individual posts into multi-page posts.  I&#8217;ve read that the original plug-in doesn&#8217;t work on WP 3.0.  </p>
<p>Can anyone provide guidance about how to achieve multi-page post functionality for a WP 3.0 blog?</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-67956</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 07 Jul 2010 14:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-67956</guid>
		<description>I did a little bit more trial-and-error, and it started working again when I deactivated the Role Scoper plugin - which makes sense, since it was erroring on a role-related function, has_cap(). Must have been some bizarre conflict somewhere along the line. Not sure why it would have started working when MPT was deactivated but it looks like that was just a red herring. :)

Again, fantastic plugin!</description>
		<content:encoded><![CDATA[<p>I did a little bit more trial-and-error, and it started working again when I deactivated the Role Scoper plugin &#8211; which makes sense, since it was erroring on a role-related function, has_cap(). Must have been some bizarre conflict somewhere along the line. Not sure why it would have started working when MPT was deactivated but it looks like that was just a red herring. <img src='http://www.tarkan.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Again, fantastic plugin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarkan</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-67769</link>
		<dc:creator>Tarkan</dc:creator>
		<pubDate>Tue, 06 Jul 2010 19:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-67769</guid>
		<description>Hi Kevin,

Never seen anything like that before. The error messages seem very un-related to my plugin.

You could have a corrupted database  - my plugin does not make any changes to the database, so cannot see it messing things up.

Try looking through the db with phpmyadmin.</description>
		<content:encoded><![CDATA[<p>Hi Kevin,</p>
<p>Never seen anything like that before. The error messages seem very un-related to my plugin.</p>
<p>You could have a corrupted database  &#8211; my plugin does not make any changes to the database, so cannot see it messing things up.</p>
<p>Try looking through the db with phpmyadmin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-67755</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Tue, 06 Jul 2010 15:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-67755</guid>
		<description>Hey Tarkan... this plugin is incredible and does exactly what I need it to do, but I&#039;m having some issues using it with WP 2.9.2. Particularly, when I&#039;m logged out and I try to access wp-admin, I get the following error on an otherwise-blank page:

-----

Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#039;stdClass::has_cap&#039; was given in /www/wp-includes/capabilities.php on line 977

Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#039;stdClass::has_cap&#039; was given in /www/wp-includes/capabilities.php on line 977

Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#039;stdClass::has_cap&#039; was given in /www/wp-includes/capabilities.php on line 977

Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#039;stdClass::has_cap&#039; was given in /www/wp-includes/capabilities.php on line 977

Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#039;stdClass::has_cap&#039; was given in /www/wp-includes/capabilities.php on line 977

Warning: Cannot modify header information - headers already sent by (output started at /www/wp-includes/capabilities.php:977) in /www/wp-includes/pluggable.php on line 868

-----

If I try to access wp-login.php directly, everything works fine, but wp-admin has issues when I&#039;m not already logged in. I was baffled for awhile, but as I deactivated the plugins one by one, wp-admin finally worked properly after I deactivated Multi-Page Toolkit.

I&#039;ve been looking through the code for awhile now but can&#039;t find anything that may cause it... so far I&#039;ve hard-coded the settings and I&#039;ve disabled the admin options page in effort to isolate the problem, but it still does the same thing. Any ideas? Has anyone else experienced this?</description>
		<content:encoded><![CDATA[<p>Hey Tarkan&#8230; this plugin is incredible and does exactly what I need it to do, but I&#8217;m having some issues using it with WP 2.9.2. Particularly, when I&#8217;m logged out and I try to access wp-admin, I get the following error on an otherwise-blank page:</p>
<p>&#8212;&#8211;</p>
<p>Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#8216;stdClass::has_cap&#8217; was given in /www/wp-includes/capabilities.php on line 977</p>
<p>Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#8216;stdClass::has_cap&#8217; was given in /www/wp-includes/capabilities.php on line 977</p>
<p>Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#8216;stdClass::has_cap&#8217; was given in /www/wp-includes/capabilities.php on line 977</p>
<p>Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#8216;stdClass::has_cap&#8217; was given in /www/wp-includes/capabilities.php on line 977</p>
<p>Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, &#8216;stdClass::has_cap&#8217; was given in /www/wp-includes/capabilities.php on line 977</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /www/wp-includes/capabilities.php:977) in /www/wp-includes/pluggable.php on line 868</p>
<p>&#8212;&#8211;</p>
<p>If I try to access wp-login.php directly, everything works fine, but wp-admin has issues when I&#8217;m not already logged in. I was baffled for awhile, but as I deactivated the plugins one by one, wp-admin finally worked properly after I deactivated Multi-Page Toolkit.</p>
<p>I&#8217;ve been looking through the code for awhile now but can&#8217;t find anything that may cause it&#8230; so far I&#8217;ve hard-coded the settings and I&#8217;ve disabled the admin options page in effort to isolate the problem, but it still does the same thing. Any ideas? Has anyone else experienced this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarkan</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-60302</link>
		<dc:creator>Tarkan</dc:creator>
		<pubDate>Fri, 28 May 2010 10:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-60302</guid>
		<description>Hi,

Have you tried using the auto insert rather than manual insertion in to your template. I run it on my site and it is working ok, including manual insertion.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Have you tried using the auto insert rather than manual insertion in to your template. I run it on my site and it is working ok, including manual insertion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierluigi</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-59912</link>
		<dc:creator>Pierluigi</dc:creator>
		<pubDate>Tue, 25 May 2010 15:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-59912</guid>
		<description>Hi, 
this plugin with WordPress 2.9.2 don&#039;t work for me.
I put &quot;TA_content_jump(1);&quot; in my template but I don&#039;t see any results in rendered page.
How I can solve my problem? Can you help me?!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
this plugin with WordPress 2.9.2 don&#8217;t work for me.<br />
I put &#8220;TA_content_jump(1);&#8221; in my template but I don&#8217;t see any results in rendered page.<br />
How I can solve my problem? Can you help me?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ms Sparky</title>
		<link>http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/comment-page-3#comment-56528</link>
		<dc:creator>Ms Sparky</dc:creator>
		<pubDate>Sun, 25 Apr 2010 18:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit/#comment-56528</guid>
		<description>Love it. I have been looking high and low for something like this. I&#039;ve only added page numbers to one post so far. But I have a question. How do I deactivate the WP page numbers. http://mssparky.com/2010/04/daughter-of-kbr-employee-killed-by-friendly-fire-in-iraq-can-sue/

Your plug-in is top right and bottom center above the social networking. The WP page numbers are lower left. How do I get those to go away? 

Also, is there an option to &quot;fancy up&quot; the look of the page numbers...like buttons or something...not complaining. :)

I am not a code person and am still learning about blogging. Any other suggestions about how to best utilize this plug-in are welcome. 

Thank you
Ms Sparky</description>
		<content:encoded><![CDATA[<p>Love it. I have been looking high and low for something like this. I&#8217;ve only added page numbers to one post so far. But I have a question. How do I deactivate the WP page numbers. <a href="http://mssparky.com/2010/04/daughter-of-kbr-employee-killed-by-friendly-fire-in-iraq-can-sue/" rel="nofollow">http://mssparky.com/2010/04/daughter-of-kbr-employee-killed-by-friendly-fire-in-iraq-can-sue/</a></p>
<p>Your plug-in is top right and bottom center above the social networking. The WP page numbers are lower left. How do I get those to go away? </p>
<p>Also, is there an option to &#8220;fancy up&#8221; the look of the page numbers&#8230;like buttons or something&#8230;not complaining. <img src='http://www.tarkan.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am not a code person and am still learning about blogging. Any other suggestions about how to best utilize this plug-in are welcome. </p>
<p>Thank you<br />
Ms Sparky</p>
]]></content:encoded>
	</item>
</channel>
</rss>

