trying to turn on allow_url_fopen by putting php.ini in wordpress root does not work

前端 未结 6 662
没有蜡笔的小新
没有蜡笔的小新 2020-12-06 22:00

ok so, Im building a fancy pants wordpress theme and part of the theme has php getting image widths and using those numbers to resize page elements. It works fine on my loca

相关标签:
6条回答
  • 2020-12-06 22:22
    allow_url_fopen = on
    

    Add to php.ini or php5.ini

    Works with Joomla 3.1 hope that helps.

    0 讨论(0)
  • 2020-12-06 22:34

    If you are on cPanel 11.58+ this is an option within the cPanel. You can do enable this by following these steps: 1. Login to cPanel. 2. Select "MultiPHP INI Editor" under the "Software" section 3. Select the domain you want to make this change for from the drop down 4. The first option will be "allow_url_fopen".

    If you want to make the above change global in WHM you can so do something similar in multiphpini editor.

    However, if you are on an older cPanel version you will have to edit your php.ini manually.

    https://documentation.cpanel.net/display/ALD/MultiPHP+INI+Editor+for+cPanel

    0 讨论(0)
  • 2020-12-06 22:36

    Using cURL will bypass the issue. Some information and details that may be helpful can be found here:

    PHP Curl And Cookies

    0 讨论(0)
  • 2020-12-06 22:39

    Try to add this code to your .htaccess file:

    php_value allow_url_fopen On
    

    If it does not work, you will need ask your hosting provider about your php.ini file location, if it exists. If it does not, ask them to set this up for you in global php.ini file. Usually it's /etc/php.ini

    0 讨论(0)
  • 2020-12-06 22:39

    Other plugin developers seem to use cURL to get around allow_url_fopen restrictions. It is probably best for you to find a way to make your theme work without requiring allow_url_fopen to be enabled. Many providers turn this off for security reasons.

    0 讨论(0)
  • 2020-12-06 22:49

    None of these seemed to work on my host, and this is for a wordpress theme so it had to be a fix that could work for everyone so I just used jQuery. Tho if a users has their javascript turned off it wont work but I can live with that.

    0 讨论(0)
提交回复
热议问题