Wordpress中的PHP错误“file_get_contents& Authorization Required”

时间:2014-09-16 12:04:06

标签: php wordpress authorization file-get-contents

我的一个wordpress插件出了问题。当我激活它时,此消息显示在屏幕顶部。

Warning: file_get_contents(http://gruender-news24.de/wp-content/plugins/ultproteam_/includes/../css/font-awesome.css): failed to open stream: HTTP request failed! HTTP/1.1 401 Authorization Required in /mnt/web7/e3/69/5941469/htdocs/WordPress_08/wp-content/plugins/ultproteam_/includes/plugin-class.php on line 336

此代码在336行。

$pTsubject = file_get_contents( $this->mainPath . '/css/font-awesome.css');

我对php并不熟悉,我自己无法解决这个问题。 这似乎提供了一个解决方案,但我无法根据我的特殊问题“转换”它。

http://www.hashbangcode.com/blog/using-authentication-and-filegetcontents

非常感谢你的帮助!

1 个答案:

答案 0 :(得分:0)

file_get_contents()使用fopen()包装器,因此限制通过php.ini中的allow_url_fopen选项访问URL

OR

尝试使用CURL。

看起来像重复的问题here的许多好答案。