Bôgras
07/08/2022, 9:41 PMhttps://github.com/supabase/supabase/discussions/3491
and https://dev.to/sruhleder/creating-user-profiles-on-sign-up-in-supabase-5037
.
I am getting the error message
> Database error saving new user
every time I try to do a sign up, accompanied by a code 500 error. I've tried everything I could think of to solve it. I've checked the table's field types, email confirmation, the SQL queries, and still nothing. Am I missing something gruesomely obvious?Relisora
07/08/2022, 10:53 PMjs
createClient(
'xxx.supabase.co',
'xxx',
{ schema: 'otherschema' }
)
But now every request gives me an error 406, Not Acceptable
. Am I missing something ?FestiveLlama
07/08/2022, 11:33 PMAbanob Boles
07/10/2022, 8:30 AMstingray21
07/10/2022, 10:50 AMtche
07/11/2022, 2:53 PMtche
07/11/2022, 2:55 PMGlennS
07/11/2022, 9:26 PMGlennS
07/11/2022, 10:52 PMGlennS
07/11/2022, 10:52 PMconst avatarFile = event.target.files[0]
const { data, error } = await supabase
.storage
.from('avatars')
.update('public/avatar1.png', avatarFile, {
cacheControl: '3600',
upsert: false
})
sudoramen
07/12/2022, 4:43 AMsupabase.from('table-name').on('*', cb)
only listen to rows restricted by the rules or will it trigger for all rows?AdrianMsM91 {KBL}
07/12/2022, 9:29 AM${APP_HOST}
, is not arriving the rest /authentication/recovery-password , obviously I have the URL added to: Additional redirect URLs also in:
js
const resetPasswordForEmail = async (email) => {
return supabase.auth.api.resetPasswordForEmail(email, {
redirectTo: `${APP_HOST}/authentication/recovery-password`
});
};
Then I decided tu do the trick putting this /authentication/recovery-password
js
<h2>Reset Password</h2>
<p>Follow this link to reset the password for your user:</p>
<p><a href="{{ .ConfirmationURL }}authentication/recovery-password">Reset Password</a></p>
Then looks like the URL arrives correctly but once I click It doesn't redirect to authentication/recovery-password
but to ${APP_HOST}
Any solution please?rommyarb
07/12/2022, 10:35 AM502 error "An invalid response was received from the upstream server"
I'm using supabase js client supabase.auth.signIn()garyaustin
07/12/2022, 12:53 PMconrad.lin
07/12/2022, 2:58 PMgaryaustin
07/12/2022, 3:05 PMconrad.lin
07/12/2022, 3:06 PMgaryaustin
07/12/2022, 3:08 PMconrad.lin
07/12/2022, 3:12 PMconrad.lin
07/12/2022, 3:12 PMconrad.lin
07/12/2022, 3:13 PMMelodicAlbuild
07/12/2022, 7:03 PMjoshcowan25
07/12/2022, 7:43 PMJ0s3v4rg4s
07/12/2022, 7:51 PMOlyno
07/12/2022, 8:14 PMOlyno
07/12/2022, 8:16 PMOlyno
07/12/2022, 8:16 PMAdrianMsM91 {KBL}
07/12/2022, 11:03 PMjaitaiwan
07/12/2022, 11:44 PMjaitaiwan
07/12/2022, 11:45 PM