FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum Development » Bug Reports » nntp import reloads (duplicates) posts randomly (possible bug - fix provided - your call)
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: nntp import reloads (duplicates) posts randomly [message #36233 is a reply to message #36231] Fri, 09 March 2007 03:26 Go to previous message
rdthoms is currently offline  rdthoms   United States
Messages: 12
Registered: January 2007
Karma:
Junior Member
CVS is the code repository. It means he's made the change permanent and any new builds after this date should have the fix.

However, if you think you're running into the same exact problem as me you can make this fix yourself on your installation. Even if you are not seeing the same exact problem, this fix should not harm anything.

In the data directory area edit the file include/nntp.inc.

Look for a piece of code (in my version it's around line 350-400) like:

if ($start_id && $start_id > $this->group_first && $start_id <= $this->group_last) {
  $this->group_first = $start_id;
}


and change it to:

if ($start_id && $start_id > $this->group_first) {
  $this->group_first = $start_id;
}


So make that edit and see if that fixes your problem...


[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Database or file to store message
Next Topic: Can not display online user name
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Nov 22 21:29:30 GMT 2024

Total time taken to generate the page: 0.57925 seconds