Eureka. Somebody else who doesn't like Opera.
2,426 2004-08-26 00:29
Re: Poll: What browser do you use? (101 replies, posted in General discussion)
2,427 2004-08-24 21:17
Re: Poll: What browser do you use? (101 replies, posted in General discussion)
Safari 1.0.3
Oh s***. I assumed anybody using Safari would be using 1.2.
2,428 2004-08-24 12:55
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
"There are two ways of constructing a software design; one way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult." ~C. A. R. Hoare~
Or you could just establish a virtual monopoly in which case you don't have to care.
2,429 2004-08-24 10:49
Re: Poll: What browser do you use? (101 replies, posted in General discussion)
Firefox 0.93 for the same reasons.
IE6 because I keep forgetting that I have Firefox installed.
Could people reply to this post. The information might be useful for development purposes.
2,430 2004-08-23 12:36
Re: Why does PunBB require CoOkiEs? (2 replies, posted in PunBB 1.2 troubleshooting)
I drive an Edsel: The short answer is because it doesn't use sessions whereas some other scripts do.
Rod: All BBS require cookies for persistent login. However, as far as I know, those who use sessions do not require cookies to login for the one browsing session.
2,431 2004-08-22 01:53
Re: Install script (6 replies, posted in Feature requests)
If its blank it forces people to find out their correct settings. People who don't know any better might just accept the defaults even if they are wrong.
In my case and many others, the host is not localhost and the username is not root.
2,432 2004-08-20 18:35
Re: Windows XP ServicePack2 (10 replies, posted in PunBB 1.2 discussion)
I have it running on a local machine with the following setup
WinXP SP2
Apache
mysql 4
php 4
No problems. I haven't noticed any other problems with SP2 either apart from the annoying and irrelevant security warnings.
2,433 2004-08-20 18:29
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
I should remind everybody though that with a script like PunBB or any other web application the backend is everything. Writing the xhtml/css which puts the thing on the screen is relatively simple. Writing the kind of php code which Rickard has produced requires real talent.
2,434 2004-08-18 22:04
Re: XHTML 1.0 STRICT valid PunBB (42 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Rod: DT and DD are fine for very simple tabular data like viewing another users profile where you have a simple name/value pairing. However, they have definite problems with complex tablular data. The main problem is that they cannot be coded for better accessability. A table can be coded using id's or scope to associate headers with data in a way a screenreader can understand. You cannot do that with a definition list.
2,435 2004-08-18 10:49
Topic: Newest member (1 replies, posted in General discussion)
I just looked at the index page and it announced that the newest registered member is god. Now that really is impressive. Needless to say her email address was hidden.
2,436 2004-08-16 19:26
Re: parsing PunBB into a page. (9 replies, posted in PunBB 1.2 discussion)
Your code is shit man.... if ($var == sdasdasd) ... NO! if assdads is a string, then surround it in fucking quotes! There are so many second rate PHP coders out there... learn how to fucking code!
There are so many second rate intellects out there; unable to express an opinion intelligently without recourse to expletives.
2,437 2004-08-16 19:15
Re: parsing PunBB into a page. (9 replies, posted in PunBB 1.2 discussion)
mcovey: I'm no php expert myself but I can't see how your idea would work with PunBB. My reasoning is that PunBB produces entire web pages not just chunks of xhtml which could be incorporated into an existing page. By far the easiest way to achieve the result you want would be to edit the template file main.tpl to include the relevant portions of your website. In other words, instead of including bits of PunBB in your website you would include bits of your website in PunBB. A way of starting off would be to take a copy of your index page, wipe out the content in the right column and then include the relevant bits from main.tpl. Now save that file as main.tpl and place it back in PunBB's directory. You will of course have to do a certain amount of playing around with information in the document head.
2,438 2004-08-12 21:07
Re: extern settings (1 replies, posted in PunBB 1.2 troubleshooting)
Open extern.php and look for this near the top
$max_subject_length = 30;
Change the number to something higher.
2,439 2004-08-11 22:09
Re: extern style (15 replies, posted in PunBB 1.2 troubleshooting)
There is a typo. I typed link 9 instead of link9. Can you see it. Does that fix it.
2,440 2004-08-11 21:58
Re: extern style (15 replies, posted in PunBB 1.2 troubleshooting)
OK. Try this
<STYLE type="text/css">
.link 9, .link9 A:link, .link9 A:visited {font-family:arial,geneva; font-size:13px;letter-spacing:0;color:#FFCC00;font-weight:bold;text-decoration:none}
:hover.link9, .link9 A:hover {font-family:arial,geneva; font-size:13px;letter-spacing:0;color:#FFFFFF;font-weight:bold;text-decoration:none}
</STYLE>
Even better, try this
<STYLE type="text/css">
.link 9, .link9 A:link, .link9 A:visited {font-family:arial,geneva; font-size:13px;letter-spacing:0;color:#FFCC00;font-weight:bold;text-decoration:none}
:hover.link9, .link9 A:hover {color:#FFFFFF;}
</STYLE>
Don't worry. If that doesn't work there are some other ways to get it all working which won't conflict with your existing design.
2,441 2004-08-11 21:18
Re: extern style (15 replies, posted in PunBB 1.2 troubleshooting)
No it means you have to change you style declaration so it reads
<STYLE type="text/css">
.link9 A:link, .link9 A:visited {font-family:arial,geneva; font-size:13px;letter-spacing:0;color:#FFCC00;font-weight:bold;text-decoration:none}
.link9 A:hover {font-family:arial,geneva; font-size:13px;letter-spacing:0;color:#FFFFFF;font-weight:bold;text-decoration:none}
</STYLE>
Actually, since the only change on hover is the color then you could just use
.link9 A:hover {color: #FFFFFF} for the color change.
2,442 2004-08-11 20:51
Re: extern style (15 replies, posted in PunBB 1.2 troubleshooting)
The class link 9 appears to be set on the containing div not the link itself. In that case I would have thought
.link9 A:link, .link9 A:visited {font-family:arial,geneva; font-size:13px;letter-spacing:0;color:#FFCC00;font-weight:bold;text-decoration:none}
followed by
.link9 A:hover {font-family:arial,geneva; font-size:13px;letter-spacing:0;color:#FFFFFF;font-weight:bold;text-decoration:none}
would have been what was required. The way you have it you would need <a class="link9" ...>
As for the dot, open extern php and look for · When you find it get rid of it or replace it with
2,443 2004-08-10 23:59
Re: [URGENT] Need Developer Help fast! (14 replies, posted in PunBB 1.2 discussion)
Raybo. I got your email but your server bounced the reply so I have tried again via PunBB form email.
2,444 2004-08-10 23:05
Re: [URGENT] Need Developer Help fast! (14 replies, posted in PunBB 1.2 discussion)
I wasn't aware you could have several IE versions installed in parallell. How do you do that?
You cannot install more than one version of IE but a little known fact is that IE can be run as a stand alone app without being installed. It works fine just so long as you don't hit the favourites button which crashes the browser. Here is IE6 and IE5 running together on my desktop.
http://www.post21.co.uk/Multiex.jpg
You can download the file packs and instructions here.
http://www.insert-title.com/web_design/ … v/multi_IE
BW: Will some kind or mercenary soul please help Raybo. Somebody must need some beer money.
2,445 2004-08-10 19:40
Re: Width (1 replies, posted in PunBB 1.2 troubleshooting)
That should work fine. Putting it in a wrapper should have worked provided you set the width of the wrapper to 80%.
2,446 2004-08-10 15:24
Re: [URGENT] Need Developer Help fast! (14 replies, posted in PunBB 1.2 discussion)
Thanks Raybo. I've got a number of browsers installed for testing myself
IE5 (Win)
IE5.5 (Win)
IE6 (Win
Mozilla (Win and Linux)
Konqueror 3.2 (Linux)
Firefox (Win)
Opera 7.5 (Win)
Netscape 7 (Win)
Of course, not a Mac browser amongst them. Fortunately I have got some help testing on Safari and Camino but it was useful to know the situation regarding IE5 Mac even though it wasn't the answer I was hoping for
2,447 2004-08-10 14:57
Re: [URGENT] Need Developer Help fast! (14 replies, posted in PunBB 1.2 discussion)
Raybo: off topic but I would be gateful for your help. Could you tell me what the current situation is regarding IE5+ Mac. Is it now to be regarded as virtually dead as overall usage statistics suggest or are Mac orientated sites still getting a significant number of visitors using it.
2,448 2004-08-10 00:20
Re: PunBB Style previewer (14 replies, posted in PunBB 1.2 discussion)
I'm planning of making some kind of style editor for PunBB++. A very easy to use.
That makes two of us then. I thought of using the same system to generate stylesheets as PunBB uses to generate web pages. Let users fill in a form with the values they want, preview it and then a stylesheet would be generated for download from a template. Maybe I should leave it to you. I suck at php. BTW. Did you email me. My server had some problems with it's anti-spam system and I lost a load of emails. All I have is a list of senders.
As for that toy of mine. I forgot all about that. It was never finished and I'm surprised its still around. I guess I better leave it where it is. It doesn't require php or mysql. It's just static html, css and javacript. It will work on your local computer so feel free to grab all the files. The way it works is there are a whole bunch of stylesheets where one style is altered in each. The buttons just operate a stylesheet switching script. This is the same system that some sites use to let users change text sizes or background colours or sometimes to generate printer friendly versions of pages. If you download it and stick you own stylesheet in the right directory it will act as a preview system. On the other hand , you could just use friend Hampe's excellent previewer and save yourselves the bother.
2,449 2004-08-06 01:18
Re: Two Column Layout (12 replies, posted in PunBB 1.2 discussion)
Just my opinion but is having to scroll down any more of an effort than having to go through one extra layer of navigation for subforums. If somebody really has a huge list of categories or forums then wouldn't the best solution be to put a copy of the jump menu at the top of the forum so people could go straigt to the forum they wanted. Obviously some back to top links would also come in handy.
2,450 2004-08-03 10:20
Re: More option for unanswered post (6 replies, posted in Feature requests)
I think he means filtering the results of "show unanswered posts" e.g. if you are the local php guru then you would get the unanswered posts asking questions about php. Either that or showing unanswered posts on a category/forum wide basis rather than a board wide basis.