hi!
I have installted 3.00 and also tried using lastest version.
this message:
CRITICAL ERROR: the file 'extension.inc' could not be found. Please, make sure EasyMOD has been uploaded under the admin/mods/easymod/ directory of your phpBB installation.
When I tried to install executing
admin/mods/easymod/easymod_install.php
I search inside the zip file and there is no EXTENSION.INC there!!!
And also check the php file:
define('IN_PHPBB', 1);
$phpbb_root_path = '../../../';
// Checking phpBB files here allow us to halt installation and warn them with an explanation if the have not upload EM to the correct place

if( !@file_exists($phpbb_root_path . 'extension.inc') )
{
// display error message (obviously we can't use the lang system from this

echo "<b>CRITICAL ERROR:</b> the file 'extension.inc' could not be found. Please, make sure EasyMOD has been uploaded under the admin/mods/easymod/ directory of your phpBB installation.\n";
exit;
}
// Note using require rather than include makes sense, since we can't really proceed if the files are not available.
require($phpbb_root_path . 'extension.inc');
require($phpbb_root_path . 'common.'.$phpEx);
require($phpbb_root_path . 'includes/functions_admin.'.$phpEx);
So......????????????? There is an error in the installer?