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.
Anyone else get the upgrade to work?
This was in my test environment, XAMPPLite running on Windows, so the permissions are wide open.
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.
jsoupene:
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
Quote:if(!function_exists("gettext")) {
require_once(dirname(FILE).'/lib-gettext/gettext.inc');
$noxlate = -1;
} else {
$noxlate = 1;
}
up to the front of the setup.php script--just before the define('OFFSET_PATH', 2); line.