Не могу разобраться с отправкой СМС используя PHP.
Девайс: Raspberry Pi,
Ось: Raspbian,
Софт: Gammu.
Из командной строки отправляется:
gammu sendsms TEXT +79876543210 -textutf8 "Proverka"
Помогите разобраться с кодом PHP.
Так
не работает:
$command = 'gammu sendsms TEXT +79509791173 -textutf8 "Proverka"';
$output = shell_exec($command);
echo "<pre>$output</pre>";
echo $output;
/* СМС не отправляет. Выводит на экран
Warning: No configuration file found!
Warning: No configuration read, using builtin defaults!
Error opening device, it doesn't exist.
Warning: No configuration file found! Warning: No configuration read, using builtin defaults! Error opening device, it doesn't exist.
*/
----------------------------------------------------------------------------------
$command = 'sudo gammu sendsms TEXT +79509791173 -textutf8 "Proverka"';
$output = shell_exec($command);
echo "<pre>$output</pre>";
echo $output;
/* СМС не отправляет. Ничего не выводит */
----------------------------------------------------------------------------------
$command = 'sudo /usr/bin/gammu sendsms TEXT +79509791173 -textutf8 "Proverka"';
$output = shell_exec($command);
echo "<pre>$output</pre>";
echo $output;
/* СМС не отправляет. Ничего не выводит */
Файл gammu-config лежит в папке с этим скриптом.