I'm moving a site over from another hosting company but when i'm uploading sql file i get the following error:
Quote:
|
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
|
Seen has it says near line "1" i will post just the top few lines of the sql file
Code:
-- phpMyAdmin SQL Dump
-- version 3.5.2.2
-- http://www.phpmyadmin.net
--
-- Generation Time: Sep 06, 2012 at 02:26 PM
-- Server version: 5.5.27-28.0
-- PHP Version: 5.3.5
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `wbff_11001226_hubdir`
--
-- --------------------------------------------------------
--
-- Table structure for table `adminuser`
--
CREATE TABLE IF NOT EXISTS `adminuser` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` tinytext NOT NULL,
`username` tinytext NOT NULL,
`password` tinytext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
Please note that i have no knowledge at all with mysql code etc.. So you will have to spell it out in plain english
Any help would be much appreciated.
PS: I can include the file if needed..