Might I ask why?
7,327 2003-09-24 21:50
Re: In Profile choose not show Avatars (4 replies, posted in Feature requests)
I'll put it on the list.
7,328 2003-09-24 21:49
Re: To be able to change time.. (18 replies, posted in Feature requests)
I'll put it on the list.
7,329 2003-09-23 19:08
Re: My avatars even don't upload (10 replies, posted in PunBB 1.2 troubleshooting)
Well, it all depends on your setup. Who runs the webserver and who owns the directories. Try chmodding the avatar directory to 777.
7,330 2003-09-23 19:06
Re: Poll for PunBB (64 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I saw this the other day. It looks very nice :)
One thing though. Why would you want a poll to be "invisible"?
7,331 2003-09-23 17:36
Re: My avatars even don't upload (10 replies, posted in PunBB 1.2 troubleshooting)
Honestly, I have no idea. I tried uploading a really small image and it still said it was wider than 60 pixles. The host you are using must be screwed somehow. The fact that the load averages are "10.21 9.32 6.97" should be reason enough to change host :)
7,332 2003-09-23 16:11
Topic: Downtime (0 replies, posted in PunBB 1.2 discussion)
Large parts of Sweden and Denmark were today struck by a power failure. As a result, PunBB.org was down for a few hours. I think everything is up and running as it should now. I did notice that the date and time on the server was way off, so you might experience some wierd cookie behavior. I recommend that you click "Mark all forums as read" if you experience any problems.
7,333 2003-09-23 16:03
Re: My avatars even don't upload (10 replies, posted in PunBB 1.2 troubleshooting)
Hmm, when I try to upload an avatar it says "The file you tried to upload is wider than the maximum allowed 60 pixels.". The image IS 60x60. Have you made any changes to profile.php?
7,334 2003-09-23 12:24
Topic: PunBBHeb (4 replies, posted in News)
There is now a version of PunBB available in Hebrew! It is translated and maintained by the folks at http://punbbheb.dan.mihopa.com/. The reason there isn't just a lang pack for the Hebrew version is that hebrew is read right-to-left and in addition to just changing the direction of text, a few other changes have to be made to the HTML output. So, if you are interested in running a Hebrew PunBB board, you should definately go check it out.
7,335 2003-09-22 23:18
Re: login bug (1 replies, posted in PunBB 1.2 bug reports)
Have you tried deleting your cookies? It almost sounds as if there is a cookie conflict.
7,336 2003-09-22 23:17
Re: Om att använda delar av kod till egna projekt (2 replies, posted in Archive)
Hej My!
Visst får du använda koden. En sak måste du tänka på dock. Om du någonsin beslutar dig för att släppa din "produkt" måste du se till att den släpps under samma licens som PunBB, dvs. GNU General Public Licence. I övrigt kan du göra lite vad du vill med den :)
Jag blir ju så klart glad om du lämnar kvar en notis om att koden kommer från PunBB ursprungligen. Som jag faktiskt gjort då jag lånat vissa delar från phpBB :D
7,337 2003-09-22 23:14
Re: Password protected forums (6 replies, posted in Feature requests)
This couldn't be what you're looking for?
7,338 2003-09-22 23:13
Re: BIG BUG with international charakters and Opera browser (7.10) (39 replies, posted in PunBB 1.2 bug reports)
I'm considering it :)
7,339 2003-09-22 16:31
Re: Attachments (55 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Frank H: Yeah, it looks much better now :)
7,340 2003-09-22 12:40
Re: Attachments (55 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I guess he's just testing stuff out. 100 KB should be a nice default value I think.
7,341 2003-09-22 10:30
Re: My avatars even don't upload (10 replies, posted in PunBB 1.2 troubleshooting)
Could I perhaps get the URL to your forums, so I can try?
7,342 2003-09-21 19:19
Re: Avatar (10 replies, posted in Archive)
Det felet uppstår när move_uploaded_file() misslyckas. Det händer vanligtvis när PHP inte har rättigheter att skriva till avatar-katalogen. Jag har ingen aning hur sånt fungerar i Windows dock. Prova högerklicka på avatar-katalogen och leta upp något om rättigheter
Angående smilies. Vad menar du med att den inte funkar? Den där inställningen gäller för alla forum. Man kan sen välja i varje enskilt inlägg om man vill att smilies ska visas eller inte. I detta inlägg har jag valt att de skall visas.
7,343 2003-09-21 00:45
Re: The work continues (87 replies, posted in PunBB 1.2 discussion)
I've actually done something today. Yay!
7,344 2003-09-20 23:50
Re: Avatar on registering (7 replies, posted in Feature requests)
Kennel turns his head and looks at any willing modders :)
7,345 2003-09-20 21:08
Re: INFO: Bad HTTP_REFERER (180 replies, posted in PunBB 1.2 troubleshooting)
Remove /index.php at the end. Your Base URL should be
http://ganymede.hbv.hik.se/~kr11am/applikation
7,346 2003-09-20 20:00
Re: Installera svenska (1 replies, posted in Archive)
Packa upp filen i katalogen lang. Redigera sen config.php. Byt ut
$language = 'en';
mot
$language = 'se';
7,347 2003-09-20 19:59
Re: INFO: Bad HTTP_REFERER (180 replies, posted in PunBB 1.2 troubleshooting)
To what have you set base URL in admin/options?
7,348 2003-09-20 14:49
Re: template problem (8 replies, posted in PunBB 1.2 troubleshooting)
ps21: That sounds like a great idea. There have been quite a few questions about the templates.
7,349 2003-09-20 11:17
Re: Problem with header (1 replies, posted in PunBB 1.2 troubleshooting)
Well, "include('../include.login.php')" will run the script, it won't return the output. What you have to do is to use a little output buffering:
// START SUBST - {include.login.php}
ob_start();
include('../include/include.login.php');
$tpl_temp = ob_get_contents();
$tpl_main = str_replace('{include.login.php}', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST - {include.login.php}
7,350 2003-09-20 11:13
Re: template problem (8 replies, posted in PunBB 1.2 troubleshooting)
Yeah, that would be very nice :)