Miscellaneouss

How To Enable allow_url_fopen, allow_url_include in php.ini

You can simply manage allow_url_fopen and allow_url_include function by editing php.ini file on your server. You can enable it if these function is disabled in php configuration file.

These function may be disabled in the php configuration file on some shared hosting server. You can simply manage these function by creating custom php.ini file under your public folder.

On Dedicated Server

Open the /etc/php.ini file and add or changes below two lines:

#vim /etc/php.ini 
allow_url_fopen = On
......
allow_url_include = On

Restart web server.

# service httpd restart

On Shared Hosting Server

Create or open php.ini file under the public directory of your domain and add the following two lines to enable these function.

allow_url_fopen = On
......
allow_url_include = On

That’s it.

Thanks:)

Thank you! for visiting LookLinux.

If you find this tutorial helpful please share with your friends to keep it alive. For more helpful topic browse my website www.looklinux.com. To become an author at LookLinux Submit Article. Stay connected to Facebook.

About the author

mm

Santosh Prasad

Hi! I'm Santosh and I'm here to post some cool article for you. If you have any query and suggestion please comment in comment section.

Leave a Comment