And first of all thank you for your great efforts.
As admin I add new users.
My problem is the User-creation e-mail which is sent to the users.
The e-mail-send function works. The e-mail is receiced perfectly.
Only the supplied link for verification and setting of the password is incorrect.
My site and the server run with ssl-certificate, therefore the supplied verification-address should read something beginning with "https://www...." but it is always generated with "http://www..."
By setting the correct subfolder in the programm settings, the rest of the address appears ok.
Only the http needs to be recognized as https from the routine which generates the verification link for the e-mails.
Thank you very much for your attention and
Best regards,
Jens Mohr
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello Jens
yes, we forget to check that on the building of URL. You may change the 'http' setting to 'https' by modifying the function getServerROOT in the functions.php file in common_scripts folder. Just set the $pageURL var with https.
Or change the function with the following one with the check on https :
function getServerROOT()
{
$pageURL = 'http';
if ($_SERVER["HTTPS"]=='on')
{
$pageURL = 'https';
}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80")
{
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"];
}
else
{
$pageURL .= $_SERVER["SERVER_NAME"];
}
return $pageURL;
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, first you have to check there is a SMTP server running on your web server and that the mail() function is able to function on your PHP config.
Then you must fill in two parameters in Admin (small gear on top right)/Settings : Email adress FROM for managing user validation and Name FROM for managing user validation
Then be sure that parameter Path for application is set with the path for application. By default it is /, but if you install kados on a different path under an URL, set here the path.
And at last, be sure you have the parameter User activation by email set to ON
Last edit: Marmotte Technologies 2017-05-19
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If you have a question, use the forum !
And that's all !
Last edit: Marmotte Technologies 2014-07-16
View and moderate all "Suggestions d'évolutions / Suggest new features" comments posted by this user
Mark all as spam, and block user from posting to "Forum"
Hello,
And first of all thank you for your great efforts.
As admin I add new users.
My problem is the User-creation e-mail which is sent to the users.
The e-mail-send function works. The e-mail is receiced perfectly.
Only the supplied link for verification and setting of the password is incorrect.
My site and the server run with ssl-certificate, therefore the supplied verification-address should read something beginning with "https://www...." but it is always generated with "http://www..."
By setting the correct subfolder in the programm settings, the rest of the address appears ok.
Only the http needs to be recognized as https from the routine which generates the verification link for the e-mails.
Thank you very much for your attention and
Best regards,
Jens Mohr
Hello Jens
yes, we forget to check that on the building of URL. You may change the 'http' setting to 'https' by modifying the function getServerROOT in the functions.php file in common_scripts folder. Just set the $pageURL var with https.
Or change the function with the following one with the check on https :
function getServerROOT()
{
$pageURL = 'http';
if ($_SERVER["HTTPS"]=='on')
{
$pageURL = 'https';
}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80")
{
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"];
}
else
{
$pageURL .= $_SERVER["SERVER_NAME"];
}
return $pageURL;
}
View and moderate all "Suggestions d'évolutions / Suggest new features" comments posted by this user
Mark all as spam, and block user from posting to "Forum"
Hi Good day! can you help we with the email function upon user creation? I am not recieving any email from kados. Thank you in advance! :)
Hello, first you have to check there is a SMTP server running on your web server and that the mail() function is able to function on your PHP config.
Then you must fill in two parameters in Admin (small gear on top right)/Settings : Email adress FROM for managing user validation and Name FROM for managing user validation
Then be sure that parameter Path for application is set with the path for application. By default it is /, but if you install kados on a different path under an URL, set here the path.
And at last, be sure you have the parameter User activation by email set to ON
Last edit: Marmotte Technologies 2017-05-19