|
SCDARS
|
|
I guess all of you know the message
quote: The server is too busy at the moment. Registered users are given priority on the server, feel free to register using the form below. Otherwise please try again in a few minutes. We are sorry for the inconvenience. | The crux is, this message not only appears when one tries to enter the forums, but also the main paige, but the action attribute of the form tag is a relative link, so this form works right if you run it from http://www.apolyton.net/forums/, but it just directs to http://www.apolyton.net/member.php (causing the 404 error) if you try to enter the main page and are not logged in.
Here in detail:
<form action="/forums/member.php" method="post">
I suggest it rather should be
<form action="/forums/member.php" method="post">
or even more flexible
<form action="/forums/$bburl/member.html" method="post">
|