• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Issue LOAD DATA LOCAL INFILE is forbidden - Plesk 18

Peter_R

Basic Pleskian
Hello i have a script that purges a MariaDB and Update with new date on daily basis.


However when executing i get following error:


" LOAD DATA LOCAL INFILE is forbidden, check mysqli.allow_local_infile "


I looked everywhere and very little info out there.


i modified

/etc/my.cnf.d

to

local-infile=1


rebooted


Nothing Helps


Please advise on how to enable Local Infile in Plesk 18 Linux.


please help

Thanks
 
php -i | grep mysqli.allow_local_infile
mysqli.allow_local_infile => Off => Off

should be

php -i | grep mysqli.allow_local_infile
mysqli.allow_local_infile => On => On

edit your CLI php.ini accordingly

(took me most of the day to figure this out.. the web scipts were all showing mysqli.allow_local_infile => On => On but somehow the cli was coming into play)
 
Back
Top