The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/printthread.php(287) : eval()'d code 2 errorHandler->error
/printthread.php 287 eval
/printthread.php 117 printthread_multipage



UserSpice
ERR_TOO_MANY_REDIRECTS - Printable Version

+- UserSpice (https://userspice.com/forums)
+-- Forum: Support Center (https://userspice.com/forums/forumdisplay.php?fid=23)
+--- Forum: UserSpice 4.4 (https://userspice.com/forums/forumdisplay.php?fid=27)
+--- Thread: ERR_TOO_MANY_REDIRECTS (/showthread.php?tid=1326)

Pages: 1 2


RE: ERR_TOO_MANY_REDIRECTS - Aido - 02-04-2019

Thank you Brandin

 there is no securePage function in users/helpers/us_helper but it exists in permissions.php
Code:
...
if (checkPermission($pagePermissions)){
                return true;
            }elseif  (in_array($user->data()->id, $master_account)){ //Grant access if master user
                return true;
            }else {

                if (!$homepage = Config::get('homepage'))
                $homepage = 'index.php';
                $fields = array(
                    'user'    => $user->data()->id,
                    'page'    => $pageID,
                    'ip'        => $ip,
                );
                $db->insert('audit',$fields);
                require_once $abs_us_root.$us_url_root.'usersc/scripts/did_not_have_permission.php';
                Redirect::to($homepage);
                return false;
...
I've found that in my case Config::get('homepage') has bool(false) [font=Monaco, Consolas, Courier, monospace]value (I thought it must be the page address) so [/font]the variable $homepage gets value [font=Menlo, monospace]string(9) "index.php" and then script tries to redirect to index.php in the same folder - so to the same page to which the user does not have access and we get a loop.[/font]
Is this logic correct?

Now I've solved the problem by adding my own correct redirect in [font=Monaco, Consolas, Courier, monospace]did_not_have_permission.php [/font]
But I think something is wrong with the script.


And what about the fingerprint error?


RE: ERR_TOO_MANY_REDIRECTS - Aido - 02-06-2019

any updates?


RE: ERR_TOO_MANY_REDIRECTS - Brandin - 02-08-2019

Aido,

I am sorry for the delay, I have been incredibly busy. Your logic is correct, and this would be the issue that is occurring. The fingerprint error was in the console, correct?

Thank you,
Brandin.


RE: ERR_TOO_MANY_REDIRECTS - Aido - 02-09-2019

Yes in the console.


RE: ERR_TOO_MANY_REDIRECTS - Brandin - 02-11-2019

So this is due to an Adblocker and sometimes certain Chrome Extensions. Our new update was supposed to fix this but I will have to review again.