After template files have been changed in future releases, Do we need to update our custom template files?
If there was a way that allowed us to just set our custom changes, It was very perfect!
For example we would enter the following values on
dynamic.php.ini.tpl$mr-generic = array(
"display_startup_errors" => "Off",
"error_log" => "custom_name"
);
$mr-php-53 = array(
"track_errors" => "On",
"expose_php" => "mr-clr"
);
And after run 'sh /script/fixphp' by user, compiler will apply these changes on php.ini files:
> In (### MR -- generic) section:
-
Change 'display_startup_errors =
On' to 'display_startup_errors =
Off'
-
Add '
error_log = custom_name'
> In (### MR -- specific for php 5.3+) section:
-
Change 'track_errors =
Off' to 'track_errors =
On'
-
Remove '
expose_php = On'