After upgrading from 7.16 tot 7.23.12 cant login anymore

0
Hi, I upgraded our Mendix version from 7.16 to 7.23.12 and now when i login i got redirected to the login page again. In the logs i see that im logged in succesful. Any ideas whats the problem? 
asked
2 answers
0

Could you post your index.html? And are you using a index3.html page? And do you  have SSO in your model?

Those can all influance the behaviour you see. Strange though that this happens after upgrade. Did you do something with your theming?

Regards,
Ronald

 

answered
0
<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title>Title</title>
        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
        <meta name="apple-mobile-web-app-capable" content="yes">
        <link rel="stylesheet" href="ui/theme-spacelab/css/bootstrap.min.css?{{cachebust}}">
        <link rel="stylesheet" href="mxclientsystem/mxui/ui/mxui.css?{{cachebust}}">
         <link rel="stylesheet" href="ui/theme-spacelab/css/mendix-custom.css?{{cachebust}}">
            <link rel="stylesheet" href="fdcss/" id="fdcss">
        <link type="image/x-icon" href="img/Administration$Beeldmerk_logo_16px.png" rel="shortcut icon">

      <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
      <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->
    </head>
    <body dir="ltr" class="spacelab">
        <style>
            *{
                outline: none !important;
            }
        </style>
    <div id="content"></div>
    <script>
      dojoConfig = {
        baseUrl: 'mxclientsystem/dojo/',
        cacheBust: '{{cachebust}}',
        rtlRedirect: 'index-rtl.html'
      };
    </script>
    <script>
      if (!document.cookie || !document.cookie.match(/(^|;)originURI=/gi))
        document.cookie = 'originURI=/login.html';
    </script>
    <script src="mxclientsystem/mxui/mxui.js?{{ cachebust }}" defer></script>
  </body>
</html>

Hi Ronald,

We use the index.html page and we dont use SSO and no index3.html.

Thanks for the reply.

answered