 | [Solved]Printer Frienly Mod |  |
Posted: 08/21/2007 2:24 PM |
|
|
|
|
|
| Citation |
| Posts |
487 |
| Word Cnt. |
35,729 |
| BDay |
Oct 3 |
| Sign |
Libra |
| Sex |
 |
|
|
|
Joined: Oct 29, 2006
Local time: 5:15 AM
Location: Klang, Malaysia
|

|
|
|
|
 |
I get this error when i want to install :
| Code:
|
Error Detail
Critical Error
FIND FAILED: In file [viewtopic.php] could not find:
//
// Load templates
//
$template->set_filenames(array(
'body' => 'viewtopic_body.tpl')
);
make_jumpbox('viewforum.'.$phpEx, $forum_id);
MOD script line #177 :: FAQ :: Report
|
|
|
Last edited by masteranu84 on 08/23/2007 5:34 AM; edited 1 time in total |
|
 |
 |
| Back to Top |
|
|
 | Re: Printer Frienly Mod |  |
Posted: 08/22/2007 5:09 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 1:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
The MOD author included more information than was necessary...
Ok, try this:
OPEN
printer_topic_1.0.8/install.mod
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
//
// Load templates
//
$template->set_filenames(array(
'body' => 'viewtopic_body.tpl')
);
make_jumpbox('viewforum.'.$phpEx, $forum_id);
#
#-----[ REPLACE WITH ]------------------------------------------
#
//
// Load templates
//
if(isset($HTTP_GET_VARS['printertopic']))
{
$template->set_filenames(array(
'body' => 'printertopic_body.tpl')
);
} else
{
$template->set_filenames(array(
'body' => 'viewtopic_body.tpl')
);
}
make_jumpbox('viewforum.'.$phpEx, $forum_id);
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
$template->set_filenames(array(
'body' => 'viewtopic_body.tpl')
);
#
#-----[ REPLACE WITH ]------------------------------------------
#
if(isset($HTTP_GET_VARS['printertopic']))
{
$template->set_filenames(array(
'body' => 'printertopic_body.tpl')
);
} else
{
$template->set_filenames(array(
'body' => 'viewtopic_body.tpl')
);
}
|
Save, upload, and try again using EM... |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Printer Frienly Mod |  |
Posted: 08/22/2007 6:11 PM |
|
|
|
|
|
| Citation |
| Posts |
487 |
| Word Cnt. |
35,729 |
| BDay |
Oct 3 |
| Sign |
Libra |
| Sex |
 |
|
|
|
Joined: Oct 29, 2006
Local time: 5:15 AM
Location: Klang, Malaysia
|

|
|
|
|
 |
Now i get this ~
| Code:
|
Error Detail
Warning
FIND FAILED: In file [templates/Avalanche/viewtopic_body.tpl] could not find:
<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a> <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>
MOD script line #310 :: FAQ :: Report
|
| Code:
|
Error Detail
Critical Error
FIND FAILED: In file [templates/subSilver/viewtopic_body.tpl] could not find:
<td align="left" valign="middle" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a> <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>
MOD script line #322 :: FAQ :: Report
|
|
|
|
 |
 |
| Back to Top |
|
|
 | Re: Printer Frienly Mod |  |
Posted: 08/22/2007 10:26 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 1:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
Ok, try this:
OPEN
printer_topic_1.0.8/install.mod
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a> <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
{L_POST_REPLY_TOPIC}" align="middle" /></a>
|
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
<td align="left" valign="middle" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a> <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
{L_POST_REPLY_TOPIC}" align="middle" /></a>
|
Save, upload, and try again using EM...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Printer Frienly Mod |  |
Posted: 08/23/2007 5:32 AM |
|
|
|
|
|
| Citation |
| Posts |
487 |
| Word Cnt. |
35,729 |
| BDay |
Oct 3 |
| Sign |
Libra |
| Sex |
 |
|
|
|
Joined: Oct 29, 2006
Local time: 5:15 AM
Location: Klang, Malaysia
|

|
|
|
|
 |
Ok, i has success to install the MOD, thanks alot~
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved]Printer Frienly Mod |  |
Posted: 08/23/2007 2:54 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 1:15 AM
Location: St Pete, FL
|

|
|
|
|
 |
Kewl!!! Congratulations once again masteranu84!!!
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|