7,051

(1 replies, posted in Feature requests)

A field for MSN Messenger is included in the next release of PunBB. You can track the progress here: http://punbb.org/forums/viewtopic.php?id=2467

Mod anyone?

It's possible, but it's quite complicated.

I'd say it's generally a bad idea. Not only is it hard to implement, but there are "ethical" issues with being automatically registered in multiple forums. I wouldn't be too happy if I was registered in more than the forum I registered in.

If you look at admin_maintenance.php (for rebuilding the search index), you will see that it indexes a number of posts per page and then redirects to the next page (via Javascript). This way you don't have to worry about the script timing out.

7,055

(5 replies, posted in PunBB 1.2 show off)

I really like the style. The colors are very pleasant to look at.

7,056

(10 replies, posted in Archive)

Det blir lite krångligare. Jag har nog iofs inte riktigt förstått varför du ha två olika forum med samma innehåll. Är det olika innehåll på de två sidorna som ska dela på forumet?

7,057

(4 replies, posted in General discussion)

"IRC is the original, and * only * IM the anyone in the world needs."

Amen to that :)

Here's what it looks like to me in IE6:

http://w1.421.telia.com/~u42121130/dropdown.png

It screws up in Firebird though. The drop down layer appears in the top left corner of the page.

Why it doesn't work correctly when used in the forums is beyond me at this time. I haven't had the strength to read through your code above though. Perhaps I will be up to it tomorrow. Does the output look correct? I mean, is the output in the forums the same as the output on the other pages?

Well, it seems to work for me. However, in the forums, the drop down links have a different background color than what you have on the other pages. Is that on purpose or was that the problem you were talking about?

7,060

(10 replies, posted in Archive)

Om det enda du vill göra är att ha olika styles i de två forumen är det lättast att bara hacka en av skripten lite. Öppna upp header.php i de båda forumen. Leta efter:

<link rel="stylesheet" type="text/css" href="style/<?php print $style.'.css' ?>">

och ersätt med t.ex.

<link rel="stylesheet" type="text/css" href="style/stil1.css">

I det andra forumet väljer du en annan stil. Bemärk dock att denna förändring kommer att göra att stil1.css kommer visas oavsett vad användaren har valt i sin profil.

You can find an explanation in this topic.

7,062

(8 replies, posted in PunBB 1.2 troubleshooting)

The topmargin and marginheight attributes are deprecated. Try this:

<body style="margin: 0; padding: 0">

7,063

(6 replies, posted in General discussion)

You can in the windows version, but not in the linux curses version :/

Edit: I'll be damned. You can do it there too. Whee!

If you go to www.yourdomain.com and view the source of the webpage, what css file is it trying to fetch?

It should look like this:

<link rel="stylesheet" type="text/css" href="style/Oxygen.css">

7,065

(6 replies, posted in General discussion)

Stop running BitTorrent for hours and hours when you are not home!

I just noticed how extremely slow the website becomes when BitTorrent is running. It steals all the upload bandwidth and on top of everything uses UDP which makes it even harder to get any TCP packets through. I really must stop doing that. It makes PunBB appear slow :/

7,066

(4 replies, posted in PunBB 1.2 troubleshooting)

English, please.

7,067

(3 replies, posted in PunBB 1.2 troubleshooting)

I'd say it's related to your connection. There's nothing special about the way CSS is included in PunBB.

7,068

(4 replies, posted in PunBB 1.2 show off)

I really like the header with the logo. Very nice :)

7,069

(4 replies, posted in PunBB 1.2 troubleshooting)

Mine are 8bit PNG's. I used the following template:

http://punbb.org/stuff/smiley_template.psd

And then just used "Save for web", selected PNG8 and the appropriate number of colors.

7,070

(87 replies, posted in PunBB 1.2 discussion)

Well, not really. See the changelog for details.

I would say it's a problem with your SMTP server. Do you use authentication for the server?

7,072

(9 replies, posted in Programming)

As long as it works, we can ignore the how :)

7,073

(87 replies, posted in PunBB 1.2 discussion)

Finally fixed the new quote syntax. Phew!

7,074

(5 replies, posted in PunBB 1.2 troubleshooting)

The Swedish lang pack is not included in PunBB 1.0.1.

7,075

(4 replies, posted in Archive)

Det har med hur radbrytningar representeras på olika plattformar. I UNIX-världen representeras en radbrytning av tecknet med ASCII-värde 10 (brukar skrivas \n). I Windows använder man två tecken, 10 och 13 (\r\n). Notepad förväntar sig att alla textfiler den öppnar skall vara i Windows-format med både \r och \n vid radbrytningar. Om en fil då bara använder \n för radbrytningar kommer Notepad bugga ut.

Jag anser att det sätt man gör det på i UNIX är att föredra. Att man använder \r\n är bara en gammal kvarleva sedan skrivmaskinstiden (\r = carriage return, \n = line feed). Därför har jag ställt in min editor att använda UNIX-radbrytningar och därför blir det knas när man öppnar dem i Notepad :)