Import mysql db problem
#6

This line was found in the file you are trying to import:
PHP код:
CREATE DATABASE `` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
As you can see, it is empty; thus an incorrect database name. The correct line would be:
PHP код:
CREATE DATABASE IF NOT EXISTS `fts` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
So either find and fix that line or remove it completely - the database has been created already.
Reply


Messages In This Thread
Import mysql db problem - by OmegaKiller72 - 15.07.2016, 18:47
Re: Import mysql db problem - by Parallex - 15.07.2016, 20:43
Re: Import mysql db problem - by OmegaKiller72 - 15.07.2016, 20:55
Re: Import mysql db problem - by Parallex - 15.07.2016, 20:59
Re: Import mysql db problem - by OmegaKiller72 - 15.07.2016, 21:10
Re: Import mysql db problem - by Konstantinos - 15.07.2016, 21:11
Re: Import mysql db problem - by OmegaKiller72 - 15.07.2016, 21:24

Forum Jump:


Users browsing this thread: 2 Guest(s)