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

Home » FUDforum » How To » Move Posts / Split Topics (I have problems doing these steps)
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
Move Posts / Split Topics [message #164386] Thu, 03 February 2011 11:13 Go to next message
Rodge is currently offline  Rodge   Switzerland
Messages: 18
Registered: July 2006
Karma: 0
Junior Member
Hi

first of all: Thanks a lot for this great forum!

Using a fresh installation of FUDforum with these versions:
FUDforum: 3.0.2
PHP: 5.3.2-1ubuntu4.7
Database: mysql 5.1.41-3ubuntu12.8 (mysql)
Operating system: Linux 2.6.32-26-generic


Now I need to move some post from one topic to another. The topic has 14 posts, but when I click on "Beträge verschieben" (move posts), I only see one post to select.

The same if I choose "Thema aufteilen" (split topic).

What's wrong?
Thanks!

EDIT: It's the same for a priviledged user as for the admin user (even the same post is selectable, it's the first of the topic)

[Updated on: Thu, 03 February 2011 11:14]

Report message to a moderator

Re: Move Posts / Split Topics [message #164388 is a reply to message #164386] Thu, 03 February 2011 11:36 Go to previous messageGo to next message
The Witcher is currently offline  The Witcher   United States
Messages: 675
Registered: May 2009
Location: USA
Karma: 3
Senior Member
Have you ran a Forum Consistency check, and checked your error log for issues? (Those, along with rebuilding themes, should always be the 1st steps in resolving a problem).

"I'm a Witcher, I solve human problems; not always using a sword!"
Re: Move Posts / Split Topics [message #164389 is a reply to message #164388] Thu, 03 February 2011 13:26 Go to previous messageGo to next message
Rodge is currently offline  Rodge   Switzerland
Messages: 18
Registered: July 2006
Karma: 0
Junior Member
Thank you!

I did the consistency check, with no special or obvious errors...

Any other ideas? Can someone using MySQL check if this function works on their system?
Re: Move Posts / Split Topics [message #164390 is a reply to message #164389] Thu, 03 February 2011 13:30 Go to previous messageGo to next message
The Witcher is currently offline  The Witcher   United States
Messages: 675
Registered: May 2009
Location: USA
Karma: 3
Senior Member
Works fine on my system using Ver 3.0.2, unfortunately I don't have an answer to your problem.



"I'm a Witcher, I solve human problems; not always using a sword!"
Re: Move Posts / Split Topics [message #164424 is a reply to message #164390] Fri, 04 February 2011 13:07 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
After clicking on "Move messages" you will get a list of all the messages in the topic to select from.

If you only see one post, it means that the topic doesn't have replies.
Re: Move Posts / Split Topics [message #164448 is a reply to message #164424] Sun, 06 February 2011 08:20 Go to previous messageGo to next message
Rodge is currently offline  Rodge   Switzerland
Messages: 18
Registered: July 2006
Karma: 0
Junior Member
No, as I said in my first post, there are 14 replies in the topic...
Re: Move Posts / Split Topics [message #164450 is a reply to message #164448] Sun, 06 February 2011 15:10 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
Sorry, haven't seen it yet.
To take it further I need a reproducible test case or access to your forum.
Re: Move Posts / Split Topics [message #164468 is a reply to message #164450] Tue, 08 February 2011 16:35 Go to previous messageGo to next message
Rodge is currently offline  Rodge   Switzerland
Messages: 18
Registered: July 2006
Karma: 0
Junior Member
Ok, I will try to reproduce a test case with public access until the end of the week.

Thank you!
Re: Move Posts / Split Topics [message #164502 is a reply to message #164468] Sat, 12 February 2011 04:06 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
Any progress on this?
Re: Move Posts / Split Topics [message #164534 is a reply to message #164502] Tue, 15 February 2011 10:04 Go to previous messageGo to next message
Rodge is currently offline  Rodge   Switzerland
Messages: 18
Registered: July 2006
Karma: 0
Junior Member
No.
I set up a test forum without SSL encryption and without basic authentication, and it works there.

Still not in my real setup.... (with SSL, BasicAuth)

Are there any log files and/or verbose logging switches to look after?

[Updated on: Tue, 15 February 2011 10:06]

Report message to a moderator

Re: Move Posts / Split Topics [message #164660 is a reply to message #164534] Thu, 24 February 2011 16:02 Go to previous messageGo to next message
jerrys is currently offline  jerrys
Messages: 10
Registered: November 2010
Karma: 0
Junior Member
I have exactly the same problem - I have a topic with 3 posts when I try "move messages" only the first one shows up to move.

This is a new forum; I can give you access to it. Please contact me offline if you would like.
Re: Move Posts / Split Topics [message #164668 is a reply to message #164660] Fri, 25 February 2011 17:28 Go to previous messageGo to next message
jerrys is currently offline  jerrys
Messages: 10
Registered: November 2010
Karma: 0
Junior Member
Frank, did your test on the board find anything?
Re: Move Posts / Split Topics [message #164677 is a reply to message #164668] Sat, 26 February 2011 07:19 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
I was able to fix the problem by changing the "uq" (unbuffered query) to "q" (normal query) in the code below (in split_th.php.t):

$c = uq('SELECT m.id, m.foff, m.length, m.file_id, m.subject, m.post_stamp, u.alias FROM ...
while ($r = db_rowobj($c)) {
	$msg_entry .= '{TEMPLATE: msg_entry}';
}


Just don't ask me why! It may very well be a MySQL or PHP bug...
Re: Move Posts / Split Topics [message #164678 is a reply to message #164677] Sat, 26 February 2011 07:26 Go to previous messageGo to next message
Rodge is currently offline  Rodge   Switzerland
Messages: 18
Registered: July 2006
Karma: 0
Junior Member
Thanks for sharing. I will give it a try!
Re: Move Posts / Split Topics [message #164679 is a reply to message #164678] Sat, 26 February 2011 10:40 Go to previous messageGo to next message
jerrys is currently offline  jerrys
Messages: 10
Registered: November 2010
Karma: 0
Junior Member
It worked great. I was able to split the thread and move the messages to the appropriate place.

Thanks!
Re: Move Posts / Split Topics [message #164839 is a reply to message #164679] Thu, 17 March 2011 22:43 Go to previous messageGo to next message
yuanyelss is currently offline  yuanyelss   
Messages: 3
Registered: February 2011
Karma: 0
Junior Member
You run a forum for consistency check, and check the error log of the problem? (These, along with the theme of reconstruction, should always be the first step in solving the problem.)
Re: Move Posts / Split Topics [message #164841 is a reply to message #164839] Thu, 17 March 2011 23:22 Go to previous message
jerrys is currently offline  jerrys
Messages: 10
Registered: November 2010
Karma: 0
Junior Member
This was a brand new forum with less than a dozen posts in it. There was nothing to check.

But Frank did debug the board and found the bug. I'm not sure why it happened either - but he was able to fix it.
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Message posted in wrong forum?
Next Topic: White list IP-Filter for registration
Goto Forum:
  

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

Current Time: Sat Apr 20 02:59:17 GMT 2024

Total time taken to generate the page: 0.02988 seconds