-4

I'm trying to install laravel framework on ubuntu. It is showing error like

"Mcrypt PHP extension required. Script php artisan clear-compiled handling the post-install-cmd event returned with and  [RuntimeException]  
  Error Output: an error"
NoDataDumpNoContribution
  • 10,591
  • 9
  • 64
  • 104

1 Answers1

1

You need your php to be installed with Mcrypt PHP extension Compile PHP with the --with-mcrypt[=DIR] parameter to enable this extension.

DIR is the mcrypt install directory. more info here

Gowri
  • 1,832
  • 3
  • 29
  • 53
visualex
  • 736
  • 12
  • 17