• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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