 | [Solved] Cash Mod Install problem |  |
Posted: 05/07/2007 5:16 PM |
|
|
|
|
|
| Hummingbird |
| Posts |
8 |
| Word Cnt. |
281 |
| BDay |
N/A |
| Sign |
N/A |
|
|
|
|
|
Joined: May 07, 2007
Local time: 10:15 AM
|

|
|
|
|
 |
Ive got the latest version of phpBB (2.0.22) and the latest version on the Cash mod but when i try and install i get errors with the template that i'm using. Ive searched everywhere to try and find the answer but can't so can someone please help me. errors bellow:
| Code:
|
Warning
FIND FAILED: In file [templates/extremedarkred/memberlist_body.tpl] could not find:
colspan="8"
MOD script line #499 :: FAQ :: Report
|
and
| Code:
|
Critical Error
FIND FAILED: In file [templates/subSilver/memberlist_body.tpl] could not find:
colspan="8"
MOD script line #499 :: FAQ :: Report
|
Thanks in advance.  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Cash Mod Install problem |  |
Posted: 05/07/2007 5:47 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
Welcome to RCF korr!!!
The code in your extremedarkred/memberlist_body.tpl does not contain the code that the Cash MOD is attempting to modify. Since that is the last modification for the memberlist_body.tpl, EM will make all the other modifications to the extremedarkred/memberlist_body.tpl. So you can safely ignore the Warning error...
Apparently, the subSilver/memberlist_body.tpl colspan setting has been modified by another MOD. So before I can offer you a suggestion of what to do, I need to know the current colspan setting for your subSilver/memberlist_body.tpl. So could you provide a text link for your subSilver/memberlist_body.tpl file???
Creating text Links for phpBB files
First create a duplicate of the phpBB file on your PC, then rename the file by adding .txt to the end of the file name. Next upload the file to a location on your FTP Server accessible to the public and provide a link back here for us to analyze it...
The path to your file could look something like this now:
| Code:
|
|
http://yourdomain.com/downloads_folder/memberlist_body.txt
|
I need to take off for a few hours, so hopefully if you can provide the text link to your memberlist_body.tpl file, I can offer you a suggestion of how to fix that when I return...
Welcome to RCF korr!!!
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Cash Mod Install problem |  |
Posted: 05/08/2007 10:20 AM |
|
|
|
|
|
| Hummingbird |
| Posts |
8 |
| Word Cnt. |
281 |
| BDay |
N/A |
| Sign |
N/A |
|
|
|
|
|
Joined: May 07, 2007
Local time: 10:15 AM
|

|
|
|
|
 |
Thanks for the warm welcome heres the link below:
http://www.m-i-a.co.uk/content/memberlist_body.tpl.txt
-Peace |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Cash Mod Install problem |  |
Posted: 05/08/2007 1:32 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
Ok, try this:
OPEN
cm_install_223.txt
FIND
| Code:
|
#
#-----[ AFTER, ADD ]------------------------------------------
#
$cm_memberlist->generate_columns($template,$sql,8);
|
REPLACE WITH
| Code:
|
#
#-----[ AFTER, ADD ]------------------------------------------
#
$cm_memberlist->generate_columns($template,$sql,9);
|
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
# in subSilver, the full line is
#
#
colspan="8"
#
#-----[ IN-LINE FIND ]------------------------------------------
#
8
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
# in subSilver, the full line is
#
#
colspan="9"
#
#-----[ IN-LINE FIND ]------------------------------------------
#
9
|
Save, upload, and try again using EM...
You will still get a warning error on the extremedarkred/memberlist_body.tpl file, but you can safely ignore it...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Cash Mod Install problem |  |
Posted: 05/08/2007 1:53 PM |
|
|
|
|
|
| Hummingbird |
| Posts |
8 |
| Word Cnt. |
281 |
| BDay |
N/A |
| Sign |
N/A |
|
|
|
|
|
Joined: May 07, 2007
Local time: 10:15 AM
|

|
|
|
|
 |
I did as you said above but i now get the error with the colspan of 9 heres the error:
| Code:
|
Critical Error
IN-LINE FIND FAILED: In file [templates/subSilver/memberlist_body.tpl] could not find:
9
MOD script line #510 :: FAQ :: Report
|
-Peace |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Cash Mod Install problem |  |
Posted: 05/08/2007 1:58 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
Ok, try this:
OPEN
cm_install_223.txt
FIND
| Code:
|
#
#-----[ IN-LINE FIND ]------------------------------------------
#
9
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
{NUM_COLUMNS}
|
REPLACE WITH
| Code:
|
#
#-----[ IN-LINE FIND ]------------------------------------------
#
colspan="9"
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
colspan="{NUM_COLUMNS}"
|
Save, upload, and try again using EM... |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Cash Mod Install problem |  |
Posted: 05/08/2007 2:02 PM |
|
|
|
|
|
| Hummingbird |
| Posts |
8 |
| Word Cnt. |
281 |
| BDay |
N/A |
| Sign |
N/A |
|
|
|
|
|
Joined: May 07, 2007
Local time: 10:15 AM
|

|
|
|
|
 |
Sorry to bug you and thanks for the quick replys but its not having any of it even though it is there lol
| Code:
|
Critical Error
IN-LINE FIND FAILED: In file [templates/subSilver/memberlist_body.tpl] could not find:
colspan="9"
MOD script line #510 :: FAQ :: Report
|
-Peace |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Cash Mod Install problem |  |
Posted: 05/08/2007 2:21 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
You don't have to apologize. I've seen this happen on a few other forums as well. For whatever reason, EM isn't able to see what it just found on your server. It seems to always happen on these colspan settings. I don't know why though. So the idea is to give it a different set of instructions that do the same thing. So try this instead:
OPEN
cm_install_223.txt
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
# in subSilver, the full line is
# <td class="catBottom" colspan="8" height="28"> </td>
#
colspan="9"
#
#-----[ IN-LINE FIND ]------------------------------------------
#
colspan="9"
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
colspan="{NUM_COLUMNS}"
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
# in subSilver, the full line is
#
<!-- END memberrow -->
<tr>
<td
#
#-----[ IN-LINE FIND ]------------------------------------------
#
9
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
[NUM_COLUMNS}
|
Save, upload, and try again using EM...
Hopefully this will get you past this point in the MOD script...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Cash Mod Install problem |  |
Posted: 05/08/2007 3:01 PM |
|
|
|
|
|
| Hummingbird |
| Posts |
8 |
| Word Cnt. |
281 |
| BDay |
N/A |
| Sign |
N/A |
|
|
|
|
|
Joined: May 07, 2007
Local time: 10:15 AM
|

|
|
|
|
 |
I'm not sure whats going on its just again not workin properly
| Code:
|
Critical Error
IN-LINE FIND FAILED: In file [templates/subSilver/memberlist_body.tpl] could not find:
9
MOD script line #510 :: FAQ :: Report
|
-Thanks again |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Cash Mod Install problem |  |
Posted: 05/08/2007 3:08 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
Are you sure you gave me the most current copy of the memberlist_body.tpl file from your subSilver template? This last suggestion should have worked if what I have is what EM is seeing...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|