Very nice intergration. Nice work, and nice theme
101 2006-10-06 19:38
Re: TV-Cards.com (15k+ users, 13k+ topics, 50k+ posts) (5 replies, posted in PunBB 1.2 show off)
102 2006-10-06 07:30
Re: Meber can not delete their own posts (5 replies, posted in PunBB 1.2 bug reports)
there are two options, uses deleting their posts, and their topics (including any replies).
i also noticed that if you have "users can delete their posts" off and "users can delete their topic" on than i get an error when i try to delete my topic... that seems more like a bug.
103 2006-10-06 07:14
Re: creating new forum (6 replies, posted in Feature requests)
The easyest way would be to edit the statement that addes the forum tho the database, add a input to the page for the name on the page
104 2006-10-03 19:29
Topic: "User has posted earlier" For Search (6 replies, posted in Feature requests)
i think the title tells its all.
The dot in the Viewforum page is helpfull, but ithink it should be on the search pages also. When i click the "Show new posts since last visit" it would be REALY nice knowing what posts you have posted on, insted of just trying to remember what ones. Same as if you do a search.
105 2006-10-03 08:34
Re: Word Association Thread (1,382 replies, posted in General discussion)
Cryogenics
106 2006-10-03 08:32
Re: Username and/or Password? (14 replies, posted in Feature requests)
the "Password was wrong" would be nice yes, but if the username was wrong than there would be no password to compare it to.
107 2006-10-03 08:28
Re: PunBB is AWESOME!! (17 replies, posted in PunBB 1.2 discussion)
my favorite part is the source code, SOOOOO easy to read and understand, iv see phpbb's source... OMG its hell
108 2006-10-01 03:55
Re: abt UserManagement Plugin (4 replies, posted in PunBB 1.2 discussion)
i beleave you will be given the option to delete their posts or not
109 2006-09-30 22:56
Re: [sugestion] - Add forum URL to stylesheet links (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
its in 1.3
110 2006-09-27 07:05
Re: Firefox 2.0 (47 replies, posted in General discussion)
Is it safe to upgrade to that, or better to wait for the official 2.0 releace
111 2006-09-25 19:24
Re: I deleted temp category (5 replies, posted in PunBB 1.2 troubleshooting)
when you created your own categories, did you add forums to them? if they dont have any forums in them, the category wont show.
112 2006-09-23 19:31
Re: Problem with transparency of custom png smileys in IE ... (12 replies, posted in PunBB 1.2 troubleshooting)
IE = Donkey Balls
113 2006-09-21 08:13
Re: Word Association Thread (1,382 replies, posted in General discussion)
hungry
114 2006-09-21 07:56
Re: Regarding Google Adsense (1 replies, posted in PunBB 1.2 troubleshooting)
edit main.tpl, and add above <pun_announcement>
<div class="block">
<div class="box">
<div class="inbox">
[GOOGLE AD CODE HERE]
</div>
</div>
</div>
to center it, add to the last div
style="text-align:center"
116 2006-09-11 06:33
Re: Word Association Thread (1,382 replies, posted in General discussion)
117 2006-09-05 05:24
Re: MH Forum Version 2... (9 replies, posted in PunBB 1.2 show off)
that is awsome work.
118 2006-09-04 18:12
Re: Automated Forum selection (2 replies, posted in Feature requests)
i thought the same thing. its quite nice
119 2006-08-27 18:40
Re: How to stop the posts counter in some subforum? (5 replies, posted in Feature requests)
seems like it would work cept '1,2,3' isnt an array,
replace that line with
if(in_array($fid, array('1','2','3')))
120 2006-08-27 18:32
Re: padding (1 replies, posted in PunBB 1.2 troubleshooting)
On that site they have moded the last post colum and added a break after the link. To do the same just..
open viewforum.php
find [line:148]:
$last_post = '<a href="viewtopic.php?pid='.$cur_topic['last_post_id'].'#p'.$cur_topic['last_post_id'].'">'.format_time($cur_topic['last_post']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['last_poster']).'</span>';
replace with:
$last_post = '<a href="viewtopic.php?pid='.$cur_topic['last_post_id'].'#p'.$cur_topic['last_post_id'].'">'.format_time($cur_topic['last_post']).'</a><br/> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['last_poster']).'</span>';
And en index.php
find[line:111]:
$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.format_time($cur_forum['last_post']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'</span>';
replace with:
$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.format_time($cur_forum['last_post']).'</a><br/> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'</span>';
hope i didnt miss something
121 2006-08-24 06:49
Re: What editor do you use for php? (114 replies, posted in Programming)
I'm stuck on Notepad2 and i cant seem to stop using it. And yes iv tryed.
122 2006-08-22 19:26
Re: Post count idea (12 replies, posted in PunBB 1.2 discussion)
that is for when users view, but if a guest views, the query in the else statement is used.
123 2006-08-22 18:52
Re: Post count idea (12 replies, posted in PunBB 1.2 discussion)
well it seemed that guest views didnt count, unless you add "t.poster," to the second query. But it seems to be working now.
124 2006-08-22 18:39
Re: Post count idea (12 replies, posted in PunBB 1.2 discussion)
seems to work greatly so far.
125 2006-08-21 23:07
Re: Post count idea (12 replies, posted in PunBB 1.2 discussion)
kool, ill take a look at that