MyBB Community Forums

Full Version: Integrate MyBB account to license verification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
I'm building an installer for my application, and i'd like member to log into their account for the installer to run. I've created a php file for account checking, but nothing came to my mind for password checking as the password is encrypted. So is there any way to check if the password is right to replace serial key?
Thanks
Hai Anh Nguyen
If I read your question right,

You would like to use your forum user passwords table for fetching it with licenses?
(2015-08-11, 01:25 PM)ArneVD Wrote: [ -> ]If I read your question right,

You would like to use your forum user passwords table for fetching it with licenses?

yep Smile
It's right :3
I would discourage this approach. You do not want to pass passwords in plaintext from your application's installer to your forum. An alternative would be to have a custom page in MyBB which would show a code your installer could then verify.
You could use some parsing stuff and others to fetch, parse and crypt the passwords, that will be more secure.

But it would be easier if you don't fetch passwords with your licenses and use another database with pre-generated license codes, and automatically add these to the user accounts or something like that.