I’ve tried making a custom ShareX image uploader and I got everything set up, but every time I test it, I get this error:
The remote server returned an error: (405) Method Not Allowed.
Any suggestions on what to do?
Could you link your project? Check your code and make sure that it has all of the requirements for making a request at ShareX.
Here is the project link:
I belive that you need to add a file named glitch.json
with this:
{
“install”: “echo ‘We Are Ready!’”,
“start”: “php -S 0.0.0.0:3000 -t .”
}
This tells the project to recognize PHP.
Now it works. Thanks!
1 Like