install firefox and install the plugin firebug, select element with firebug and you see the element's css
2 2007-12-06 11:20
Re: PunBB 1.3 (7 replies, posted in PunBB 1.2 discussion)
im not part of the team but id say about 6 months. till the full relase... i think lol
that's a bit long i guess,..
In februari I got this message from Rickard:
I'd say months. Not many months though. I think we can be reasonably
feature complete within a month, but then we need to test.
So I hope it's going to be sooner than 6 months, there not a lot of open tickets for 1.3 anymore :-)
3 2007-08-20 17:17
Topic: Groups and forum rights (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
ok,.. I've got a lot of groups on my website..
what i want is simple...
3 groups next to members, guests and admins:
- moderators
- writers
- main writers
2 forums:
- moderator forum
- writer forum
i want acces for the next groups to the next forums:
- moderator forum --> moderators ----> this is no problem
- writers --> only acces for writers and main writers, mods shouldn't be able to read the forum.
- main writers --> only access for main writers, mods shouldn't be able to read the forum.
The bottom 2 forums are quite difficult to make, does anyone has a hack for this?
4 2007-08-16 14:01
Re: 1 Forum, 2 websites? (7 replies, posted in PunBB 1.2 discussion)
well,.. that's not enturely true,.. i've got a live setup www. and a test setup test. and i can't post anything at test. because the hostname i'm on is not correct, is it possible to change that somewhere?
5 2007-08-16 13:54
Re: A mod for updated and edited posts (2 replies, posted in PunBB 1.2 discussion)
would be cool indeed, maybe not as a new message, but with a different color,.. edited message.
6 2007-08-14 20:22
Topic: super clean private message notification (2 replies, posted in PunBB 1.2 show off)
username: punbbtest
password: puntest
forum: http://www.macminds.net
Just send yourself a private message by filling in your own name here:
http://www.macminds.net/message_send.php
and than go to the forum index:
http://www.macminds.net/index.php?p=forum
:-)
7 2007-06-23 12:17
Re: Punbb 1.3 status (23 replies, posted in PunBB 1.2 discussion)
I would also love to hear about the release date, I have a list of mods that I want to develop, but I don't want to develop them for 1.2.x now and than redevelop them for 1.3 again in a few months...
Almost two years ago (I guess) the developper said that it would take a few months, in february Rickard told me it be a few months,...
8 2007-05-13 13:23
Re: PunBB hardware (11 replies, posted in PunBB 1.2 discussion)
We have a dedicated server for MacMinds.net, We're not that big yet,
(only a little over 1800 members) where running on a 3.0Ghz dual Xeon-dual.
9 2007-05-09 12:28
Re: [Release] Author Update (18 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Is it possible to make this mod available not only for admins but also for certain (not all) mods?
10 2007-05-07 15:19
Re: Sample PunBB 1.3 Board (38 replies, posted in PunBB 1.2 discussion)
I love the upcoming version, but why does it take so long? Last month the developpers where not really active, is there anything we as normal users can do to speed things up a bit?
:-)
11 2007-02-02 07:37
Re: Hooks have been added to 1.3 (38 replies, posted in PunBB 1.2 discussion)
Cool!! i hope 1.3 is going to be here soon!
Is the PM system compatible with the mod that a lot of us have installed?
12 2006-12-26 20:35
Re: Lock post (prevent from editing) (9 replies, posted in Feature requests)
yeah, what i want is:
mods & admins should the only ones that can use the mod tag, and whenever the tag is placed the post should be locked for the poster
but i guess i'll wait for 1.3 for that! (hope it 'll be here soon)
13 2006-12-21 12:21
Re: Lock post (prevent from editing) (9 replies, posted in Feature requests)
cool, than i can finaly have mod tags
14 2006-12-06 20:51
Topic: MySQL query question... (0 replies, posted in PunBB 1.2 troubleshooting)
Hello,
I want to see which users only posted in forum_id 9 on my forum,
does anyone know which query i should use?
Regards,
Harold
15 2006-12-01 21:41
Re: In view forum: topic posted by in a seperate column. (8 replies, posted in Feature requests)
wow, yeah,.. why didn't i found that?
but i can tell you, my changes are not that big,
i've just added an extra column tc1 added the css code and moved the poster from one to another column:
<tr class="tc-header">
<th class="tcl" scope="col"><?php echo $lang_common['Topic'] ?></th>
<? //added one line to show the poster name in a separate column ?>
<th class="tc1" scope="col"><?php echo 'Door' ?></th>
<th class="tc2" scope="col"><?php echo $lang_common['Replies'] ?></th>
<th class="tc3" scope="col"><?php echo $lang_forum['Views'] ?></th>
<th class="tcr" scope="col"><?php echo $lang_common['Last post'] ?></th>
</tr>
&
</td>
<? //added lines to show the poster name in a separate column ?>
<td class="tc1">
<?php
$suffix = "..";
$maxChar = 9;
if (strlen($cur_topic['poster']) > $maxChar){
$cur_topic['poster'] = substr($cur_topic['poster'],0,$maxChar);
$cur_topic['poster'] = $cur_topic['poster'] . $suffix;
}
echo ($cur_topic['moved_to'] == null) ? $cur_topic['poster'] : ' '
?>
</td>
<? //end change?>
<td class="tc2"><?php echo ($cur_topic['moved_to'] == null) ? $cur_topic['num_replies'] : ' ' ?></td>
<td class="tc3"><?php echo ($cur_topic['moved_to'] == null) ? $cur_topic['num_views'] : ' ' ?></td>
<td class="tcr"><?php echo $last_post ?></td>
and deleted this piece 3 times:
<span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>'
all three of these changes above where in the viewforum.php
next piece of code is changed in the css:
.tcl {TEXT-ALIGN: left; WIDTH: 50%}
.tc2, .tc3, .tcmod {WIDTH: 9%; TEXT-ALIGN: center}
.tc1 {WIDTH: 10%; TEXT-ALIGN: left; overflow: hidden;}
.tcr {WIDTH: 28%; TEXT-ALIGN: left}
I'll make an official mod somewhere this weekend
16 2006-12-01 19:55
Re: Fangorn (6 replies, posted in PunBB 1.2 show off)
I'm watching the site on a freshly calibrated Apple Cinema Display and well it's too damn dark, it fits the metal music style, but so would a red or green font color
on the index.php and the viewforum.php it's more disturbing than in viewtopic.php, there you added a border, that makes the whole feel a lot lighter if you know what I mean.
this is the punbb config of a friend of mine, it also has a dark cloud hanging over it, but it's a whole lot better to read.
My own punbb board is completly different, but it's for a total different purpose.
17 2006-12-01 09:44
Re: Fangorn (6 replies, posted in PunBB 1.2 show off)
I'm getting head aches from de grey-on-black, if you make the color of the text #999999 or #EEEEEE it will be a lot better to read.
18 2006-12-01 09:42
Re: I just found this online... (9 replies, posted in PunBB 1.2 show off)
I don't like it either, it's too clunky, not really well-designed.
19 2006-12-01 01:10
Re: check out macminds.net (6 replies, posted in PunBB 1.2 show off)
i've changed some layout "bugs"
the topic poster now is in a seperate column: http://www.macminds.net/viewforum.php?id=45
and the new posts button and topic pagenumber are positioned below the topic title now
Next is a lightbox private message notifier
20 2006-12-01 01:07
Re: In view forum: topic posted by in a seperate column. (8 replies, posted in Feature requests)
ok, it's live for almost a week now, I've *hacked* it myself.
http://www.macminds.net/viewforum.php?id=20
doesn't it look neat?
21 2006-11-16 15:29
Re: Disallow users to view The Profile! (3 replies, posted in Feature requests)
you can go into the user group settings and change the option for allowing guests to search userlist to "No".
If i do this, than guests can still view the profile.php
Does anybody have a clue how I can make profile.php not visible for guests?
22 2006-11-03 14:49
Topic: In view forum: topic posted by in a seperate column. (8 replies, posted in Feature requests)
Hello,
On my forum people complained that it's not really "logical" to
have the user that started a topic at the end of the sentence.
for example if someone would start a topic with the title:
Help, I'm scammed.
in viewforum it would say,
Help, I'm scammed. by HSL
now I've made a modification to viewforum.php and /styles/imports/base.css
and I have a seperate column where the post starter is in.
Can this be standard in the next revision or can it be optional?
Regards,
Harold
23 2006-11-02 10:14
Re: check out macminds.net (6 replies, posted in PunBB 1.2 show off)
momono.nl did the basic design, and we changed it a little together to make it
match punbb, and after that I made the forum itself match the frontpage.
Have you clicked on the header of a news article? that's what i like the most.
we still have to change a lot of things and we made a lot of adjustments in the
system itself that all need to be commented so we know where who did what.
24 2006-11-01 23:31
Topic: check out macminds.net (6 replies, posted in PunBB 1.2 show off)
It's a dutch macforum for pro;s and prosumer;s, up and running since 18 september,
what do you think?
25 2006-10-21 09:24
Topic: special characters show as "?" (1 replies, posted in PunBB 1.2 troubleshooting)
Hello,
I've got a problem:
http://www.macminds.net/viewtopic.php?pid=14955#p14955
you see the "?"
does anyone know how i can fix that?
Regards,
Harold