How to install the BLENC.dll PHP extension?

0

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?

    
asked by Angel Zambrano 06.02.2018 в 13:11
source

1 answer

0

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:

  • Extract from the original zip and copy php_blenc.dll to the "C: / xampp / php / ext" folder
  • 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.

    
answered by 06.02.2018 в 13:27