Unable to save edit settings

Hi all,

I have an issue with xibo CMS. I am not able to save certain settings.
The example is displays. I can open displays, but when i want to save the settings, for example after setting yes at “Authorise display?”, the save button will show a rotating wheel. But thats it.

I have an error in my apache error log:
[Sat Sep 16 22:03:16.715644 2017] [access_compat:error] [pid 21604] [client 83.80.144.xx:16383] AH01797: client denied by server configuration: /home/domains/cms.fix.nl/private_html/display, referer: https://cms.fix.nl/display/view
The same for when i want to edit a user.

i can press the save button when i create a new user, daypart or whatever, but when i want to edit, the save button won’t work.

Version 1.8.2
Apache 2.4
PHP 5.6

Is this fresh installation or an upgrade from earlier series?

I assume you’ve followed the instructions here - http://xibo.org.uk/manual/en/manual_install.html

and then for non-docker installation additional configuration here - http://xibo.org.uk/manual/en/install_environment.html
and XTR XMR as well?

If all of the above is in place, then I’d say it will have something to do with permissions on your server ie Xibo can’t access and read/write to it properly.

Looks to me like an issue with your Apache configuration. Google suggests that the error you’re seeing can be caused by mixing old and new access control statements in your apache config (ie Allow from and Require all etc)

The error is coming from Apache and not from Xibo, so that’s where you’d need to start looking.

I am looking at apache… only this is only application that is giving me this errors. And if these errors are for all pages i would agree that it apache configuration only.
But in this case, i can add a new user and press save (which works fine), but if i want to edit this user, the save button is giving this error…

What does xibo CMS different when adding and editing an item? (user for example).

Finally found a solution…

By adding the following to the .htaccess:

<Limit GET POST PUT DELETE>
    Order allow,deny
    Allow from all
</Limit>