>When we edit a
> page using kupu and press "save" icon, the following message is displayed:
> " Error saving your data
>   Response status: 1223
>   Check your server log for more information "

You can edit your lenya/resources/kupu/common/kupueditor.js
 
and modify these lines:
 
this.handleSaveResponse = function(request, redirect) {
        if (request.status != '200' && request.status != '204'){
 
in this way:
 
this.handleSaveResponse = function(request, redirect) {
        if (request.status != '200' && request.status != '204' && request.status != '1223'){
 
'1223' is a not well definied response by browser.
If you change these lines, you can save without any bad response.
 
Regars,
    Roberto

Reply via email to