• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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