I'm trying to install a WordPress plugin which relies upon ionCube Loader and it is throwing an error saying that it can't find ionCube Loader. The plugin author's suggestion was to check the phpinfo file to make sure ionCube Loader is listed, and sure enough, it isn't on there. However, when I run php -m on the server, it lists ionCube Loader among the modules. Is there a reason it wouldn't be showing up in the phpinfo file? Or some reason that it might not be accessible to the plugin I'm trying to use? asked 17 Sep '17, 05:50 jpsingleton |
The IonCube module should be setup for all our PHP 5.X versions available on the site. If you are using PHP 7.X then you need to set it up manually.
Then add the extension to that file:
And that should be it, hope this helps! answered 17 Sep '17, 23:23 NickR ♦♦ This worked perfectly! Thank you!!
(19 Sep '17, 06:12)
jpsingleton
|