Hi group, I am looking for some help getting traccar working right. I have it installed but now when I try to login it just keeps looping.
--
You received this message because you are subscribed to the Google Groups "Open Source CAD" group.
To unsubscribe from this group and stop receiving emails from it, send an email to open-source-c...@googlegroups.com.
To post to this group, send email to open-so...@googlegroups.com.
Visit this group at https://groups.google.com/group/open-source-cad.
For more options, visit https://groups.google.com/d/optout.
Were you able to get this resolved? I am also working with a fresh install of Tickets and Traccar, and am encountering the same thing. I can log into traccar, and that's working just fine. The tickets config matches the traccar config regarding the mySQL settings.
--
--
You received this message because you are subscribed to a topic in the Google Groups "Open Source CAD" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/open-source-cad/7a1-PhgHies/unsubscribe.
To unsubscribe from this group and all its topics, send an email to open-source-c...@googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "Open Source CAD" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/open-source-cad/7a1-PhgHies/unsubscribe.
To unsubscribe from this group and all its topics, send an email to open-source-c...@googlegroups.com.
--
Doug,Thanks for the heads up. Traccar DID rename much of the table names! Everyone's install will fail when they upgrade to Traccar version 4! We will have to update the traccar function in Tickets to accommodate.As a workaround, installing Traccar version 3.16 should cure the issue for now, but if you downgrade you will have to delete the Traccar database first so that you will end up with the old database structure.Mark--On Tue, Aug 21, 2018 at 7:58 AM Mark Taylor <mdtayl...@gmail.com> wrote:Doug, the ONLY edits you should need to make would be in the do_traccar function in the remotes.inc.php file.What version of Traccar do you have? I need to see if they have made a database change with a new version. This is usually seen when you use a SQL database on a shared server although it usually only alters the database name and not every table name.This may account for others difficulties as well and we need to address it soon.MarkOn Mon, Aug 20, 2018 at 11:21 PM Doug Brammer <doug...@gmail.com> wrote:I have also had problems getting Traccar data into Tickets. I noticed that the table names in the traccar database have tc_ before the table name. The query in the do_traccar function did not have the tc_ so I added it but still no luck. I added some logging to the do_traccar and get_current functions in the remotes.inc.php file, it appears that neither of those two functions are getting called. Not sure if I have missed a setting somewhere, any help would be appreciated.--
On Sunday, August 5, 2018 at 4:42:48 PM UTC-5, SO-CM wrote:Hi group, I am looking for some help getting traccar working right. I have it installed but now when I try to login it just keeps looping.
You received this message because you are subscribed to the Google Groups "Open Source CAD" group.
To unsubscribe from this group and stop receiving emails from it, send an email to open-source-c...@googlegroups.com.
To post to this group, send email to open-so...@googlegroups.com.
Visit this group at https://groups.google.com/group/open-source-cad.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "Open Source CAD" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/open-source-cad/7a1-PhgHies/unsubscribe.
To unsubscribe from this group and all its topics, send an email to open-source-c...@googlegroups.com.
|
|
Sender notified by Mailtrack 08/28/18, 7:17:09 PM |
|
|
Sender notified by Mailtrack 08/28/18, 7:45:39 PM |
|
|
Sender notified by Mailtrack 08/28/18, 8:02:23 PM |
|
|
Sender notified by Mailtrack 08/28/18, 8:24:57 PM |
|
|
Sender notified by Mailtrack 08/28/18, 8:31:44 PM |
|
|
Sender notified by Mailtrack 08/28/18, 8:36:43 PM |
|
|
Sender notified by Mailtrack 08/28/18, 8:49:46 PM |
Hello,
I tried to install Traccar on a Debian server, where I have other services.
When I connect to myserver.com/traccar/ I have the following popup error :
HTTP 401 Unauthorized - WebApplicationException (SecurityRequestFilter:108 < ...)and
I'm back on the logging page. I don't know if my server is correctly
configured. I've added some lines on the Apache2 config file to reroute myserver.com/traccar/ to 127.0.0.1:8082 with these lines :
<Location /traccar>
ProxyPass http://127.0.0.1:8082
ProxyPassReverse http://127.0.0.1:8082
</Location>I'm not an expert on these field (neither on English, sorry for the mistakes), so I don't know if it's the correct way to proceed. I've just used another service running on my server as an example.
Is my config ok ? Is there someone who had the same issue ?
Thanks for your help,
Thibaud
===========================
I've found the problem !
My .conf Apache file was not properly set. I was using <Location>, but I just have to use infos on these pages :
https://www.traccar.org/secure-connection/ and https://www.traccar.org/forums/topic/reverse-proxy-apache-with-subdirectory/page/2/
I don't have to use <Location>. I rewrite ProxyPass lines in my <VirtualHost *:433>, adding the lines I forgot.
Hope this could help someone !
Thank you for this awesome tool.
Thibaud