-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CardDAV-Server XML-Response is malformed. Synchronization aborted! #28
Comments
Hi, catch (Exception $e) Here the result : [02-Sep-2012 01:53:59 +0200]: v0.5.1 | carddav_server_id: 1 | Starting CardDAV-Addressbook synchronization I will investigate for more informations |
I sync I have found the problem. You can add the replace the following lines : 211,212c211,224
< {
< $response = $this->query($this->url, 'PROPFIND');
---
> {
> $xml = new XMLWriter();
> $xml->openMemory();
> $xml->setIndent(4);
> $xml->startDocument('1.0', 'utf-8');
> $xml->startElement('D:propfind');
> $xml->writeAttribute('xmlns:D', 'DAV:');
> $xml->startElement('D:prop');
> $xml->writeElement('D:resourcetype');
> $xml->endElement();
> $xml->endElement();
> $xml->endDocument();
>
> $response = $this->query($this->url, 'PROPFIND', $xml->outputMemory()); |
#32 Mountain Lion Contacts cardDAV server sync problems. |
I've got the same issue when I try to connect against owncloud 6. Jul 16 01:23:53 mx02 roundcube: v0.5.1 | carddav_server_id: 1 | Starting CardDAV-Addressbook synchronization I've already modified the carddav_backend.php like described above but the problem is the same. Exists a fix for this? |
When I delete a card, I have the following error in log :
CardDAV-Server XML-Response is malformed. Synchronization aborted!
The card is deleted on carddav serveur.
The text was updated successfully, but these errors were encountered: