The commands for LOAD DATA INFILE/OUTFILE, are not allowed on our servers for security reasons. In order for you to use these functions you must use Load Data please use "LOAD DATA LOCAL"

The difference between the two is that without the LOCAL keyword the command requests the server to find the file and load data from it. With the LOCAL keyword, the mysql client (eg the customer's script, phpmyadmin, or the customer connecting from ssh etc) is what does the loading and then passes the data to mysql. As such, there is no special permissions needed for customers to do a "LOAD DATA LOCAL"

There are some alternatives to this, if you're trying to import or export a databases please use the following

  • LOAD DATA INFILE ALTERNATIVE FROM SSH:
    $ echo "source databasefile.sql" | mysql -u user -p password databasename
  • LOAD DATA OUTFILE ALTERNATIVE FROM SSH:
    $ mysql -u user -p password databasename > outputfile.sql

Was this article useful and on point?

Find out more about MonsterMegs entire range of optimized Web Hosting Services and take action today on improving your website Loading Speed, Security, and overall Stability!
Was this answer helpful? 0 Users Found This Useful (0 Votes)