I bet a few people are capable of making one, but not willing to (such as me). I haven't heard of any...
27 2007-03-25 21:07
Re: Question about new post. (3 replies, posted in PunBB 1.2 discussion)
PunBB is my favorite because it is the easiest to modify and stay secure.
28 2007-03-25 20:56
Re: Group numbers? (solved) (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?
29 2007-03-25 20:41
Topic: Group numbers? (solved) (4 replies, posted in PunBB 1.2 discussion)
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
Thanks in advance!
30 2007-01-22 00:30
Re: How the profile is changed(solved) (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Thanks!
31 2007-01-22 00:23
Re: How the profile is changed(solved) (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I don't think so. Where do I do that? Sorry for asking you more questions...
32 2007-01-21 21:00
Re: Showing last 10 posts (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.
33 2007-01-21 20:57
Re: How to Shoot Yourself in the Foot in Any Programming Language (17 replies, posted in Programming)
funny stuff here ^^
34 2007-01-21 20:48
Re: css and crap (9 replies, posted in Programming)
oh. I didn't read carefully enough. thanks for the info.
35 2007-01-21 19:27
Re: Anybody get a Wii? (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 2007-01-21 19:23
Re: Good hosting? (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 2007-01-21 19:04
Re: css and crap (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.
38 2007-01-21 18:45
Re: intergrate pun with the main site? (9 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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.
39 2007-01-21 18:39
Re: How the profile is changed(solved) (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
ok, thanks!
EDIT: I updated the first post with another problem.
40 2007-01-21 04:04
Topic: How the profile is changed(solved) (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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. 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?