allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
Please turn this off for my site gamersparadise.org.uk or i will be unable to install my forum script. thank you.
Solved! Go to Solution.
Hi,
Can you please share what you edited in install.php to make it work?
allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
I would very much appreciate your help.
Thanks in advance.
I know this is a huge bump but this can be used for future reference
you find this line its not to far down from the start of the file.
if (version_compare(phpversion(), "5.2", ">") == 1) {
$aErrors[] = (ini_get('allow_url_include') == 0) ? '' : '<font color="red">allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)</font>';
change it to this
if (version_compare(phpversion(), "5.2", ">") == 1) {
$aErrors[] = (ini_get('allow_url_include') == 1) ? '' : '<font color="red">allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)</font>';