26

(1 replies, posted in Feature requests)

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.

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

(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 smile

29

(14 replies, posted in PunBB 1.2 discussion)

Jansson wrote:

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

(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?