MyBB Community Forums
HWID - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Development (https://community.mybb.com/forum-68.html)
+---- Thread: HWID (/thread-185577.html)



HWID - AlaaEmad - 2015-10-24

Hey there,

I am working right now on my login system,but I was stuck with HWID
I need to get it automatically when someone register in my forum,so I had added a new column in "mybb_users",but didn't know how to get HWID into it when someone register....

any help will be appreciated
Thanks Smile


RE: HWID - sleeping - 2015-10-25

If I understood your question right and you're talking about the users Hardware ID.

PHP alone cannot read the users hardware id, you will have to do it in a different manner or use a 3rd party tool to acquire the HWID.

PHP is server side only.


RE: HWID - Sazze - 2015-10-25

Use this hook, to do something once a member registers (of course, you'd need to create a new function called 'reg_end_hwid')
$plugins->add_hook('member_do_register_end', 'reg_end_hwid');