Warning: The author of this contribution does not provide support for it anymore.

phpBB mChat

Frequently Asked Questions

Version 1.3.4 issue

Users have been reporting that they are getting an error within the mod.

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.