When trying to inport data from a local text file into a mysql table on a client's server through phpMyAdmin I keep getting the following error:
Error
SQL-query :
LOAD DATA LOCAL INFILE '' REPLACE INTO TABLE product_categories
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
ESCAPED BY '\'
LINES TERMINATED BY '\r\n'
MySQL said:
File '' not found (Errcode: 2)
It appears that mysql or phpmyadmin just plain aren't even seeing the file.
PLEASE HELP