Hi, this is kind of a major issue
if you use the login key security feature it redirects you to the old client portal login path which doesn't exist anymore
essentially redirecting the root/sub domain to a 404

i think this will have to be a hot fix directly to master branch

Hey,

Noticed this on our portal.itflow.org instance too, seems we missed that 🙁

The obvious workaround for now would be to temporarily disable the feature in admin settings. Alternatively, reconfigure your apache vhost to redirect /portal to /client

RewriteEngine On
RewriteRule ^/portal$ /client [R=301,L]

There will likely be other issues with the release, so I'd like to catch those in any sort of hotfix.

Edit: https://tasks.dev.itflow.org/task_details.php?task_id=50

    wrongecho i think same applies with all old links that were sent to customers like guest view invoices

    so the temp solution is adding a all those redirects in apache vHost

      Bigbug maybe add all of them to .htaccess in the repo so it'll instantly fix old broken links like guest invoice?

      Same problem here - wrong redirect

      if ($config_login_key_required) {

      if (!isset($_GET['key']) || $_GET['key'] !== $config_login_key_secret) {
      
          header("Location: portal");
      
          exit();

        mikeie i fixed this by adding this line to my vHost file in apache

        RewriteRule ^/portal(/.*)?$ /client$1 [R=301,L]

        and for the guest view issue i added

        RewriteRule ^/guest_view_(item|invoice|quote|ticket)\.php$ /guest/guest_view_$1.php [R=301,L]

        and it works

        Fixed in develop