Menu

To ask for new features or log a bug, go to KADOS demo site

2012-12-28
2017-05-19
  • Marmotte Technologies

    • go to the Roadmap
    • use pokados/pokados as credentials
    • create a beige User Story for a feature request
    • create a pink User Story for a bug

    If you have a question, use the forum !

    And that's all !

     

    Last edit: Marmotte Technologies 2014-07-16
  • Anonymous

    Anonymous - 2016-04-30

    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

     
  • Marmotte Technologies

    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;
    }

     
  • Anonymous

    Anonymous - 2017-05-16

    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! :)

     
    • Marmotte Technologies

      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

Anonymous
Anonymous

Add attachments
Cancel





MongoDB Logo MongoDB