php - Laravel fresh install login issues -
resolved appearantly truncating passwords set column size password low
yesterday started using php framework laravel , happy it, except 1 small part, part being standard login provided framework.
i created new project in netbeans , placed in xampp htdocs folder access site browser immediately.
i used commands
composer create-project laravel/laravel --prefer-dist cd laravel composer install
this seems work fine, created database using migrations came clean install of laravel , registered user worked without hitch.
however when try log in gives me error message
whoops! there problems input. -these credentials not match our records.
i thought might have been changed in routes wasn't using correct routes login post created project scratch , changed nothing except database settings in .env file still gives me same message.
if give me hints in code problem grateful
it possible because manually created database, managed miss detail or two. immediate thought password field not long enough , being truncated (everything look fine won't work).
laravel's hashing functions need @ least 60 characters password (and 100 remember token) per authentication introduction.
Comments
Post a Comment