Forum Hosting  

Go Back   Forum Hosting > IPB Support > IPB General Support

IPB General Support Post your questions here, no bug reports.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 03-27-2004, 08:10 PM   #1 (permalink)
Nam
Junior Forumer
 
Nam's Avatar
 
Join Date: Jan 2004

Posts: 249
Rep Power: 5 Nam is on a distinguished road
fTrader: (0)
fBuck$: 1,196.0
Bank: 0.0
Total fBuck$: 1,196.0

My Forumer
My Country:
Default

Hello,

I just want to know how you put these [Admin] [Moderator] [Member] [Banned] on the Board Statistics? I did exactly what Luke told me: http://support.forumer.com/index.php?showt...findpost&p=8479 but I got this error:

Cannot write into './Skin/s1/skin_boards.php', please check the CHMOD value, and if needed, CHMOD to 0777 via FTP. IBF cannot do this for you.


Thanks for the help.

Nam

Nam is offline  
Old 03-27-2004, 08:49 PM   #2 (permalink)
Senior Forumer
 
Influx's Avatar
 
Join Date: Mar 2004

Location: (0,0)
Posts: 789
Rep Power: 5 Influx is on a distinguished road
fTrader: (0)
fBuck$: 1,998.0
Bank: 0.0
Total fBuck$: 1,998.0

My Forumer
My Country:
Default

I think that Limez will need to CHMOD the file before you can perform that action.
Influx is offline  
Old 03-27-2004, 09:56 PM   #3 (permalink)
Junior Forumer
 
imported_Luke's Avatar
 
Join Date: Feb 2004

Posts: 88
Rep Power: 5 imported_Luke is on a distinguished road
fTrader: (0)
fBuck$: 324.0
Bank: 0.0
Total fBuck$: 324.0

My Forumer
My Country:
Default

what the heck?hmmm...instead of using that, use this one (re-done) here and it should work, it explains thing clearer...make sure anything that is in CAPS you change and take note of what it tells you! Hope it helps, your not CHANGING anything really crucial, so you shouldnt be getting a CHMOD error, so try the better one i gave you and get back to me! cuz, if you check MY board here, it works for me! check for stupid errors etc. <_<

<span style='color:red'>::</span>Forum back online!
<span style='color:red'>::</span>Urban Gaming
<span style='color:red'>::</span><a href='http://urbangaming.uni.cc' target='_blank'>UrbanGaming.Uni.cc</a>
<span style='color:red'>::</span>Looking for members, Mods, etc...
<span style='color:red'>::</span>Join today!
imported_Luke is offline  
Old 03-28-2004, 01:55 PM   #4 (permalink)
imported_limez
Guest
 
imported_limez's Avatar
 

Posts: n/a
fBuck$: 0
Bank: 0
Total fBuck$: 0

My Forumer
My Country:
Default

Nam,
have you tried Luke's solution already ?
 
Old 03-28-2004, 02:31 PM   #5 (permalink)
Junior Forumer
 
imported_dragon's Avatar
 
Join Date: Jan 2004

Location: In a cave filled with hobbits...mmm, crunchy
Posts: 69
Rep Power: 5 imported_dragon is on a distinguished road
fTrader: (0)
fBuck$: 227.0
Bank: 0.0
Total fBuck$: 227.0

My Forumer
My Country:
Send a message via ICQ to imported_dragon Send a message via AIM to imported_dragon
Default

I have a different code that doesn't have links. It's just a color key code:
Quote:
<script>
/*
Colors Key in Users Stats Box
Created by Webworldx

Redistribution is not permitted
*/

//Make sure the Users array has the same number of elements as the colors one!
var Users = new Array("Administrator","Global Moderator","Moderator","Elite Member","Member")
var Colors = new Array("0033FF","99FF00","FFFF99","999999","FFFFFF")

var inputUsers=""
for (a=0;a<Users.length;a++){
inputUsers+="[<font color=#" + Colors[a] + ">" + Users[a] + "</font>] "
}
var tCell = document.getElementsByTagName('TD')
for (i=0;i<tCell.length;i++){
if (tCell[i].width=="95%" && tCell[i].innerHTML.match(/Anonymous Members/i)){
tCell[i].innerHTML= tCell[i].innerHTML.replace(/<\/div>/i,"
Key: " + inputUsers + "</div>")
}}
</script>
Where would I put that.

The other code is cool though. I just don't want any links.

<a href='http://forumer.com/?mforum=reptilesisland' target='_blank'><img src='http://www.angelfire.com/realm3/dragon5607nc/The_Island.jpg' border='0' alt='user posted image' /></a>
Guest are welcome but please follow the rules.
imported_dragon is offline  
Old 03-28-2004, 02:36 PM   #6 (permalink)
Nam
Junior Forumer
 
Nam's Avatar
 
Join Date: Jan 2004

Posts: 249
Rep Power: 5 Nam is on a distinguished road
fTrader: (0)
fBuck$: 1,196.0
Bank: 0.0
Total fBuck$: 1,196.0

My Forumer
My Country:
Default

Quote:
Originally posted by limez@Mar 28 2004, 01:55 PM
Nam,
have you tried Luke's solution already ?
limez -

Yeah, I did exactly what it said but I got the above error. Could you please help me?

Thanks,

Nam

Nam is offline  
Old 03-28-2004, 03:31 PM   #7 (permalink)
Junior Forumer
 
imported_Excelsjor's Avatar
 
Join Date: Feb 2004

Location: Manchester, England
Posts: 52
Rep Power: 5 imported_Excelsjor is on a distinguished road
fTrader: (0)
fBuck$: 223.0
Bank: 0.0
Total fBuck$: 223.0

My Forumer
My Country:
Default

Quote:
Originally posted by dragon@Mar 28 2004, 02:31 PM
I have a different code that doesn't have links. It's just a color key code:
Quote:
<script>
/*
Colors Key in Users Stats Box
Created by Webworldx

Redistribution is not permitted
*/

//Make sure the Users array has the same number of elements as the colors one!
var Users = new Array("Administrator","Global Moderator","Moderator","Elite Member","Member")
var Colors = new Array("0033FF","99FF00","FFFF99","999999","FFFFFF")

var inputUsers=""
for (a=0;a<Users.length;a++){
inputUsers+="[<font color=#" + Colors[a] + ">" + Users[a] + "</font>] "
}
var tCell = document.getElementsByTagName('TD')
for (i=0;i<tCell.length;i++){
if (tCell[i].width=="95%" && tCell[i].innerHTML.match(/Anonymous Members/i)){
tCell[i].innerHTML= tCell[i].innerHTML.replace(/<\/div>/i,"
Key: " + inputUsers + "</div>")
}}
</script>
Where would I put that.

The other code is cool though. I just don't want any links.
That's a code for IF's forums, not Forumers. I have a forum based on IF's server, and use that code myself. The guy that made it is called Webworldx (hence the name in the code). He has made a lot of codes for IF forums. I don't think you would be able to use that code on a Forumer forum, simply because they have turned the board wrappers option off. You are supposed to paste it into the board wrappers box.

Also, because that was coded for IF, it would be unfair and a little unwise to use that code without first getting WWX's permission.

<a href='http://www.myleague.com/alpsnk/' target='_blank'><img src='http://img2.photobucket.com/albums/v11/surebrec/forumimages/alpsnkbanner.gif' border='0' alt='user posted image' /></a>
Wanna play?
imported_Excelsjor is offline  
Old 03-28-2004, 06:16 PM   #8 (permalink)
Nam
Junior Forumer
 
Nam's Avatar
 
Join Date: Jan 2004

Posts: 249
Rep Power: 5 Nam is on a distinguished road
fTrader: (0)
fBuck$: 1,196.0
Bank: 0.0
Total fBuck$: 1,196.0

My Forumer
My Country:
Default

Quote:
Originally posted by Luke@Mar 27 2004, 09:56 PM
what the heck?hmmm...instead of using that, use this one (re-done) here and it should work, it explains thing clearer...make sure anything that is in CAPS you change and take note of what it tells you! Hope it helps, your not CHANGING anything really crucial, so you shouldnt be getting a CHMOD error, so try the better one i gave you and get back to me! cuz, if you check MY board here, it works for me! check for stupid errors etc. <_<
Luke -

I didn't change anything else. All I did was follow this guide and it gives me the above error.

Help me.

Nam

Nam is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump