Hello! Im trying to create a blog, but some reason when i submit my form i get this error:
TypeScript
21:35:51 [ERROR] request to https://cloud.appwrite.io/v1/databases/65d6a65a44524b1a9ed7/collections/65d6a67723c7837bdb3b/documents failed, reason: socket hang up
Hint:
Browser APIs are not available on the server.
If the code is in a framework component, try to access these objects after rendering using lifecycle methods or use a `client:only` directive to make the component exclusively run on the client.
TL;DR
Issue: Developer encountering error message when trying to submit a form to create a blog.
Solution: The error message indicates that the code is trying to access Browser APIs on the server side, which is not allowed. Developers should ensure that Browser APIs are only accessed on the client side, such as using lifecycle methods or a `client:only` directive.Recommended threads
- Method EQUAL not wrking in REST API Quer...
Request: ``` postman request 'https://nyc.cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/rows?queries[]={%22method%22%3A%22select%22%2C%22values%2...
- [SOLVED] How to use the Health endpoints
So i wanted to monitor everything on my appwrite instance tho it seams like there is no API scope available for thoses. Looking at : https://appwrite.io/docs/r...
- Golang for backend
hi coders! ,I am new to golang and backend as a whole, I found golang pretty easy to learn due to my previous knowledge in CPP and python, the syntax felt prett...