Hallo,
This is funny. I export mysql codes to the webserver. Yet, I cannot run the codes correctly, there are some errors when I run the codes:
Error
SQL query:
--
-- Database: `project_infracom`
--
-- --------------------------------------------------------
--
-- Table structure for table `infracom_admin`
--
CREATE TABLE IF NOT EXISTS `infracom_admin` (
`admin_ID` bigint( 20 ) unsigned NOT NULL AUTO_INCREMENT ,
`admin_login` varchar( 70 ) NOT NULL DEFAULT '',
`admin_pass` varchar( 70 ) NOT NULL DEFAULT '',
`admin_token` varchar( 70 ) NOT NULL DEFAULT '',
`admin_nicename` varchar( 60 ) NOT NULL DEFAULT '',
`admin_email` varchar( 100 ) NOT NULL DEFAULT '',
`admin_url` varchar( 100 ) NOT NULL DEFAULT '',
PRIMARY KEY ( `admin_ID` ) ) ENGINE = InnoDB DEFAULT CHARSET = utf8 AUTO_INCREMENT =4;
MySQL said:
1146 - Table 'project_infracom.infracom_admin' doesn't exist
-----------------
How to fix it?