Re: Django-Channels: Debugging

2018-01-30 Thread 'Matthias Brück' via Django users
ee if that makes it work. > > Andrew > > On Mon, Jan 29, 2018 at 6:49 AM, 'Matthias Brück' via Django users < > django...@googlegroups.com > wrote: > >> Ok, i found the problem, the authentification is not working because of >> django-tenant-schemas. But I

Re: Django-Channels: Debugging

2018-01-29 Thread &#x27;Matthias Brück&#x27; via Django users
Ok, i found the problem, the authentification is not working because of django-tenant-schemas. But I'm still wondering why the print messages only gets output after a restart of the worker. Am Montag, 29. Januar 2018 12:30:54 UTC+1 schrieb Matthias Brück: > > Hi everyone, > > I have added a webs

Django-Channels: Debugging

2018-01-29 Thread &#x27;Matthias Brück&#x27; via Django users
Hi everyone, I have added a websocket connection via django-channels to one of my projects. Everything is working fine locally. But when I try to setup everything on my staging server I never come to the point where actually messages got send and received between the clients and the server. I

Re: Unique app name error problem when building a Wagtail multisite solution

2016-12-22 Thread &#x27;Matthias Brück&#x27; via Django users
erstag, 22. Dezember 2016 13:16:45 UTC+1 schrieb Melvyn Sopacua: > > Hi, > > On Wednesday 21 December 2016 14:30:32 'Matthias Brück' via Django users > wrote: > > is this really just not possible? What I found is this: > > > > you can't have two

Re: Unique app name error problem when building a Wagtail multisite solution

2016-12-21 Thread &#x27;Matthias Brück&#x27; via Django users
is this really just not possible? What I found is this: you can't have two apps with the same name, even if they have different > fully qualified module paths https://groups.google.com/forum/#!msg/django-users/AMYLfQo6Ba4/Y-57B0i7qy4J How would you guys handle this? -- You received this mes

Unique app name error problem when building a Wagtail multisite solution

2016-12-21 Thread &#x27;Matthias Brück&#x27; via Django users
Hi all, I want to build a Wagtail multisite solution and I'm running into problems with unique application labels. I would like to have the following project structure: project | |--app1 ||--core ||--pages |... |--app2 ||--core ||--pages |... Even whe