flesh wrote:
yes ... but i tryed many times before asking ... i tried with
#
#-----[ FIND ]------------------------------------------------
#
{L_MESSENGER}
</td>
</tr>
how should i guess that it is {MSN} ??? O.o
an before starting work with easy mod i ve read all the information for installing mods without easy mod ... but how to guess what is the reason ???
It appears that you're beginning to get the idea. The reason {L_MESSENGER} didn't work in your FIND is because it is on a different line than the one you specified. In the FIND above, you are telling EM to find 3 lines of code that have {L_MESSENGER} somewhere on one line, </td> on the next, and </tr> on the last. But if you look at your phpBB file, there isn't anything that matches that. You could have made the FIND look for the following though and it would have worked:
#
#-----[ FIND ]------------------------------------------------
#
{L_MESSENGER}
<td
{MSN}
</td>
</tr>
The reason I only grabbed the last three lines is because I really didn't need to provide any more than that for EM to find the correct spot in the file. So anything more would have been unnecessary. With EM, less is best most of the time. So this solution should have worked just fine...
#
#-----[ FIND ]------------------------------------------------
#
{MSN}
</td>
</tr>
flesh wrote:
it's not similar so what to do ?
Critical Error
FIND FAILED: In file [templates/subSilver/profile_add_body.tpl] could not find:
<tr>
<td class="row1"><span class="gen">{L_SIGNATURE}:</span><br /><span class="gensmall">{L_SIGNATURE_EXPLAIN}<br /><br />{HTML_STATUS}<br />{BBCODE_STATUS}<br />{SMILIES_STATUS}</span></td>
<td class="row2">
<textarea name="signature" style="width: 300px" rows="6" cols="30" class="post">{SIGNATURE}</textarea>
</td>
</tr>
MOD script line #1662 :: FAQ :: Report
This is still very similar. You can do this:
OPEN
XData_CPF.mod
FIND
Code: Select all
#
#-----[ FIND ]------------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_SIGNATURE}</span><br />
<span class="gensmall">{L_SIGNATURE_EXPLAIN}<br />
<br />
{HTML_STATUS}<br />
{BBCODE_STATUS}<br />
{SMILIES_STATUS}</span></td>
<td class="row2">
<textarea class="post" name="signature" rows="6" cols="45">{SIGNATURE}</textarea>
</td>
</tr>
REPLACE WITH
Code: Select all
#
#-----[ FIND ]------------------------------------------------
#
{SIGNATURE}
</td>
</tr>
Save, upload, and try again using EM...
