Reputation: 97
I'm currently working on a PrestaShop website and noticed that one of my addon does not work when open_basedir
and allow_url_fopen
are enabled.
How to disable openbase_dir
and allow_url_fopen
in php.ini on my local server?
Upvotes: 0
Views: 14968
Reputation: 9373
You just need to comment out open_basedir
in php.ini
file and restart the server.
As:
;open_basedir
and this line in the .htaccess
file
php_value allow_url_fopen On
or you can add this line in php.ini
file
allow_url_fopen = On;
Upvotes: 1