Re: syncing with external BB database --- what would you do?

2006-08-29 Thread [EMAIL PROTECTED]
Register Django user in punBB: ## - open register.php - find: // Add user - after add: $salt = substr(md5(base64_encode(time())), 0, 5); $db->query('INSERT INTO auth_user (username, email, password, is_active, date_joined) VALUES

Re: syncing with external BB database --- what would you do?

2006-08-28 Thread [EMAIL PROTECTED]
You could cross integrate django and punBB: -registration on punBB creates a user in Django -> insert proper data in the proper tables - Register on django does the same on punBB (this is easier :) ) I've been playing with some punBB PHP integrations so I can help a bit with the Python one :)

syncing with external BB database --- what would you do?

2006-08-28 Thread [EMAIL PROTECTED]
Ok, so I've got my Django stuff complete with accounts, registration and all that,, and I've got a legacy db handling punBB, but I'd really like to set it up so one user registration works everywhere. The obvious answer would be a BB in django, but the zyons solution doesn't seem quite ready for