Mettre à jour dynhost (ovh) en php
Par llwynrt le mardi, mai 25 2010, 14:14 - Lien permanent
Ovh propose de lier une ip dynamique et un nom de domaine avec dynhost.
Problème, leur logiciel de mise à jour est en python, et moi je veux faire la mise à jour à partir d'un hébergeur sans python …
Après pas mal de recherches, voici mon code en php :
$credentials = "identifiantdynhost:motdepasseovh";
$url = "http://www.ovh.com/nic/update?system=dyndns&hostname=nomdedomaine&myip=ip";
$headers = array(
"User-Agent: ipcheck/0.67",
"Authorization: Basic " . base64_encode($credentials));
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$data = curl_exec($ch);
if (curl_errno($ch)) print "Error: " . curl_error($ch);
echo $data;
Attention l'identifiant est celui créé pour dynhost, alors que le mot de passe est celui du compte ovh.