Dev Center
When attempting to upload images via HTTP Put the images fail to upload and this error is received.
readonly
property is false
by default, in this case the HTTP Put operation is not allowed.Check the write permission of the server.
If you are using Tomcat, the doPut()
will check to see if the readonly
property has been changed to false
. If it has not, the HTTP Put operation is not allowed. Please go to {Tomcat installation directory} -> conf -> web.xml, find the default servlet configuration (org.apache.catalina.servlets. DefaultServlet) and change the readonly
property to true
.
<init-param>
<param-name>readonly</param-name>
<param-value>false</param-value>
</init-param>
latest version