The following warnings occurred: | ||||||||||||
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
|
first verify Email send with register do not work - Printable Version +- UserSpice (https://userspice.com/forums) +-- Forum: Support Center (https://userspice.com/forums/forumdisplay.php?fid=23) +--- Forum: UserSpice 4.3 and Below (https://userspice.com/forums/forumdisplay.php?fid=26) +--- Thread: first verify Email send with register do not work (/showthread.php?tid=1126) |
first verify Email send with register do not work - SirAirHard - 08-28-2018 Hello i have tryed tu report a bug, but it doesn´t work... i have a problem with the verification email. if a user registers the system sends an verfy email and he gets an error and is asked to send another verify Email. and this email gets verifyed. i had a look at the code and i can´t realy find a differenc... thanks for your help RE: first verify Email send with register do not work - weetax - 08-29-2018 (08-28-2018, 01:47 PM)SirAirHard Wrote: Hello Can you edit /users/helpers/helpers.php find the function "function email($to,$subject,$body,$opts=[],$attachment=false){" and add this code Code: $mail->SMTPOptions = array( RE: first verify Email send with register do not work - SirAirHard - 08-29-2018 (08-29-2018, 04:11 AM)weetax Wrote: Can you edit /users/helpers/helpers.php find the function "function email($to,$subject,$body,$opts=[],$attachment=false){" Thanks for your quick reply. i have tryed it but it did not work my code looks like this now: Code: function email($to,$subject,$body,$opts=[],$attachment=false){ Quote:We were unable to verify your account. Please try again. is it maybe becouse i have https now? RE: first verify Email send with register do not work - Brandin - 08-29-2018 The problem is related to the last_verify column in the database. We set this to timestamp, which means most databases are updating this on every action. If the user logs in, or is modified before they verify, it renders the verification URL invalid. The fix for it is running the following SQL: ALTER TABLE users DROP COLUMN vericode_expiry; ALTER TABLE users ADD COLUMN vericode_expiry datetime; Thank you, Brandin. RE: first verify Email send with register do not work - SirAirHard - 08-29-2018 Thanks for your quick answer that fixed the Problem I love this software =) |