I am using cloud9 and laravel 4.2.
I have the basics of laravel going well. I have multiple routes and views set up all working great.
My issue is when I use something like ** return Redirect::route('homepage'); ** within a route itself, for my case a route that deletes a row from a table and returns to the homepage. the redirect works except it adds :80 to my URL (like so "username.c9.io:80/workspace/) and causes the following error.
Error code: ssl_error_rx_record_too_long
If I manually remove :80 from the URL the correct page loads.
So the redirect::route is redirecting to the correct URL with the addition of :80 which causes the problem.
I have tried using different redirect methods but seem to always add the :80 and I am unsure why.
Is this happening on Dev server and Production / Host server?
Meanwhile double check all configuration, and your htaccess file.
Also temp test with the ip# a redirect, see if that works.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community