12-28-2016, 02:45 PM
Ahh. So some of the magic in the init file only works AFTER init is included, so you can't use those $abs root things to include it.
Normally in the usersc folder you do
require_once('../users/init.php');
and just use the relative path.
I've been tracking down slash issues. They're different on different servers. The first place I say to check is in usersc/scripts/custom_login_script
and try to see what's up there. You can change the redirect to your actual url if you want...
so
and see if that makes a difference. If it doesn't I may need to talk to you a little bit more about your server setup because I can't duplicate the problem on any of my test systems, but you're not the only one to get that from time to time.
Normally in the usersc folder you do
require_once('../users/init.php');
and just use the relative path.
I've been tracking down slash issues. They're different on different servers. The first place I say to check is in usersc/scripts/custom_login_script
and try to see what's up there. You can change the redirect to your actual url if you want...
so
Code:
Redirect::to('http://mydomain.com/users/account.php');
and see if that makes a difference. If it doesn't I may need to talk to you a little bit more about your server setup because I can't duplicate the problem on any of my test systems, but you're not the only one to get that from time to time.