Set some php ini settings if possible

release-0.7
Aleksander Machniak 12 years ago
parent 358b0f8bbc
commit e8cab44de0

@ -29,9 +29,10 @@ $crit_opts = array(
'session.auto_start' => 0,
'file_uploads' => 1,
'magic_quotes_runtime' => 0,
'magic_quotes_sybase' => 0, // #1488506
);
foreach ($crit_opts as $optname => $optval) {
if ($optval != ini_get($optname)) {
if ($optval != ini_get($optname) && @ini_set($optname, $optval) === false) {
die("ERROR: Wrong '$optname' option value. Read REQUIREMENTS section in INSTALL file or use Roundcube Installer, please!");
}
}

Loading…
Cancel
Save