I have spent past 3 hours trying to find the solution to this but, I am doing all the suggestions, yet still nothing works. I have a database setup, I have a user with privileges setup with password. I am using the following code to import a .csv file into the table created. I am using the following:
LOAD DATA INFILE '_ARCHIVE_TABLE_.csv' INTO TABLE `2_archive`
LINES TERMINATED BY '\n' (id, Date, IP, Type_of_Service, Name_of_Agency,
Name_of_Broker, Email, Name_of_Seller, Street_address, Town,
Style_or_color_of_house, Directions_to_property_, Full_address, lat,lon,
Qty, date_completed, Location_of_Agency)
SET Date = CURRENT_TIMESTAMP, date_completed =date;
When I submit this, I get the error "access denied for user 'uname@'localhost' (using password: YES)." Where am I supposed to add this information the above code, in order for it to know I have permissions? The version of phpmyadmin in use is 4.3.8, if that helps. I have been reading similar questions, googling, you name it for 5 hours...time to ask for help....please?!?