We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm surprised (and frustrated) this is still an issue? It is still not solved. Anyone working with the API who has a working solution with OpenSSL ?
In class.phpipam-api.php, I still see the reference to mcrypt being a requirement
(around line 363)
/** * Check if all extensions are present * * @access private * @return void */ private function validate_php_extensions () { // Required extensions $required_ext = array("openssl", "curl"); // mcrypt for crypted extensions if($this->api_key !== false) $required_ext[] = "mcrypt"; // json if($this->result_format == "json") $required_ext[] = "json"; // xml if($this->result_format == "xml") $required_ext[] = "xmlreader"; // Available extensions $available_ext = get_loaded_extensions(); // check foreach ($required_ext as $e) { if(!in_array($e, $available_ext)) { $this->exception("Missing php extension ($e)"); } } }
The text was updated successfully, but these errors were encountered:
Solution seems to be to replace the line
$required_ext[] = "mcrypt";
with
$required_ext[] = "openssl";
Sorry, something went wrong.
No branches or pull requests
Hi,
I'm surprised (and frustrated) this is still an issue? It is still not solved.
Anyone working with the API who has a working solution with OpenSSL ?
In class.phpipam-api.php, I still see the reference to mcrypt being a requirement
(around line 363)
The text was updated successfully, but these errors were encountered: