hello. I converted successfully from vb 3.8.4 to smf1.1.10 (yes using the vb3.7 converter).
I am quite happy with the outcome so far.
I need to test things further.
but one thing comes out clear:
all the links on my previous forums are not now any more valid.
in order to fix the links in all posts, I, a non-mysql coder, tried this:
SET @BEFORE='/forum/showthread.php?t=';
SET @AFTER='/leforum/index.php?topic=';
UPDATE smf_messages SET body =REPLACE(body,@BEFORE,@AFTER)
to my surprise this is giving me the error :
UPDATE smf_messages SET body = REPLACE( body, @BEFORE , @AFTER ) ;
MySQL said: Documentation
#1270 - Illegal mix of collations (utf8_general_ci,IMPLICIT), (utf8_unicode_ci,IMPLICIT), (utf8_unicode_ci,IMPLICIT) for operation 'replace'
I even tried to import this code in a text file...... same result.
server settings:
Apache v2.2.13 (cgi)
PHP 5.2.6
Any help there ?