Looks like the server has XCACHE installed. Replace the original "/zc_install/index.php" from Zen Cart 1.5.4.
Then (based on the output from phpinfo) open up "/zc_install/index.php" and change the following lines.
FROM:
TO:Code:if (function_exists('apc_clear_cache')) @apc_clear_cache(); //XCACHE if (function_exists('xcache_clear_cache')) @xcache_clear_cache(); //EA
And try the installation again with the changes above.Code:if (function_exists('apc_clear_cache')) @apc_clear_cache(); //XCACHE if (function_exists('xcache_clear_cache')) { @ini_set('xcache.cacher', 'OFF'); } //EA


Reply With Quote

