It would be nice for an admin to be able to have an adjustable minimum set of requirements that user passwords must meet, ie:
6 or more characters
at least 1 capital
at least 1 number
at least 1 symbol
etc.
26 2006-05-22 04:52
Topic: minimum password requirements (1 replies, posted in Feature requests)
27 2006-05-16 15:18
Topic: Announcement HTML, can't log in (7 replies, posted in PunBB 1.2 troubleshooting)
I added a link in my announcement, and forgot to close the <a>. I tried to log in, but instead of logging in, it would take me to the website in the link I didn't close. I had to manually create a separate html page with a form to log me in.
Is there a way to prevent this from happening, and is there an easier way to fix it?
28 2006-03-20 16:43
Re: Not really punbb related (3 replies, posted in General discussion)
your biggest problem is that each <td> has a style. what you need to do is add a stylesheet that says something like,
.td3
{
border-style: solid solid solid none;
border-color: white white white -moz-use-text-color;
...(rest of the code here)
}
then just change each <td> inside the Final Rank table to <td class="td3"> and take out the style="lotsofstuffinhere".
My CSS is rusty, so someone may have to correct me
29 2006-01-16 22:34
Re: question on redirect (14 replies, posted in PunBB 1.2 discussion)
A "php redirect" in any form is executed before the page is sent to the browser. With a meta refresh, you can delay the redirect to occur a few seconds after the page has loaded, like PunBB's redirect page.
I understand the difference, I was just wondering why punbb uses meta. Is it so you can have a message saying what is happening? It would seem you would want it to be immediate.
30 2006-01-16 22:04
Topic: question on redirect (14 replies, posted in PunBB 1.2 discussion)
Just wondering, what are the advantages of using a meta refresh for login and such, which will not work in some scenarios, instead of a php redirect?