I am trying to install phpwiki for the first time, using Win 200+apache+mysql.
Starting with index.php I get this error, at apaches error log:
[Thu Jun 26 19:09:47 2003] [error] PHP Fatal error: Call to a member function on a non-object in f:\sag\apachegroup\apache\htdocs\phpwiki\lib\main.php on line 162
FATAL: erealloc(): Unable to allocate 1819374459 bytes
Could anybody help?
Thanks.
Mateo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am trying to install phpwiki for the first time, using Win 200+apache+mysql.
Starting with index.php I get this error, at apaches error log:
[Thu Jun 26 19:09:47 2003] [error] PHP Fatal error: Call to a member function on a non-object in f:\sag\apachegroup\apache\htdocs\phpwiki\lib\main.php on line 162
FATAL: erealloc(): Unable to allocate 1819374459 bytes
Could anybody help?
Thanks.
Mateo
I had the same problem. The only workaround I found was to comment following line in index.php:
'db_session_table' => 'session',
and to change:
define('USE_DB_SESSION',true);
into:
define('USE_DB_SESSION',false);
Almo