欢迎各位兄弟 发布技术文章
这里的技术是共享的
如果您使用 PHP 程序码片段,结果网页上出现「URL file-access is disabled in the server configuration」错误信息,
必须请网站管理员或主机供应商启用 PHP 服务器(php.ini)设定的 allow_url_fopen 和 allow_url_include 选项。
# vi /usr/local/php/etc/php.ini
;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
allow_url_include = On
如上所示将 allow_url_fopen 和 allow_url_include 两个函数默认的'Off'改为'On'即可。
来自 http://blog.csdn.net/kelonsen/article/details/9023123