The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Redirect problem on all private pages
#7
I have installed UserSpice v 4.2.6 on Windows 10 running Ampps. My favoured browser is Firefox.

I have not added any additional pages, but the redirect problem shows on some links after logging in.

A possible explanation can be found on https://ctrl.blog/entry/relative-double-slashes-url

A quick fix might be to make this change to users/classes/Redirect.php

from

<pre>
Code:
if (file_exists($prefix.$location)) {

$location = $prefix.$location;
    
break;

}
</pre>



to

<pre>
Code:
if (file_exists($prefix.$location)) {

$location = $prefix.$location;
        
$location = preg_replace('~/{2,}~', '/', $location);

break;

}
</pre>



The additional code will replace all multiple occurrences of a slash with a single slash before being used by redirect.
  Reply


Messages In This Thread
Redirect problem on all private pages - by jason - 01-20-2017, 06:55 PM
Redirect problem on all private pages - by mudmin - 01-20-2017, 07:52 PM
Redirect problem on all private pages - by jason - 01-22-2017, 06:54 AM
Redirect problem on all private pages - by mudmin - 03-30-2017, 02:12 PM
Redirect problem on all private pages - by Jeff - 04-25-2017, 10:00 AM
Redirect problem on all private pages - by mudmin - 04-27-2017, 06:58 PM
Redirect problem on all private pages - by mudmin - 05-22-2017, 07:12 PM

Forum Jump:


Users browsing this thread: 4 Guest(s)