Hi all!
Currently I'm having issues with functions on the Appwrite Cloud environment.. and I'm not sure how to proceed.
The first issue is the easiest to explain: Currently I cant create a new function from a template.
When I click on 'functions' in the menu, and then on the tab 'templates' Then I click on 'Generate PDF', I give it a name, I select nodejs 18. After that I get stuck on the step 'Permissions'. If I enable the toggle 'Public (anyone can execute)' or disable it, the next button won't get enabled and stays disabled, leaving me stuck on this page
The second issue is not hard to explain either: I have already an existing function. When I do a POST request to this function from postman I get a 500 response code with the body:
{ "message": "Server Error", "code": 500, "type": "general_unknown", "version": "1.6.0" }
however in the console I see a succesful execution on this function with the resonse code 200 and all the logging. How can I resolve this issue?
Recommended threads
- Worker functions stuck on "Fetched 0 fun...
Appwrite Version: 1.9.0 Bug Description: The appwrite-worker-functions container gets stuck in an infinite loop logging "Fetched 0 functions..." while scheduled...
- I am using s3 for app storage but is it ...
_APP_STORAGE_DEVICE=s3 puts everything to the s3 storage but i need to be able to keep the function builds and site in the local and not waste the cloud storage...
- Local Serverless Function Testing: Are D...
I have followed the instructions to get the CLI working, and have been able to log-in, initialize my project, and created a simple Python function, which calls ...