I'm trying to upgrade from 1.2.8 -> 1.2.9, but the upgrade page seems to truncate its output after the 'MySQL $conf["UTF-8"] [is not set true]' warning, so there's no upgrade button.
I turned on error logging in php.ini and see this: `[Mon Mar 01 14:48:41 2010] [error] [client 10.25.106.45] PHP Fatal error: Maximum execution time of 60 seconds exceeded in E:\\xampplite\\htdocs\\gallery\\zp-core\\setup.php on line 1193`
I then turned up the maximum execution time and socket timeout to 6 minutes, and that did the trick.
I am running this off a USB thumbdrive, so that explains the I/O slowness.
Sorry about that. Your PHP does not contain `gettext()` support. This is unfortunately a bug in that we attempted to use the function before checking if it was in existance. The quick fix is to move the lines
Comments
Fatal error: Call to undefined function gettext() in F:\www\zp-core\setup.php on line 21
`[Mon Mar 01 14:48:41 2010] [error] [client 10.25.106.45] PHP Fatal error: Maximum execution time of 60 seconds exceeded in E:\\xampplite\\htdocs\\gallery\\zp-core\\setup.php on line 1193`
I then turned up the maximum execution time and socket timeout to 6 minutes, and that did the trick.
I am running this off a USB thumbdrive, so that explains the I/O slowness.
Sorry about that. Your PHP does not contain `gettext()` support. This is unfortunately a bug in that we attempted to use the function before checking if it was in existance. The quick fix is to move the lines up to the front of the setup.php script--just before the `define('OFFSET_PATH', 2);` line.