I am trying to deal with the TMDb API (The Movies Database).
I am getting the following error displayed again and again:
file_get_contents: Unable to find the wrapper “https” (XAMPP / Windows)
For this code:
$json = file_get_contents("https://api.themoviedb.org/3/movie/5?api_key=XXXYYYZZZ&language=de-DE");
$result = json_decode($json, true);
I have uncommented:
extension=openssl
and
extension=php_openssl.dll
on my php.ini an restartet XAMPP, but the problem persists.
What else can I do to solve this problem? :(