03-30-2017, 10:57 AM
Hi
I also have the problem with version 4.2.3 both on my wamp and public server php 5.6 it only affects admin logins as far I can tell.
The solution for me on login was change /usersc/scripts/custom_login_script.php
comment out the redirect as below adding a redirect simply to index
//Redirect::to($us_url_root.'users/account.php');
Redirect::to('../index.php');
But this only solved the first login if I want to see my account page it goes into a redirect loop again and the browser stops the 302 redirect between users/account.php and users/index.php after 10 attempts with an error:
"The page isn’t redirecting properly"
So I place an echo statement at the begining of both pages.
$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo "In account.php ".$url;
if (strstr($url,'///////')) exit;
The echo is displayed in the browser, so the redirect is not from .htaccess and must be in the php somwhere.
Checking out admin level differences to see I can spot anything.
......
I also have the problem with version 4.2.3 both on my wamp and public server php 5.6 it only affects admin logins as far I can tell.
The solution for me on login was change /usersc/scripts/custom_login_script.php
comment out the redirect as below adding a redirect simply to index
//Redirect::to($us_url_root.'users/account.php');
Redirect::to('../index.php');
But this only solved the first login if I want to see my account page it goes into a redirect loop again and the browser stops the 302 redirect between users/account.php and users/index.php after 10 attempts with an error:
"The page isn’t redirecting properly"
So I place an echo statement at the begining of both pages.
$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo "In account.php ".$url;
if (strstr($url,'///////')) exit;
The echo is displayed in the browser, so the redirect is not from .htaccess and must be in the php somwhere.
Checking out admin level differences to see I can spot anything.
......