Last modified: 2010-05-15 15:48:27 UTC
during installation, eAccelerator is not getting detected correctly. What I do is I open the /config/index.php and change this line: $conf->eaccel = function_exists( 'eaccelerator_get' ); to: $conf->eaccel = function_exists( 'eaccelerator_info' ); And the installer will detect eAccel fine.
Created attachment 3182 [details] the patched file attachment is the patched file with the changes noted earlier.
Chances are if it's being detected wrong, then it's not being used right, either.
if ea_get() function does not exist, there's no need for mediawiki to know anything about ea or use ea in any other way apart from implicit bytecode caching. mediawiki uses object cache functions of APC/ea/... for internal objects, if _get functions exist.
ahh I see. Thanks for the info!