Table 'xxxxx.ads_groups' doesn't exist [1146] (phpBB)

CMS
При обновлении движка с 3.0.11 на 3.0.12 и с 3.0.12 на 3.0.13 появлялись одинаковые ошибки, связанные с модом Advertisement Management: Table 'xxxxx.ads_groups' doesn't exist [1146], что говорит: таблица .ads_groups - не существует. И обновление продолжить не возможно.
Для решения этой проблемы делаем так: открыть: ads/constants.php, найти:
	define('ADS_TABLE',					$table_prefix . 'ads');
	define('ADS_FORUMS_TABLE',			$table_prefix . 'ads_forums');
	define('ADS_GROUPS_TABLE',			$table_prefix . 'ads_groups');
	define('ADS_IN_POSITIONS_TABLE',	$table_prefix . 'ads_in_positions');
	define('ADS_POSITIONS_TABLE',		$table_prefix . 'ads_positions');

заменить на:
	define('ADS_TABLE',					'phpbb_ads');
	define('ADS_FORUMS_TABLE',			'phpbb_ads_forums');
	define('ADS_GROUPS_TABLE',			'phpbb_ads_groups');
	define('ADS_IN_POSITIONS_TABLE',	'phpbb_ads_in_positions');
	define('ADS_POSITIONS_TABLE',		'phpbb_ads_positions');

Это если у Вас прификс phpbb_, если прификс другой, естественно его надо изменить.
Готово.