Hi,
I was able to go past this single/double quote issue by modifying fireboard_to_smf.sql like so :
/******************************************************************************/
--- Converting posts (this may take some time)...
/******************************************************************************/
TRUNCATE {$to_prefix}messages;
TRUNCATE {$to_prefix}attachments;
---* {$to_prefix}messages 200
---{
$row['body'] = preg_replace('~\[file name=.+?\]http.+?\[/file\]~i', '', $row['body']);
$row['body'] = preg_replace('~\[img size=(\d+)\]~i', '[img width=$1]', $row['body']);
$row['body'] = str_replace('\\\'', '\'', $row['body']);
$row['subject'] = str_replace('\\\'', '\'', $row['subject']);
$row['body'] = str_replace('\\"', '"', $row['body']);
$row['subject'] = str_replace('\\"', '"', $row['subject']);
---}
SELECT
m.id AS ID_MSG, m.thread AS ID_TOPIC, m.time AS posterTime,
SUBSTRING(m.subject, 1, 255) AS subject, m.userid AS ID_MEMBER,
SUBSTRING(m.name, 1, 255) AS posterName,
SUBSTRING(m.email, 1, 255) AS posterEmail,
SUBSTRING(m.ip, 1, 255) AS posterIP, m.catid AS ID_BOARD,
SUBSTRING(mt.message, 1, 65534) AS body, '' AS modifiedName, 'xx' AS icon
FROM ({$from_prefix}fb_messages AS m, {$from_prefix}fb_messages_text AS mt)
WHERE mt.mesid = m.id;
---*
I am not sure if this will apply to all fireboards, or if it is specific to FB 1.0.0 that I am using. Does anyone have this quote problem with another version of FB ?
Now I just have the password issue to solve before being able to make the switch !
Regards