Ah, you're using POST method, that one doesn't support params in the URL. Either use GET, or wrap the params into a POST reuqest data properly (<form> HTML element)
Is there a reason why we're disabling GET variables in a POST? It makes this all a whole lot more complicated. Anyone coming from web development would probably find it confusing.
Also, I'm not getting any parameters. Not even my POST values. I'm not using a form, but instead use an AJAX request.
There would be no way to distinguish between parameters coming in from the URL and those coming from the POST body. I'm no longer sure what the HTTP standard says, if it says anything at all.
In order for the params to be parsed, you need the correct Content-type - "application/x-www-form-urlencoded" or "multipart/form-data" (see HTTP/HTTPFormParser.cpp for the implementation)
Anyway, you could still use the cUrlParser to parse the params out of the URL yourself, although this is needlessly difficult.
We could simply add a constant for every method.
Code:
Request.GET
Request.(RAW)POST (RAW is useful when if you want to send json or xml.
All other methods have the raw data send in the request body.
Request.DELETE
Request.PUT
..
The DigitalOcean installation server is still on one of s private servers. Should we change that
I'm actually thinking of shutting it down, nobody is using it anymore and I think the code behind it is broken.
Would anybody be opposed to me just turning it off?
No problem here
Also: Holy crap, I've reached 10 months on being active on the forum :O