Changeset 7a259c6 in github
- Timestamp:
- Jun 4, 2012 10:08:37 AM (12 months ago)
- Branches:
- release-0.8
- Children:
- 0e58211
- Parents:
- 9c8ff86
- git-author:
- Aleksander Machniak <alec@…> (06/04/12 10:05:57)
- git-committer:
- Aleksander Machniak <alec@…> (06/04/12 10:08:37)
- Files:
-
- 4 edited
-
CHANGELOG (modified) (1 diff)
-
INSTALL (modified) (1 diff)
-
installer/check.php (modified) (1 diff)
-
program/include/iniset.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rfec9f11 r7a259c6 2 2 =========================== 3 3 4 - Fix errors with enabled PHP magic_quotes_sybase option (#1488506) 4 5 - Fix SQL query for contacts listing on MS SQL Server (#1488505) 5 6 - Update to TinyMCE 3.5.2 -
INSTALL
r77c779a r7a259c6 32 32 - mbstring.func_overload disabled 33 33 - magic_quotes_runtime disabled 34 - magic_quotes_sybase disabled 34 35 * PHP compiled with OpenSSL to connect to IMAPS and to use the spell checker 35 36 * A MySQL (4.0.8 or newer), PostgreSQL, MSSQL database engine -
installer/check.php
r2f88b17 r7a259c6 41 41 'mbstring.func_overload' => 0, 42 42 'suhosin.session.encrypt' => 0, 43 'magic_quotes_runtime' => 0, 44 'magic_quotes_sybase' => 0, 43 45 ); 44 46 -
program/include/iniset.php
r9456eac r7a259c6 24 24 */ 25 25 26 // Some users are not using Installer, so we'll check some 27 // critical PHP settings here. Only these, which doesn't provide 28 // an error/warning in the logs later. See (#1486307). 29 $crit_opts = array( 30 'mbstring.func_overload' => 0, 26 $config = array( 27 'error_reporting' => E_ALL &~ (E_NOTICE | E_STRICT), 28 // Some users are not using Installer, so we'll check some 29 // critical PHP settings here. Only these, which doesn't provide 30 // an error/warning in the logs later. See (#1486307). 31 'mbstring.func_overload' => 0, 31 32 'suhosin.session.encrypt' => 0, 32 'session.auto_start' => 0, 33 'file_uploads' => 1, 34 'magic_quotes_runtime' => 0, 33 'session.auto_start' => 0, 34 'file_uploads' => 1, 35 'magic_quotes_runtime' => 0, 36 'magic_quotes_sybase' => 0, // #1488506 35 37 ); 36 foreach ($c rit_optsas $optname => $optval) {37 if ($optval != ini_get($optname) ) {38 foreach ($config as $optname => $optval) { 39 if ($optval != ini_get($optname) && @ini_set($optname, $optval) === false) { 38 40 die("ERROR: Wrong '$optname' option value. Read REQUIREMENTS section in INSTALL file or use Roundcube Installer, please!"); 39 41 } … … 68 70 die("Fatal error: ini_set/set_include_path does not work."); 69 71 } 70 71 ini_set('error_reporting', E_ALL &~ (E_NOTICE | E_STRICT));72 72 73 73 // increase maximum execution time for php scripts
Note: See TracChangeset
for help on using the changeset viewer.
