API Rest : Product modify give 403

Hi,
I’v all rights but when using rest api to modify a product, it give me a 403 (other rest command like create are ok).
Test realised with API explorer and with my software : same result. Seem there’s a bug.

Forbidden

You don’t have permission to access /api/index.php/products/3
on this server.

Additionally, a 403 Forbidden
error was encountered while trying to use an ErrorDocument to handle the request.

Regards

Telemak

After testing, it appears that all “PUT” actions are in error with Fordibben message. The problem in not in the product class, but before in the treatment.

It’s related to Apache conf in directadmin, which not allow PUT/DELETE by default.

Just add this in CUSTOM3 in customconf :
<Limit GET POST PUT DELETE OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST PUT DELETE OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>