@שמואל תודה רבה אז זה כנראה היה הבעיה אצל @קול-הלב
@קול-הלב אני מצרף את הקוד שלך עם התיקון הנ"ל (הורדתי גם את הבדיקה אם שרת פריווט שלכאורה לא נצרך כבר) מקווה שיעבוד תעדכן בבקשה
<?php
if($_GET["hangup"]=="yes"){
unlink("txt_filse/$_GET[ApiCallId]_sysemType.txt");
unlink("txt_filse/$_GET[ApiCallId]_token");
}
if (!$_GET["number"]){
print "read=t-אנא הקישו את מספר המערכת שלכם , שימו לב ניתן להקיש מספר מערכת בעל .n-9.t-או.n-10.t-ספרות=number,no,10,9,15,Digits,yes,";
exit;
}
if(!$_GET["password"]){
print "read=t-אנא הקישו את סיסמת הניהול של המערכת שלכם=password,no,100,1,20,Digits,";
exit;
}
$sysemType= fopen("txt_files/$_GET[ApiCallId]_sysemType.txt","w");
fwrite($sysemType,"regular");
fclose($sysemType);
$entertype = "https://www.call2all.co.il/ym/api/Login?username=$_GET[number]&password=$_GET[password]";
$get_token = shell_exec("curl '$entertype'");
$token_array = json_decode($get_token,true);
if ($token_array["token"]==NULL){
print "id_list_message=t-פרטי ההיתחברות שגויים&go_to_folder=hangup";
}
else{
$save_token = fopen("txt_files/$_GET[ApiCallId]_token.txt","w");
fwrite($save_token,$token_array["token"]);
fclose($save_token);
print "go_to_folder=/10/1/";
}
?>
יכול להיות שהיה לי טעות כי אני קצת ממהר אם כן תעדכן
בהצלחה.