I have a script that uses file_get_contents()
to get json response from remote server .
while file_get_contents()
is working properly on local files but not working with http or https it gives me the following error file_get_contents(): http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in
and file_get_contents(https://api.domain.com/resolve.json?url=blablabla): failed to open stream: no suitable wrapper could be found
.. it is a dedicated server and I have WHM .. I've tried
- setting
allow_url_fopen = on
on WHM PHP configuration Editor but This didn't work.
- creating a php.ini file with
allow_url_fopen = on
in the directory where the error occurred but this didn't work.
- added
ini_set('allow_url_fopen', 'On');
to the start of the PHP script but this didn't work .
I know I can use Curl instead but I want to know why this is not working .. the script is working properly on other server and localhost
update :
phpinfo();
gives me
allow_url_fopen Off
allow_url_include Off
always_populate_raw_post_data Off
that means my php.ini changes didn't take effect .. what I'm doing wrong ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…