This documentation covers the in-development release of Review Board. You can see the latest stable docs or all previous versions.
213 - Server Configuration Error¶
| API Error Code | 213 |
| HTTP Status Code | HTTP 500 Internal Server Error |
| Error Text | There was an error storing configuration on the server |
| Description | Review Board attempted to store data in the database or a configuration file as needed to fulfill this request, but wasn’t able to. The reason for this will be stored in reason. |
Examples¶
application/json¶
{
"err": {
"code": 213,
"msg": "There was an error storing configuration on the server"
},
"reason": "Unable to write to /path/to/file.",
"stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<reason>Unable to write to /path/to/file.</reason>
<err>
<msg>There was an error storing configuration on the server</msg>
<code>213</code>
</err>
</rsp>