yes, I have the same problem on my traccar server: 6.14.5
my server is running with docker, download from hub.docker.com
before upgrade server from v6.1 to v6.14.5 , the sms notifications is working on v6.1, but after upgrade that became not working, I check logfile without any message about sms.
and the email notification is work OK .
my config is :
<entry key='notificator.sms.manager.class'>org.traccar.sms.HttpSmsClient</entry>
<entry key='sms.http.url'>http://192.168.1.1:8881/</entry>
<entry key='sms.http.template'>
from=Traccar&usr={phone}&msg={message}
</entry>
<entry key='notificator.types'>web,mail,sms</entry>
I test my sms server with : wget -O- "http://192.168.1.1:8881/?from=Traccar&usr=1111&msg=test" , I am sure my sms server is working OK.
Your wget doesn't match what Traccar would send, so you're comparing apples and oranges.
yes, I have the same problem on my traccar server: 6.14.5
my server is running with docker, download from hub.docker.com
before upgrade server from v6.1 to v6.14.5 , the sms notifications is working on v6.1, but after upgrade that became not working, I check logfile without any message about sms.
and the email notification is work OK .
my config is :
<entry key='notificator.sms.manager.class'>org.traccar.sms.HttpSmsClient</entry> <entry key='sms.http.url'>http://192.168.1.1:8881/</entry> <entry key='sms.http.template'> from=Traccar&usr={phone}&msg={message} </entry> <entry key='notificator.types'>web,mail,sms</entry>I test my sms server with :
wget -O- "http://192.168.1.1:8881/?from=Traccar&usr=1111&msg=test", I am sure my sms server is working OK.