of course...
https://github.com/directus/directus/issues/21572
pedrocm
Posts
-
Directus fail to create an user from Cloudron Open ID -
Directus fail to create an user from Cloudron Open IDAnd sorry... I thought it was possible to login with an admin user. I did create a new user as admin to try, but return the same error
-
Directus fail to create an user from Cloudron Open IDit is not true, because I set up to "Allow all users from this Cloudron"
-
Directus fail to create an user from Cloudron Open IDI change back original role to admin, and put an enviroment variable link
export AUTH_LDAP_DEFAULT_ROLE_ID=<id of role> export AUTH_OPENID_DEFAULT_ROLE_ID=<id of role>
but it still returning the same error. only people are admin in cloudron can login if they not already did in the first day.
-
Directus fail to create an user from Cloudron Open IDYes, new users are not allowed to be admin at first login. I change the original role privileges to a more basic access. And move me to another role with admin powers.
Cloudron version.
Platform versionv7.6.4 (Ubuntu 22.04.3 LTS) -
Directus fail to create an user from Cloudron Open IDUsers who already had an account continue to be able to log in without any problems. I keep automatic updates enabled.
App Info
App Title and VersionDirectus 10.9.2
App xxx
Package Versionio.directus9.cloudronapp@1.39.2
Last Updated02/16/2024 -
Directus fail to create an user from Cloudron Open IDHi guys..
I have a huge error, that I can´t find a solution yet.
When I create a new instance of directus, everything works fine, Users are created trough Cloudron Loogin with no problem. But after a few days it stop working and returning an Error.Looking to the logs, I saw this error. There are something I missing ?
Feb 21 09:59:41[12:59:41.587] WARN: [OpenID] Unexpected error during OpenID login Feb 21 09:59:41err: { Feb 21 09:59:41"type": "DatabaseError", Feb 21 09:59:41"message": "insert into \"directus_users\" (\"auth_data\", \"email\", \"external_identifier\", \"first_name\", \"id\", \"last_name\", \"provider\", \"role\") values (DEFAULT, $1, $2, $3, $4, $5, $6, $7) returning \"id\" - invalid input syntax for type uuid: \"\"", Feb 21 09:59:41"stack": Feb 21 09:59:41error: insert into "directus_users" ("auth_data", "email", "external_identifier", "first_name", "id", "last_name", "provider", "role") values (DEFAULT, $1, $2, $3, $4, $5, $6, $7) returning "id" - invalid input syntax for type uuid: "" Feb 21 09:59:41at Parser.parseErrorMessage (/app/code/node_modules/pg-protocol/dist/parser.js:287:98) Feb 21 09:59:41at Parser.handlePacket (/app/code/node_modules/pg-protocol/dist/parser.js:126:29) Feb 21 09:59:41at Parser.parse (/app/code/node_modules/pg-protocol/dist/parser.js:39:38) Feb 21 09:59:41at Socket.<anonymous> (/app/code/node_modules/pg-protocol/dist/index.js:11:42) Feb 21 09:59:41at Socket.emit (node:events:517:28) Feb 21 09:59:41at addChunk (node:internal/streams/readable:335:12) Feb 21 09:59:41at readableAddChunk (node:internal/streams/readable:308:9) Feb 21 09:59:41at Readable.push (node:internal/streams/readable:245:10) Feb 21 09:59:41at TCP.onStreamRead (node:internal/stream_base_commons:190:23) Feb 21 09:59:41"length": 129, Feb 21 09:59:41"name": "error", Feb 21 09:59:41"severity": "ERROR", Feb 21 09:59:41"code": "22P02", Feb 21 09:59:41"where": "unnamed portal parameter $7 = ''", Feb 21 09:59:41"file": "uuid.c", Feb 21 09:59:41"line": "134", Feb 21 09:59:41"routine": "string_to_uuid" Feb 21 09:59:41}```
-
I can´t access my vault after last update 1.16.2My vaultwarden is returning this message:
Service Unavailable
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.Apache/2.4.52 (Ubuntu) Server at "domain.com" Port 8000
since I upgrade to 1.16.2 and upgrade from cloudron 1.5 to 1.6
Any one are seen this problem ?
-
Fastify does not work on custom apps.I tried to deploy a custom app that a made in fastify (nodejs) build with ESBuild to keep everything in a single file. But an application build with fastify does not complete the health check.
const fastify = require('fastify')(); fastify.get('/', async (request, reply) => { return 'Hello, World!'; }); const start = async () => { try { await fastify.listen(3000); console.log('Server is running on port 3000'); } catch (err) { console.error(err); process.exit(1); } }; start();
Does any one already deploy a backend api app made with Fastify to cloudron?