Re: django.db.utils.OperationalError: no such table abc

2021-10-21 Thread Ammon Quackenbush
Thu, Oct 21, 2021, 04:21 Ammon Quackenbush wrote: > >> I am working on a django project and I am getting this error when I >> attempt to run the "python manage.py makemigrations" command: >> >> django.db.utils.OperationalError: no such table: myApp_tab

django.db.utils.OperationalError: no such table abc

2021-10-20 Thread Ammon Quackenbush
I am working on a django project and I am getting this error when I attempt to run the "python manage.py makemigrations" command: django.db.utils.OperationalError: no such table: myApp_tableStatus The table tableStatus exists in my models.py. Any ideas what I can do to fix this problem? I trie

Re: Invalid parameter: redirect_uri

2021-10-12 Thread Ammon Quackenbush
It works when I try to access keycloak from 127.0.0.1 but not localhost so it looks like a keycloak setup issue, not a keycloak implementation problem. On Tue, Oct 12, 2021 at 12:01 PM Ammon Quackenbush wrote: > Setting LOGIN_REDIRECT_URL works in that I am redirected to that URL after >

Re: Invalid parameter: redirect_uri

2021-10-12 Thread Ammon Quackenbush
Setting LOGIN_REDIRECT_URL works in that I am redirected to that URL after I log in. I still see the error when I click on the login screen, though. On Tuesday, October 12, 2021 at 7:52:04 AM UTC-6 Anil Felipe Duggirala wrote: > On Mon, Oct 11, 2021, at 5:40 PM, Ammon Quackenbush wrote: &g

Re: Invalid parameter: redirect_uri

2021-10-12 Thread Ammon Quackenbush
I have not set LOGIN_REDIRECT_URL. I think that is automatically set. When I try setting it, nothing changes. On Tue, Oct 12, 2021 at 7:51 AM Anil Felipe Duggirala < anilduggir...@fastmail.fm> wrote: > On Mon, Oct 11, 2021, at 5:40 PM, Ammon Quackenbush wrote: > > I can set the

Re: Invalid parameter: redirect_uri

2021-10-11 Thread Ammon Quackenbush
I can set the logout redirect url successfully with LOGOUT_REDIRECT_URL in my project's settings.py, but I still get this error when I try to log in. On Thursday, October 7, 2021 at 3:54:24 PM UTC-6 Ammon Quackenbush wrote: > I am setting up keycloak with a django webapp and this is the

Invalid parameter: redirect_uri

2021-10-07 Thread Ammon Quackenbush
I am setting up keycloak with a django webapp and this is the error I am getting: WE'RE *SORRY* ... Invalid parameter: redirect_uri I have tried setting the LOGOUT_REDIRECT_URL and POST_LOGOUT_REDIRECT_URL settings in my project settings.py but that had no effect. Any ideas on how I can fix

Re: Keycloak & Django Setup Error - "UNIQUE constraint failed: auth_user.username" & usernames are being hashed

2021-10-07 Thread Ammon Quackenbush
+2 abubak...@gmail.com > wrote: > >> you're facing this error because django receives nique usernames. so you >> are not allowed to create another username with the same username. >> >> On Wed, Oct 6, 2021 at 1:36 AM Ammon Quackenbush >> wrote: >> &

Keycloak & Django Setup Error - "UNIQUE constraint failed: auth_user.username" & usernames are being hashed

2021-10-05 Thread Ammon Quackenbush
I am setting up keycloak for a django project and this is the error I receive: IntegrityError at /oidccallback/UNIQUE constraint failed: auth_user.usernameRequest Method: GET It looks like when I log in, keycloak tries to create my user again, even though my user is in the database. Also,