Anyone know why I get this warning when trying to update a record in the UI? It will not let me add data to a field in a collection...
Are you self hosted?
yes
Is this a clean install? Did you ever have Appwrite running on the machine? Has updating a document ever worked?
It has worked up until today. I installed it awhile ago and have just left it running. I restarted the container to see if that would fix the problem. It didn't. Some "tables" will let me update data but not all.
what version are you on?
have you ever upgraded your appwrite instance?
Are the collections where it's not working older?
ver 1.3. These are all new collections AFTER I upgraded to 1.3
Some more questions:
- What version were you on before?
- Are you on 1.3.7 now?
Missing collection attribute $collection
I'm on 1.3.3 now. I am sorry but I don't remember which I was on before. Maybe 1.1?
Just FYI, I deleted the project and tried to recreate it and I am still having the same issue
So did you run the migrate command when you upgraded from 1.1 to 1.2 and then again when you went from 1.2 to 1.3? Also you might want to upgrade to 1.3.7 and you should run the migrate command on 1.3.7 too
I migrated from 1.1 to 1.3 directly and then I did run the migrate command. I guess I will upgrade and see how it goes.
You're missing the 1.2 migrate then. You must upgrade to the next minor version and run the migrate command. You can't skip.
It would be best to restore to before you upgraded and run through the process again without skipping versions.
If you can't, you can try upgrading to 1.3.7 and the run:
docker compose exec appwrite migrate version=1.2.1
docker compose exec appwrite migrate # this will run the 1.3.7 migration
Recommended threads
- self-hosted auth: /v1/account 404 on saf...
Project created in React/Next.js, Appwrite version 1.6.0. Authentication works in all browsers except Safari (ios), where an attempt to connect to {endpoint}/v1...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...