The error being
Fatal error: Cannot redeclare mchat_cache() (previously declared in C:\wamp\www\phpBB3\includes\functions_mchat.php:25) in C:\wamp\www\phpBB3\includes\functions_mchat.php on line 41
If you run into this please do the following.
OPEN
mchat.php
FIND
Code: Select all
include($phpbb_root_path . 'includes/functions_mchat.' . $phpEx);
REPLACE WITH
Code: Select all
if (!function_exists('mchat_cache'))
{
include($phpbb_root_path . 'includes/functions_mchat.' . $phpEx);
}
..and that will fix the issue.