Bybitter adlı üyeden alıntı: mesajı görüntüle
Sadece bu kodu bir sayfada çalıştırıp eklentinin yüklü olup olmadığını kontrol edin isterseniz.
Size zahmet sunucunuzda çalıştırır mısınız bakalım sizde çalışacak mı?

<?php

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://deprem.afad.gov.tr/latestCatalogsList");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
            "m=0&utc=0&lastDay=1");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);

curl_close ($ch);
echo $output;
 
?>