Log in Register FAQ Memberlist Search Welcome to RCF - WHF Forum Index
alt : test.swf
Welcome to RCF - WHF
4fx3.gif 
calendar_open_closeCalendar 
[Solved]Printer Frienly Mod
Post new topic   Reply to topic View previous topic :: View next topic
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support Add To Bookmarks
[Solved]Printer Frienly Mod
PostPosted: 08/21/2007 2:24 PM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 AM
Location: Klang, Malaysia
malaysiC.gif
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
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Printer Frienly Mod
PostPosted: 08/22/2007 5:09 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:15 AM
Location: St Pete, FL
peace.gif
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')
   );
}

headbang
Save, upload, and try again using EM...
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: Printer Frienly Mod
PostPosted: 08/22/2007 6:11 PM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 AM
Location: Klang, Malaysia
malaysiC.gif
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>&nbsp;&nbsp;&nbsp;<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>&nbsp;&nbsp;&nbsp;<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
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Printer Frienly Mod
PostPosted: 08/22/2007 10:26 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:15 AM
Location: St Pete, FL
peace.gif
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>&nbsp;&nbsp;&nbsp;<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>&nbsp;&nbsp;&nbsp;<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...

headbang
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: Printer Frienly Mod
PostPosted: 08/23/2007 5:32 AM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 AM
Location: Klang, Malaysia
malaysiC.gif
Ok, i has success to install the MOD, thanks alot~

banana  headbang  blob8  banana  headbang  blob8
Back to Top
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: [Solved]Printer Frienly Mod
PostPosted: 08/23/2007 2:54 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:15 AM
Location: St Pete, FL
peace.gif
Kewl!!!  Congratulations once again masteranu84!!!   Applause

banana  banana  banana  banana  banana
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
 Post new topic  Reply to topic
Information
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum
All times are GMT - 5 Hours

Page 1 of 1


Add To Bookmarks

 
  
  


  Google

Powered by phpBB © 2001, 2005 phpBB Group

Page generation time: 0.075s (PHP: 73% - SQL: 27%) - SQL queries: 46 - GZIP disabled - Debug on