1

(3 replies, posted in Feature requests)

i would actually like this too.

2

(5 replies, posted in PunBB 1.2 troubleshooting)

hey i was thinking about this mod ok. Heres what i was wondering. if i would make it so you need 100 posts for a section is it modded so that moderators and admins can see it all the time anyway? if so that will ork perfectly. And also am i still able to say if they can post it the section still. Cuz theres a section they can see but not post in will this mod ruin that?

3

(5 replies, posted in PunBB 1.2 troubleshooting)

oh then dont want that. Is there a easy way to do it cuz i only need 1 category set like this

4

(95 replies, posted in News)

thanks ill check that out. 1 thing i checked it and are the highlighted parts the things i need to copy then paste into my files as the change? or are they just to get me to the area the lines at.?

5

(5 replies, posted in PunBB 1.2 troubleshooting)

Ok what i want to do is have it so that when you get 10 posts you can see a certain category. The only thing is i dont want it to effect the stuff like where i have it set for certain groups. So say i have New members Group and a Members group i want it so that if i have a category that new members cant see and members can but members need 10 posts at least that if New members have 10 posts it wont let them see the forums still.

Anyone able to help?

6

(95 replies, posted in News)

if i want to update without reinstalling is there a place to go that tells what code is changed/added and where for me to just manually do it?

7

(4 replies, posted in PunBB 1.2 discussion)

yeah i think its a nice feature but only when you have quite a few moderators to where you will have like 1 or 2 different moderators for each section. But since i dont like haveing many moderators i think itrs pointless to have like it say moderated by Bob, Joe, Jeff for each individual forum but if i would have more moderators and assign them only certain forums it be nice so people know who to go to for help.

8

(4 replies, posted in PunBB 1.2 discussion)

thanks

9

(4 replies, posted in PunBB 1.2 discussion)

Ok when i make someone a moderator of sections of course it says moderated by .... at bottom well i dont like that so where would i got to get rid of this and what would i get rid of?

10

(1 replies, posted in PunBB 1.2 troubleshooting)

well i just fixde by deleting my moderate.php and uplaoding new one from the punbb files. Wierd though as i never touched the coding inn moderate.php for my forums...

11

(1 replies, posted in PunBB 1.2 troubleshooting)

.

12

(10 replies, posted in PunBB 1.2 troubleshooting)

thanks and also thanks for such fast replies i am starting this site and had it all finished and was bout to launch and i wanted to get rid of somthing and put me way back. Luckily the mods i want to start with are simple and fast installation so i can get that done fast. So thanks once again.

13

(15 replies, posted in PunBB 1.2 troubleshooting)

In the mod section either on here or punres theres a mod that allows you to do this. If you want to do with out that mod im not sure how the mod works but you could just edit the functions.php and search for the

$links[] = '<li id="navuserlist"><a href="userlist.php">'.$lang_common['User list'].'</a>';


and move it to the right spot which would be put with the logout and profile and such meaning that you have to be logged in to see it.

Note doing it that way i believe it will move its position to closer to the end of the list of links.



heres the mod

http://punbb.org/forums/viewtopic.php?id=9520

14

(10 replies, posted in PunBB 1.2 troubleshooting)

perfect so far its working tongue thats gay how that cpanel wont work now did first time i edited and that.

15

(10 replies, posted in PunBB 1.2 troubleshooting)

ok ill try to download and reupload changes. ill let you know what happens.

16

(10 replies, posted in PunBB 1.2 troubleshooting)

i click edit file in cpanel copy the code paste in notepad and then i make the changes and then paste back into cpanel and save.

So you think i should just save it and upload it again each time to see if that work?

cuz it is definetly getting changed from password the my database password.



oh also i just reinstalled it again and was cusious if this would screw it up and it did. Heres what i did.

In cpanel i when to include functions.php and clicked it and selected edit. I looked up the $password_hash and it was correct. So what i did next was jsut clicked save(note: i did NOT change any code.) Then i refreshed my forum and now the errors there. so then i got back click edit again and look at it and now $password_hash is back to my database password_hash

17

(10 replies, posted in PunBB 1.2 troubleshooting)

question i just reinstalled punbb first and check it out is it says $password_hash <---- thats exactly what it says.

Now once i edit function and save it it turns to mypassword_hash <---- no money sign and it changes from password to the database password. is that supose to happen?


also i just change mypassword_hash to $mypassword_hash and still doesnt work....

18

(10 replies, posted in PunBB 1.2 troubleshooting)

also i did have my forums completely done and modded and such and i also edited the functions.php file then too. Everytthing was fine then i decided i thought the top poster thing i had on it was stupid so i removed it and after editing that it started with that error. Since top posted code was at very end of the functions.php i know i didnt take to much out becuz i only removed it and left the one } that should be there. But even after that it stil lhad the error so i decided to delete everything and start over. So after that i just started by adding portal and was adding the link Forums to nav through the functions.php and got error again. So redid it again same thnig and error again. Then this time i figured it was just from adding that code so i decided to just add private messageing so did everything but the functions.php editing and everythnig was fine but once i edited the functions.php for what was needed for the private messaging it once again got the error so please anyone whats wrong?

19

(10 replies, posted in PunBB 1.2 troubleshooting)

Thanks to anyone who can help me fast.

I am having a problem to where at any point in time that i edit my function.php it then gives me a error.


heres the error.

Parse error: syntax error, unexpected T_LNUMBER, expecting '&' or T_VARIABLE or T_CONST in /home/alpha/public_html/include/functions.php on line 134

Now the line 134 that it is refering to is this.

line 134 ------>  function pun_setcookie($user_id, Password_hash, $expire)

{
    global $cookie_name, $cookie_path, $cookie_domain, $cookie_secure, $cookie_seed;

    // Enable sending of a P3P header by removing // from the following line (try this if login is failing in IE6)
//    @header('P3P: CP="CUR ADM"');

    if (version_compare(PHP_VERSION, '5.2.0', '>='))
        setcookie($cookie_name, serialize(array($user_id, md5($cookie_seed.$password_hash))), $expire, $cookie_path, $cookie_domain, $cookie_secure, true);
    else
        setcookie($cookie_name, serialize(array($user_id, md5($cookie_seed.$password_hash))), $expire, $cookie_path.'; HttpOnly', $cookie_domain, $cookie_secure);
}

---------------------------------------------


only different in line 134 there is i put  Password_hash instead of my actual password for posting purposes. So anyone know why it does this? only 2 things iv tried after reinstalling forums like 5 times is with the functions.php i tried adding forums tab to the nav bar without aving to have it in my admin panel and i just this last time tried adding the private messageing mod.


Any ideas?

20

(0 replies, posted in PunBB 1.2 discussion)

Ok well i have the portal put on my forum ok and i have it limited to who can post in the news section which is whats shown on the portal. Well i was wondering how to modify it so that isntead of there name being plain text i wanted it to link to posters profile and also be the color of the usergroup there in. This means im using the color usergrop modification. Anyone able to help that be great.

21

(4 replies, posted in PunBB 1.2 discussion)

Ok i was wondering is there anything that tells you what each thing is on the forum code to make a style? I was wondering because im going to make my own custom style for my forums and not sure what each parts labeled as. What i mean is like in say oxygen.css what the .pun or brdheader i know that header is one i know but thats what i mean by a lsit of what each thing is. Is there anything tofollow cuz when lookng at otehrs when you change somthnig some thnigs dont even show a difference or tis hard to see so cant figure out what it is. Thanks to anyone who helps.

22

(4 replies, posted in PunBB 1.2 discussion)

ahh ok  got it.

23

(4 replies, posted in PunBB 1.2 discussion)

ahh so basically the reports just tel ladmins to go to that topic read it and them they have to deal ewith it there? like as in like possibly manually edit the post if its somthnig that shouldnt be there.?

24

(4 replies, posted in PunBB 1.2 discussion)

Hey i was wondering whats the Zap thing actually do? for the reports that is.

25

(3 replies, posted in PunBB 1.2 discussion)

Ok thanks ill do that.