I would like to see PunBB use session ID to enable board functionality even on cookie disabled browsers.
2 2005-03-14 14:34
Re: Folder Tree (8 replies, posted in Programming)
Look at >> http://www.sortons.net/photos/test2.htm
Advantages are
- very light JS code
- 100% degradable (old browsers see simply the list)
- no limit of tree !!!Happy ?
<li class="tree"><img class="tree" src="images/page.gif" alt="album" />
These stuff are repeating all over the place in the script. It would be a good idea to remove the class="tree" from the <li> because you can access them through ul.tree li {} anyway.
The same thing with <img> as well. It could be done by using only CSS and assigned to ul.tree li {} or ul.tree li a {}.
Just some suggestion. Btw, nice tree view script.
3 2005-03-14 09:10
Topic: Email using PHP, sometimes not sent/received. (11 replies, posted in Programming)
Once I've used the mail() function to email out registration verification code but somehow there are quite a number of people who never receive them. Whenever I test it, I am able to get the email from my Yahoo!, GMail or Hotmail accounts but somehow some other Yahoo! users said they never receive it and not even in the Bulk mail.
It was hectic to send these verification emails one by one using my own web based email. Anybody knows the reason why these emails are not sent to certain users? Can somebody advise on this? Thanks.
4 2005-03-12 16:23
Re: Missing width and height attribute in <img> (not really a bug) (5 replies, posted in PunBB 1.2 bug reports)
Haha, you guys really planned on that? I'll be here for sure, maybe a little contribution from me could help.
5 2005-03-12 13:03
Re: Missing width and height attribute in <img> (not really a bug) (5 replies, posted in PunBB 1.2 bug reports)
Ahh, my mistake! Haha. Oh well, I just forgot how I actually remember that width and height must be set in order for it to validates. Uhh, okay. Nice work on the board!
Yeah since we're talking about web standards, why not try and remove the empty tags? I can understand that some are really needed in order to get what the layout is supposed to be, such as
<div class="clearer"></div>
Maybe that will be the last thing to care for.
6 2005-03-12 11:56
Topic: Missing width and height attribute in <img> (not really a bug) (5 replies, posted in PunBB 1.2 bug reports)
Oh well I love the way this forum is coded in valid XHTML 1.0 Strict.
But one down side is that images posted to this forum are missing the width and height attribute (alt is there) which is required in order to validates.
Maybe this will be fixed soon. I do not use PunBB at the moment but I'm more interested on the way it is coded.