I'm a newbie running ubuntu 18.04 with Apache2, Php (7.3), and Mysql.
When I run
sudo php -r 'phpinfo();' | grep -i mysqli
I get the result:
/etc/php/7.3/cli/conf.d/20-mysqli.ini,
mysqli
MysqlI Support => enabled
mysqli.allow_local_infile => Off => Off
mysqli.allow_persistent => On => On
mysqli.default_host => no value => no value
mysqli.default_port => 3306 => 3306
mysqli.default_pw => no value => no value
mysqli.default_socket => no value => no value
mysqli.default_user => no value => no value
mysqli.max_links => Unlimited => Unlimited
mysqli.max_persistent => Unlimited => Unlimited
mysqli.reconnect => Off => Off
mysqli.rollback_on_cached_plink => Off => Off
API Extensions => mysqli,pdo_mysql
My question is why mysqli.allow_local_infile => Off => Off
,Even after I try to enable it in php.ini
? Am I doing something wrong?
(sorry for my bad english)