Question

I'm trying to execute the following line with Laravel,

Hash::make('asdqwe');

But it fails with this error:

Bcrypt hashing not supported.

I've checked my php.ini and extension=mcrypt.so is enabled, and phpinfo() would show this:

mcrypt in phpinfo()

Any idea? Thanks

Was it helpful?

Solution

Laravel 4 requires PHP 5.3.7 minimum with the MCrypt extension installed

Source: http://laravel.com/docs/installation#server-requirements

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top