You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP Fatal error: Uncaught exception 'InvalidArgumentException' with message
'The body passed to parseMultiStatus could not be parsed. Is it really xml?'
This happens with sabre/dav 2.1.3.
The text was updated successfully, but these errors were encountered:
cURL does not seem to correctly set the options to retrieve PROPFIND
results after HEAD requests were sent within the same cURL context; see
<sabre-io/http#47> for more information.
The bug was fixed in the meantime, but sabre/dav does still use an old
version of sabre/http. This commit fixes `composer.json` to include
the new version with an alias.
Moved from https://github.com/fruux/sabre-dav/issues/649
When using the
Sabre\DAV\Client
to do aHEAD
request, followed by aPROPFIND
request, the latter fails because of a missing response body.Reason for this problem is that the curl settings (including the
CURLOPT_NOBODY
option) are not cleared/reset between requests.Test case:
Result:
This happens with
sabre/dav 2.1.3
.The text was updated successfully, but these errors were encountered: