26

(5 replies, posted in PunBB 1.2 discussion)

I bet a few people are capable of making one, but not willing to tongue (such as me). I haven't heard of any...

PunBB is my favorite because it is the easiest to modify and stay secure. smile

28

(4 replies, posted in PunBB 1.2 discussion)

Are you sure? I thought GUEST was like 9999....

EDIT: Where could I find out what the number is?

Hi, I'd like to know what the default group number is for the Admin. I made one more user group, so if you could tell me what number that would be, that would be great smile

Thanks in advance!

Thanks!

I don't think so. Where do I do that? Sorry for asking you more questions...

32

(4 replies, posted in PunBB 1.2 discussion)

Although I have not done this and am not a pro at php, I would look into how posts are diplayed in a forum because they are ordered by date. Then I would use that and take out the limit for the forum number, and only get 10 topics.

funny stuff here ^^

34

(9 replies, posted in Programming)

oh. I didn't read carefully enough. thanks for the info.

35

(11 replies, posted in General discussion)

My brother has the Wii, but I personally don't like it too much. I do like bowling and Twilight Princess, but there aren't many games I would play on it. I'd rather have an Xbox360, but that is the kind of games I like. I don't play video games too often though... at least I don't after I beat Twilight Princess.

I'm 15 btw.

36

(35 replies, posted in General discussion)

I used to use the free host www.freehostia.com  but they have some downtime now. The site is up most of the time, but the file manager for small changes is not always working. If you need something temporary, you may want it.

37

(9 replies, posted in Programming)

I usually use this:

h1, h4 {
display: inline;
}

I don't know if that is not as good of method, but I am pretty sure it works.

I would make the forum include the php(or just the file) of the header and navigation, and have the forum skin not do anything on top if you wish. The reason why is because you would have to omit the 'requires' that include the header information.

I know because I am doing it that way, and it isn't as easy(i think). If I am wrong someone please tell me. wink

ok, thanks! smile

EDIT: I updated the first post with another problem.

Hi all. My question is how is a user profile changed? More specifically, where is the code that submits the user info to the database? I looked in the profile.php file, but it is a large file to go through. The reson I need to edit it is because I am displaying the forum in a page that already declared the header, so I need to make some small adjustments.

Also, I have another related question. Lets say that I wanted to move some of the settings to a different 'section' of the user's profile for the user to edit. I know that the form is different, and that setting would not be changed unless some of the post code is changed. How/where would I do this?

Thanks for any help!

EDIT1:
Okay. I got the setting moved and it works, but only partcially. I copied the code for the email setting, but it only seems to work one way. When I set it to display the email address, it changes it fine, but when I set it to not display it, it doesn't change. neutral Here is the code I copied into the essentials part of the switch statement:

$form['email_setting'] = intval($form['email_setting']);
if ($form['email_setting'] < 0 && $form['email_setting'] > 2) $form['email_setting'] = 1;

Any ideas?