<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : [4 admin cotonti] User pages / User posts at Cotonti.com</title>
		<link>https://www.cotonti.com</link>
		<description>Last topic posts</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Sun, 19 Apr 2026 04:12:56 -0000</pubDate>

		<item>
			<title>foxhound</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums.php?m=posts&amp;p=23742#23742">#</a> <strong>Alex300 :</strong>
Here working Bug Fix:<br />
<br />
Find the SQL near line 34 in userlatestposts.php and replace it with:<br />
<pre class="code">
$totalitems = sed_sql_result(sed_sql_query(&quot;SELECT COUNT(*) FROM $db_forum_posts WHERE fp_posterid=&quot;.$urr&#091;'user_id'&#093;), 0, 0);
</pre>
<br />
Find the SQL near line 51 in userlatestposts.php and replace it with:<br />
<pre class="code">
$sqluserlatestposts = sed_sql_query(&quot;SELECT p.fp_id, p.fp_updated, t.ft_title, t.ft_id, s.fs_id, s.fs_title, s.fs_category
		 FROM $db_forum_posts p, $db_forum_topics t, $db_forum_sections s
		 WHERE fp_posterid='&quot;.$urr&#091;'user_id'&#093;.&quot;'
		 AND p.fp_topicid=t.ft_id
		 AND p.fp_sectionid=s.fs_id
		 GROUP BY t.ft_id
		 ORDER BY fp_updated DESC
		 LIMIT $df, &quot;.$cfg&#091;'plugin'&#093;&#091;'userlatestposts'&#093;&#091;'countonpage'&#093;);
</pre>
<br />
The same query is used in userlatestposts.ajax.php. Change it too.<br />
<br />
Enjoy :)</blockquote>
<br />
<br />
Thanks a lot for your help, but this too does not fix it. Pressing the &quot;last page&quot; button of the pagination still shows &quot;none&quot; instead.<br /><br /><b>Added 38 days later:</b><br /><br />Any updates on this? it does not really matter wether the person has 100000 posts or just 20, navigating to the last few pages of his posts (using this plugin) will result in no posts being displayed at all.]]></description>
			<pubDate>Fri, 26 Mar 2010 17:07:02 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post23782]]></link>
		</item>
		<item>
			<title>Alex300</title>
			<description><![CDATA[Yes.<br />
The topic can be big and messages can be on different pages.<br />
Or make it optional and turn it on/off on plug-in options page.]]></description>
			<pubDate>Wed, 24 Mar 2010 17:14:58 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post23747]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[So you think if the user have posted 10 his latest posts in the same topic, we should display links to all of these posts in his profile?]]></description>
			<pubDate>Wed, 24 Mar 2010 14:16:35 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post23746]]></link>
		</item>
		<item>
			<title>Alex300</title>
			<description><![CDATA[Here working Bug Fix:<br />
<br />
Find the SQL near line 34 in userlatestposts.php and replace it with:<br />
<pre class="code">
$totalitems = sed_sql_result(sed_sql_query(&quot;SELECT COUNT(*) FROM $db_forum_posts WHERE fp_posterid=&quot;.$urr&#091;'user_id'&#093;), 0, 0);
</pre>
<br />
Find the SQL near line 51 in userlatestposts.php and replace it with:<br />
<pre class="code">
$sqluserlatestposts = sed_sql_query(&quot;SELECT p.fp_id, p.fp_updated, t.ft_title, t.ft_id, s.fs_id, s.fs_title, s.fs_category
		 FROM $db_forum_posts p, $db_forum_topics t, $db_forum_sections s
		 WHERE fp_posterid='&quot;.$urr&#091;'user_id'&#093;.&quot;'
		 AND p.fp_topicid=t.ft_id
		 AND p.fp_sectionid=s.fs_id
		 GROUP BY t.ft_id
		 ORDER BY fp_updated DESC
		 LIMIT $df, &quot;.$cfg&#091;'plugin'&#093;&#091;'userlatestposts'&#093;&#091;'countonpage'&#093;);
</pre>
<br />
The same query is used in userlatestposts.ajax.php. Change it too.<br />
<br />
Enjoy <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" /><br />
<br />
<strong>Trustmaster</strong><br />
I think in a trunk it is necessary to use this code too. <br />
Because that variant, that now is in a trunk outputs not all posts (removes posts with identical fp_topicid)<br />
<br />
<pre class="code">
$totalitems = sed_sql_result(sed_sql_query(&quot;SELECT COUNT(DISTINCT fp_topicid)
	                FROM $db_forum_posts
	                WHERE fp_posterid=&quot;.$urr&#091;'user_id
</pre>
We should not use DISTINCT in this case]]></description>
			<pubDate>Wed, 24 Mar 2010 06:03:09 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post23742]]></link>
		</item>
		<item>
			<title>foxhound</title>
			<description><![CDATA[Thanks for that, but the error still exists, even with that sql replaced.<br />
I can click to page 256 of my latest posts using the pagination. Clicking on page 257 closes it again like I reported earlier. According to the pagination I have 500 pages. (500 x 15 lines)]]></description>
			<pubDate>Mon, 15 Mar 2010 07:19:44 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post23547]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Yes, it's fixed in SVN but hasn't been fixed here yet. Find the SQL near line 50 in <em>userlatestposts.php</em> and replace it with:<br />
<div class="highlight"><pre class="php">$sqluserlatestposts = sed_sql_query(&quot;SELECT p.fp_id, p.fp_updated, t.ft_title, t.ft_id, s.fs_id, s.fs_title, s.fs_category
	FROM $db_forum_posts AS p
		LEFT JOIN $db_forum_topics AS t ON p.fp_topicid=t.ft_id
			LEFT JOIN $db_forum_sections AS s ON p.fp_sectionid=s.fs_id
	WHERE fp_posterid={$urr&#091;'user_id'&#093;}
	GROUP BY t.ft_id
	ORDER BY fp_updated DESC
	LIMIT $df, &quot;.$cfg&#091;'plugin'&#093;&#091;'userlatestposts'&#093;&#091;'countonpage'&#093;);</pre></div>
The same query is used in <em>userlatestposts.ajax.php</em> near line 58.]]></description>
			<pubDate>Sun, 14 Mar 2010 23:56:52 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post23536]]></link>
		</item>
		<item>
			<title>foxhound</title>
			<description><![CDATA[There is an issue with the User's recent posts, not just here but in general with that plugin.<br />
If the user has xx ammount of posts the pagination comes up under those topic links. Try clicking the button to move to the last page, all topics will dissapear.<br />
It also happens if you for example want to go to page 10, try this user to see for yourself:<br />
<a href="http://www.cotonti.com/users/Alex300">http://www.cotonti.com/users/Alex300</a><br />
<br />
Click to go to page 5, click to go to page 10 and pufff, all topics are gone.<br />
Having this fixed here would be nice and maybe share how it was fixed? <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" />]]></description>
			<pubDate>Sat, 13 Mar 2010 21:38:02 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post23524]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Sorry, I've overwritten the templates <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":-)" />]]></description>
			<pubDate>Wed, 15 Jul 2009 15:19:00 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post14288]]></link>
		</item>
		<item>
			<title>pieter</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums.php?m=posts&amp;p=12889#12889">#</a> <strong>pieter :</strong>
1000x Thanks Kilandor.<br />
<br />
One small layout error:<br />
<br />
05-28 11:33: Forums / Cotonti / General [4 admin cotonti] User pages / User posts at Cotonti.com<br />
<br />
There should be a &quot;/&quot; between path and topic-title.<br />
</blockquote>
<br />
After the update the recent post/topics are gone again.  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/sad.gif" alt=":-(" />]]></description>
			<pubDate>Wed, 15 Jul 2009 14:40:25 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post14282]]></link>
		</item>
		<item>
			<title>Lombi</title>
			<description><![CDATA[Until that's filled you can use the site's RSS feed for forums to monitor the discussions.]]></description>
			<pubDate>Fri, 29 May 2009 21:29:24 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12891]]></link>
		</item>
		<item>
			<title>GHengeveld</title>
			<description><![CDATA[Now that we're requesting, I'd love to see the <a href="http://www.cotonti.com/downloads/plugins/forums/notifier">notifier</a> plugin installed on this site.]]></description>
			<pubDate>Fri, 29 May 2009 21:28:11 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12890]]></link>
		</item>
		<item>
			<title>pieter</title>
			<description><![CDATA[1000x Thanks Kilandor.<br />
<br />
One small layout error:<br />
<br />
05-28 11:33: Forums / Cotonti / General [4 admin cotonti] User pages / User posts at Cotonti.com<br />
<br />
There should be a &quot;/&quot; between path and topic-title.]]></description>
			<pubDate>Fri, 29 May 2009 20:46:25 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12889]]></link>
		</item>
		<item>
			<title>Kingsley</title>
			<description><![CDATA[Thx man..]]></description>
			<pubDate>Fri, 29 May 2009 19:27:41 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12888]]></link>
		</item>
		<item>
			<title>Kilandor</title>
			<description><![CDATA[Done]]></description>
			<pubDate>Fri, 29 May 2009 19:21:14 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12887]]></link>
		</item>
		<item>
			<title>Kingsley</title>
			<description><![CDATA[would be nice indeed..]]></description>
			<pubDate>Thu, 28 May 2009 23:42:35 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12875]]></link>
		</item>
		<item>
			<title>robofreak111</title>
			<description><![CDATA[I agree x2<br />
Those are two great plugins]]></description>
			<pubDate>Wed, 27 May 2009 07:03:59 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12855]]></link>
		</item>
		<item>
			<title>Dayver</title>
			<description><![CDATA[+1 agree<br />
<br />
and on index page it would be useful to see plugin <a href="http://trac.cotonti.com/browser/branches/plugins/recentcomments">recentcomments</a>  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/confused.gif" alt=":-/" />]]></description>
			<pubDate>Wed, 27 May 2009 06:11:25 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12853]]></link>
		</item>
		<item>
			<title>pieter</title>
			<description><![CDATA[Hello Admins,<br />
<br />
Is it possible to install the 2 plugins below on this site.<br />
<a href="http://www.cotonti.com/downloads/plugins/forums/Users_recent_posts">User's recent posts</a><br />
<a href="http://www.cotonti.com/downloads/plugins/pages-lists/Users_pages">User's pages</a><br />
<br />
At neocrome it was installed and a nice feature of the site.<br />
Sometimes you know user X has answered something and you can't find it in search.<br />
Then you can look via that way.<br />
<br />
Just an idea.]]></description>
			<pubDate>Wed, 27 May 2009 04:15:00 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2796&d=0#post12851]]></link>
		</item>
	</channel>
</rss>