Hi, i am currently still a begineer on laravel and wamp. when the user first enter my website i will ask him to login. after logged in, i will redirect him to a dashboard page. my error is after user is logged in he is being redirected to the WSOD, or Chrome the error message was : "ERR_EMPTY_RESPONSE" tried with Firefox and the error was : "The connection was reset".. i have also checked my laravel logs and there isn;t any error being logged in.. similary for wamp logs no error.
my vhost file look like this
<Directory C:\wamp\www>
Options -MultiViews
Order Deny,Allow
AllowOverride All
Allow from all
</Directory>
<VirtualHost *:80>
DocumentRoot "C:\wamp\www\hotel\public"
ServerName hotel.localhost
</VirtualHost>
i am using
check the user controller and make sure the redirected path is allowed on app/routes.php. if you provide more information that how user controller is handling logged users, we can give a more specific answers.
Just adding this out of the blue, but I believe WAMP by default only accept connections from localhost. Could that explain your issues?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community