So I can\'t stop getting the error:
PHP Fatal error: Call to undefined function mcrypt_decrypt() in
Even when I have php5_mcrypt installed, I
Installing is one thing. Enabling is another. Please make sure your /etc/php.ini
file contains the following line :
extension=mcrypt.so
If you can't find your php.ini
, create a test.php
file containing :
Execute it with php test.php | grep ".ini"
, and you'll find the paths to your ini files. One of them must include the extension=
line above.