11-03-2016, 02:00 AM
I was having the same problem with double slashes (//) and then a comment introduced in 4.1.8b helped me fix it. In you usersc\scripts\custom_login_script.php file it mentions that the Redirect path is relative from userc/scripts thus they added ../../ before the actual redirect to destination. I was using Redirect::to($us_url_root.'folder/home.php'); so I changed that to Redirect::to('../../'.'folder/home.php'); and now double slashes are gone.