Hi, i have Traccar working on Docker Setup with the latest image, but i don't see any other channel in Notifications Panel than Telegram(setup in config file) i just need to play with the Web channel but can't see it either.
Do i have to add any other configuration to be able to see it?
Image
This is my xml configuration
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'>
<properties>
<entry key='config.default'>./conf/default.xml</entry>
<entry key='database.driver'>com.mysql.cj.jdbc.Driver</entry>
<entry key='database.url'>jdbc:mysql://mysql:3306/traccar?serverTimezone=UTC&allowPublicKeyRetrieval=true&useSSL=false&allowMultiQueries=true&autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8&sessionVariables=sql_mode=''</entry>
<entry key='database.user'>xxxx</entry>
<entry key='database.password'>xxxx</entry>
<entry key='notificator.types'>telegram</entry>
<entry key='notificator.telegram.key'>token</entry>
<entry key='notificator.telegram.chatId'>userId</entry>
</properties>
That's because you removed all the other channels:
<entry key='notificator.types'>telegram</entry>
Oh wow, i'm going to remove it and test it, i was dealing with this problem like a week... thanks Anton
Yes, was that, now i see:
Thanks a lot Anton!
Hi, i have Traccar working on Docker Setup with the latest image, but i don't see any other channel in Notifications Panel than Telegram(setup in config file) i just need to play with the Web channel but can't see it either.
Do i have to add any other configuration to be able to see it?
Image
This is my xml configuration
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'> <properties> <entry key='config.default'>./conf/default.xml</entry> <entry key='database.driver'>com.mysql.cj.jdbc.Driver</entry> <entry key='database.url'>jdbc:mysql://mysql:3306/traccar?serverTimezone=UTC&allowPublicKeyRetrieval=true&useSSL=false&allowMultiQueries=true&autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8&sessionVariables=sql_mode=''</entry> <entry key='database.user'>xxxx</entry> <entry key='database.password'>xxxx</entry> <!-- telegram --> <entry key='notificator.types'>telegram</entry> <entry key='notificator.telegram.key'>token</entry> <entry key='notificator.telegram.chatId'>userId</entry> </properties>