|
|
|
|
|
Re: Converting phpBB2 w/mail2forum posts [message #168497 is a reply to message #168468] |
Sun, 12 May 2013 07:01 |
|
cpreston
Messages: 160 Registered: July 2012 Location: Oceanside
Karma: 6
|
Senior Member |
|
|
The -1 fix worked like a charm.
The fud30_thread_notify issue was that there was no validation (or validation did not work) in phpbb2 that should have restricted a user from subscribing to a same topic. This created duplicate records in the _topics_watch table.
The following changes to the phpBB2 map fixed the issue.
//commented line no 249 and replaced it with the line below
$c = bbq('SELECT * FROM '. dbpref .'topics_watch GROUP BY user_id,topic_id HAVING notify_status=0');
[Updated on: Sun, 12 May 2013 07:01] Report message to a moderator
|
|
|
Re: Converting phpBB2 w/mail2forum posts [message #168507 is a reply to message #168497] |
Mon, 13 May 2013 03:45 |
|
cpreston
Messages: 160 Registered: July 2012 Location: Oceanside
Karma: 6
|
Senior Member |
|
|
I have almost successfully run this tool against my current system. Your fix addressed the -1 userid problem and my fix addressed the thread_notify problem.
I now get the following error when I run it. Based on my understanding of what it is doing, I think I'm OK, but I thought I'd report it notheless.
Import private messages...
PHP Notice: Undefined variable: ADD_ADMIN in /home/cpreston/public_html/forum/convert.php on line 911
Notice: Undefined variable: ADD_ADMIN in /home/cpreston/public_html/forum/convert.php on line 911
[Updated on: Mon, 13 May 2013 04:44] Report message to a moderator
|
|
|
|