YetiForceCompany / YetiForceCRM

Our team created for you one of the most innovative CRM systems that supports mainly business processes and allows for customization according to your needs. Be ahead of your competition and implement YetiForce!
https://yetiforce.com
Other
1.68k stars 727 forks source link

How to meet the php-requirements for "HTTP methods"? #11234

Closed e-andrianov closed 4 years ago

e-andrianov commented 4 years ago

I am trying to intall YetiForce 5.1.0 on Opensuse 15.2 server (PHP7, Apache2.4) and cann't understand how I have to make settings to meet the recommended php-requirements for "HTTP methods" like GET, POST, PUT, OPTIONS, PATCH, PROPFIND, REPORT, LOCK, DELETE, COPY, MOVE ? 2019-08-09 19_41_58-YetiForce

mariuszkrzaczkowski commented 4 years ago

This is configured in the apache configuration

z0lo13 commented 4 years ago

@e-andrianov in httpd.conf

<Location "*ADJUST TO YOUR SERVER"> AllowMethods GET POST PUT OPTIONS PATCH PROPFIND REPORT LOCK DELETE COPY MOVE Require all granted

e-andrianov commented 4 years ago

I put to the httpd.conf and to the conf-file of my virtual host next lines:

<Location "/srv/www/htdocs/crm.it24x365.ru"> AllowMethods GET POST PUT OPTIONS PATCH PROPFIND REPORT LOCK DELETE COPY MOVE Require all granted

but it had no matter.

z0lo13 commented 4 years ago

@e-andrianov try <Location "/"> also restart the httpd

<Location "/">
   AllowMethods GET POST PUT OPTIONS PATCH PROPFIND REPORT LOCK DELETE COPY MOVE
   Require all granted
</Location>

if you place in httpd not sure that you need to configure vhost

e-andrianov commented 4 years ago

Thank you for support. Possible something is wrong in my server installation.