I would also like to know what is considered the best way to change 'allow_url_fopen' in php.ini
I can see that the value is set in
/etc/e-smith/templates/etc/php.ini/65FopenWrappers
Which contains:
{
return "allow_url_fopen = $php{AllowUrlFopen}";
}
One bad way woud be to change this template to:
{ allow_url_fopen = On }
Another better way would be to create a custom-template
/etc/e-smith/templates-custom/etc/php.ini/65FopenWrappers
Which contains:
{
allow_url_fopen = On
}
Is there a better way?