Software Questions
Software support articles: covers the software you might want to use with your website, and what isn't allowed on our shared web hosting platform.
Can I install ZeroMQ on the shared hosting platform?
No.
ZeroMQ can't be installed on the shared platform (Web Hosting & WordPress Hosting) as it requires root access to run sudo commands and to have additional modules installed.
If you'd like to run ZeroMQ you can use an Unmanaged VPS.
Can I install Xdebug on the shared platform?
No.
Xdebug can't be installed on the shared platform (WordPress-Optimised Hosting and Web Hosting). If you'd like to run Xdebug you can use a Self-Managed VPS.
403 Response on POST Request
As part of our Web Application Firewall we occasionally filter invalid POST requests when we detect malicious traffic towards our network.
This shouldn't cause any problems with software that is using standard HTTP POST requests to reach your website. However, if you've written a custom application you will need to ensure the code making the POST is setting the appropriate Content-Length header in the request.
curl/libcurl will do this by default if you send any HTTP POST data. But if your custom code is simply overriding the HTTP method to POST without setting/sending any data, this header may be missing and result in the block.
You can easily resolve this by setting this header manually, for example:
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Length: ' . strlen($fields)));
However, it may be easier to simply use the built-in POST fields which automatically populate this header as required.
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);