I downloaded the extension and pasted it in C: / xampp / php / ext then I restarted the server, but nothing, it comes out Fatal error: Uncaught Error: Call to undefined function blenc_encrypt ().
What should I do?
I downloaded the extension and pasted it in C: / xampp / php / ext then I restarted the server, but nothing, it comes out Fatal error: Uncaught Error: Call to undefined function blenc_encrypt ().
What should I do?
You have to modify the php.ini to load it:
extension=blenc.dll
You can see more information at link
Here is explained with a case really similar to yours: link
They say:
Edit the php.ini file and add:
extension = php_blenc.dll
blenc.key_file="C: \ xampp \ php \ ext.blenc_keys"
I guess you'll miss the second line.