• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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