How come this difference?
INSERT INTO `db1_search_wordlist` VALUES ('bara', '251', '0');
INSERT INTO `db2_search_wordlist` VALUES (0x3237, 3861, 0);
Data from two different databases on different servers, both using phpBB. But why that difference in the database?
Trying to move phpBB-forums from one server/db to another, but got a few problems. Since my users mostly use nordic letters like åäö (not sure you can see those, but å can be seen when entered into HTML. An a with a ring over it...) I had to convert some chars from the db into correct HTML (å etc), otherwise the output on the new server would be some rubbish when it came to special chars. Problem is when converting, words cannot be found when doing a search with one of those special chars. And since words are entered into db as a strange string I'm unable to change it there.
Could a solution for me be downloading all files related to the db and upload the needed stuff at the new server?
Anyone with a clue?
INSERT INTO `db1_search_wordlist` VALUES ('bara', '251', '0');
INSERT INTO `db2_search_wordlist` VALUES (0x3237, 3861, 0);
Data from two different databases on different servers, both using phpBB. But why that difference in the database?
Trying to move phpBB-forums from one server/db to another, but got a few problems. Since my users mostly use nordic letters like åäö (not sure you can see those, but å can be seen when entered into HTML. An a with a ring over it...) I had to convert some chars from the db into correct HTML (å etc), otherwise the output on the new server would be some rubbish when it came to special chars. Problem is when converting, words cannot be found when doing a search with one of those special chars. And since words are entered into db as a strange string I'm unable to change it there.
Could a solution for me be downloading all files related to the db and upload the needed stuff at the new server?
Anyone with a clue?