Laravel authentication in localhost -
laravel version 4.1
works fine on server , on domain, wanted take development localhost , can't log in. don't error messages, nothing log , nothing happens, expect i'm redirected /login
page when try log in. have changed session.php
, database connection localhost database , app.php
pointing http://localhost
(i have tried point localhost
, http://127.0.0.1
). database connection works, login page (which front page) loads. file permissions in /app/storage
correct.
the script using sentry2 authentication. ideas try?
ok, figured out. setting.
for problem possibly in future, in session.php set session cookie domain to:
'domain' => "",
i had on localhost or ip before , didn't find sessions, therefore causing problem had.
Comments
Post a Comment