1👍
What you are getting are HTTP codes. Both 403 and 405 are under the category of bad request.
Error code 403: Forbidden – The server understood the request, but is
refusing to fulfill it. Authorization will not help and the request
SHOULD NOT be repeated. If the request method was not HEAD and the
server wishes to make public why the request has not been fulfilled,
it SHOULD describe the reason for the refusal in the entity. If the
server does not wish to make this information available to the client,
the status code 404 (Not Found) can be used instead.Error code 405: Method not allowed – The method specified in the
Request-Line is not allowed for the resource identified by the
Request-URI. The response MUST include an Allow header containing a
list of valid methods for the requested resource.
Unfortunately, I can’t really help you with your code because you haven’t posted it. Typically, a 403 means a permission issue. A 405 typically means what you requested was bad. You can try to contact your ISP.