Topic: Register from external script

Hi,

I have tried to make my external registration automatically sign up the user to the PunBB forum it works but it comes up with the following error

http://img828.imageshack.us/img828/8522/errorub.png

When clicked proceed it work but why this error

Thanks

Re: Register from external script

Add this line to your code:

define('FORUM_SKIP_CSRF_CONFIRM', 1);

to skip token validation or study out the example of how it is generate in <FORUM_ROOT>/login.php, for example.

Re: Register from external script

Thanks