 | Rank Tags |  |
Posted: 04/24/2007 5:48 PM |
|
|
|
|
|
| Sparrow |
| Posts |
11 |
| Word Cnt. |
291 |
| BDay |
N/A |
| Sign |
N/A |
| Sex |
 |
|
|
|
Joined: Apr 24, 2007
Local time: 9:45 AM
|

|
|
|
|
 |
| I installed this mod and came across a problem. When I view my profile, the html works. My rank is orange and bold. But when I'm viewing a topic, it's just black and normal. I'm not sure if it's something I did, but I would really appreciate help. |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/24/2007 8:43 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 6:45 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
Hello NightRider,
I have given this website address to travelingSPAM and made him sure that someone will surely help him here. So travelingSPAM, don't worry, your problem will be solved by the 4fxearth Team.
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/24/2007 11:57 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 10:45 AM
Location: St Pete, FL
|

|
|
|
|
 |
Welcome to RCF, travelingSPAM!!!
I don't have a copy of this MOD, so could you provide a link to the MOD topic and/or download???
Welcome to RCF travelingSPAM!!!
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/25/2007 11:56 AM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 6:45 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
| Here is the direct link to download phpbb.com/files/mods/rank_tags_1_0_2a.zip |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/25/2007 12:10 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 6:45 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
I tried to install Rank Tags as this is really interesting one. But the FIND statements are too small that i got confused on how to make it more smaller
Any idea what to do with the errors i am getting  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/25/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: 10:45 AM
Location: St Pete, FL
|

|
|
|
|
 |
This MOD seems to be pretty EM Friendly. So if you encounter any Critical errors, go ahead and post them here. Chances are if any of the FIND statements fail, then the code no longer exists because it was modified by another MOD...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/25/2007 2:22 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 6:45 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
You are right. This MOD have some critical errors and i think it might be because of other MOD installed earlier and they might have changed the codes.
Yeah, there are some critical errors which I was unable to solve it!
| Code:
|
Critical Error
FIND FAILED: In file [viewtopic.php] could not find:
// Generate ranks, set them to empty string initially.
MOD script line #80 :: FAQ :: Report
|
| Code:
|
Critical Error
FIND FAILED: In file [admin/admin_ranks.php] could not find:
if( $special_rank == 1 )
MOD script line #190 :: FAQ :: Report
|
| Code:
|
Critical Error
FIND FAILED: In file [includes/usercp_viewprofile.php] could not find:
$poster_rank = '';
MOD script line #274 :: FAQ :: Report
|
|
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/25/2007 4:37 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 10:45 AM
Location: St Pete, FL
|

|
|
|
|
 |
travelingSPAM, unless you have the Multiple Ranks MOD installed on your board, the modifications below have nothing to do with your problem, so you should skip this reply...
AB, this is how you need to adjust your MOD script to work on your board...
OPEN
rank_tags_1_0_2.mod
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
// Generate ranks, set them to empty string initially.
#
#-----[ FIND ]------------------------------------------
#
$rank_image = '';
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
$custom_title = '';
|
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
if( $special_rank == 1 )
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
if( $special_rank
|
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
$poster_rank = '';
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------
#
$user_ranks =
|
Save, upload, and try again using EM...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/25/2007 5:23 PM |
|
|
|
|
|
| Sparrow |
| Posts |
11 |
| Word Cnt. |
291 |
| BDay |
N/A |
| Sign |
N/A |
| Sex |
 |
|
|
|
Joined: Apr 24, 2007
Local time: 9:45 AM
|

|
|
|
|
 |
EDIT--
Oh... looks like I somehow figured it out... I don't know how... but it's all fixed. So everything's all fine now. Thanks for the all your help! I'll be back for more help soon!
PS-- Thanks for the warm welcome |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Rank Tags |  |
Posted: 04/25/2007 6:30 PM |
|
|
|
|
|
| Site Admin |
| Posts |
49593 |
| Word Cnt. |
2,756,445 |
| BDay |
Apr 22 |
| Sign |
Taurus |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 8:45 AM
Location: Texas
|

|
|
|
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|