Joaquín L. Robles
Joaquín L. Robles

Reputation: 6504

Bcrypt hashing not supported with Laravel 4 and PHP 5.3.6 in MAMP 2.0.1

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

Upvotes: 2

Views: 2677

Answers (1)

JoeyD473
JoeyD473

Reputation: 2980

Laravel 4 requires PHP 5.3.7 minimum with the MCrypt extension installed

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

Upvotes: 1

Related Questions