Error with moving hosts

S2S-Robert

Verified User
Joined
Jun 24, 2003
Messages
397
Location
The Netherlands
When moving hosts I get the following error with some of the databases (not all strangely...)

mysql error: File '/usr/share/mysql/charsets/?.conf' not found (Errcode: 2)

Any thoughts?
 
Last edited:
It has something to do with the fact that I moved the files from a mysql 4.1 server to a 4.0.17 server, cause I also get errors importing.

Seems something is wrong with:

Code:
DROP TABLE IF EXISTS `access`;
CREATE TABLE `access` (
  `userid` int(10) unsigned NOT NULL default '0',
  `forumid` smallint(5) unsigned NOT NULL default '0',
  `accessmask` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`userid`,`forumid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Especially with CHARSET=latin1. If I do an ls on the old server I get several XML files, while on the DA server I get conf files in the charset folder mentioned above.
 
Back
Top