can't import wordpress tables from old host

shyguy

New Member
Messages
41
Reaction score
0
Points
0
SQL query:

http://shyguy.x10hosting.com/blog-- phpMyAdmin SQL Dump -- version 2.11.4 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jul 14, 2008 at 05:51 PM -- Server version: 5.0.27 -- PHP Version: 4.3.10-16 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

MySQL said:

#1064 - 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 'http://shyguy.x10hosting.com/blog
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"' at line 1
 

Nathan H

New Member
Messages
562
Reaction score
0
Points
0
A possible solution
instead of SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
use SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO';
SQL can be picky sometimes between ' and "
or you could also try removing the line all together, then setting the option through phpmyadmin
 
Top