if this is what is in the original MOD install file, then it is written incorrectly and that is what is causing your problems:
- Code: Select all
#
#-----[ FIND ]--------------------------------------
#
<img src="templates/subSilver/images/mob_logo.gif" border="0" alt="{L_INDEX}" vspace="1" width="100%" height="200"/></a></td></tr><tr>
#
it should be written like this:
- Code: Select all
#
#-----[ FIND ]--------------------------------------
#
<img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" width="100%" height="200"/></a></td></tr><tr>
#
you would then get a warning in EM that says it can't find logo_phpBB.gif in the DarkMOB/overall_header.tpl file.
warnings will not stop EM from proceeding. critical errors will.
any error in the core files, including subSilver files, will create a critical error and stop EM.
EM can only find standard phpBB files and code. If your styles do not use standard phpbb subSilver based code, then it will not work by itself.
Therefore, you have to manually add those changes to your files that EM can not do.
This is normal behaviour.
I am thinking that you changed the file name in the MOD file to try to get it to work. As you see, that is not how you do it.
You have to leave the MOD written so that it only says the subSilver files/paths, etc.
Then, you have to finish the MOD install by manually making those edits that EM could not.
hope this explains how it all works for you.
robert