好的,我正在构建一个精美的裤子 wordpress 主题,部分主题有 php 获取图像宽度并使用这些数字来调整页面元素的大小。它在我的本地机器上运行良好,但是当我使用 cpanel 将主题放在托管服务器上时,它不起作用。
我收到这个错误
Warning: getimagesize() [function.getimagesize]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /home/yoursite/public_html/wpsite/wp-content/themes/yourtheme/styles/login.php on line 7
Warning: getimagesize(http://yoursite.com/wpsite/wp-content/uploads/2012/11/logo1.png) [function.getimagesize]: failed to open stream: no suitable wrapper could be found in /home/yoursite/public_html/wpsite/wp-content/themes/yourtheme/styles/login.php on line 7
所以我想如果我在 wordpress 的根目录中创建一个 php.ini 文件,其中包含以下内容:
[PHP]
allow_url_fopen = 1
那会奏效,但不会。
反正有没有让这个工作?