Hi Andy,
thanks for the set sql_mode - that did mean that phpmyadmin was able to start to execute it. Then I had a different issue... it seems that my live site has tons of records that broke a RecordID_Version constraint... on Page_versions (or CustomPage_version) for each of these pages...
SELECT RecordID,Version,count(*)
FROM Page_versions
GROUP BY RecordID,Version
HAVING count(*)>1;
...but that is fine I just dropped the local constraints and it all happily imported using phpmyadmin.
Is this something you have seen before? If so is it possible to add something to drop all constraints at the beginning of the script and then re-enable at the end? (as an option naturally) Also an option for adding the setting of ANSI mode?
Basically I can now export and re-import - it would be great if those road bumps could be ironed out so that it wouldn't take any effort to import/export apart from a couple of clicks.
>> p.s.: what was the error you got when reading the db plumber dump with db plumber?
I don't get an error when using chrome or safari, it just redirects to 'localhost/mywebstie/#' - so it doesn't seem to do any import it just shows the homepage with a '#' appended. (Maybe some sort of JavaScript issues?) I'm using wamp on windows if that helps.
When using FireFox it just says SQL executed - but it has not as I truncate a simple table first - and it is not re-filled - so it seems to just return true without doing anything.
Thanks again Andy for your help this is much appreciated!
Barry