Zum Inhalt springen

Roundcube/Plugin/carddav: Unterschied zwischen den Versionen

Aus Foxwiki
K Textersetzung - „http://“ durch „https://“
K Textersetzung - „ “ durch „ “
 
Zeile 17: Zeile 17:
  All settings correct for using Composer
  All settings correct for using Composer
   
   
  PHP Warning: failed loading cafile stream: `/etc/ssl/certs/cacert.pem' in - on line 762
  PHP Warning: failed loading cafile stream: `/etc/ssl/certs/cacert.pem' in - on line 762
  PHP Warning: file_get_contents(): Failed to enable crypto in - on line 762
  PHP Warning: file_get_contents(): Failed to enable crypto in - on line 762
  PHP Warning: file_get_contents(<nowiki>https://getcomposer.org/versions</nowiki>): failed to open stream: operation failed in - on line 762
  PHP Warning: file_get_contents(<nowiki>https://getcomposer.org/versions</nowiki>): failed to open stream: operation failed in - on line 762
  PHP Warning: Invalid argument supplied for foreach() in - on line 508
  PHP Warning: Invalid argument supplied for foreach() in - on line 508
  None of the 0 stable version(s) of Composer matches your PHP version (5.6.21 / ID: 50621)
  None of the 0 stable version(s) of Composer matches your PHP version (5.6.21 / ID: 50621)
then you have to install a cert bundle:
then you have to install a cert bundle:

Aktuelle Version vom 14. Juni 2026, 00:44 Uhr

CardDav

This is a plugin to access CardDAV servers like ownCloud or SoGO.

  • Installed via composer roundcube/carddav
  • Plugin name: carddav

This plugin was not tested against Roundcube 1.4

Setup the database tables using the suitable file saved in the dbmigrations/0000-dbinit/ subfolder.

Then you can configure you addressbook. If you use an ownCloud server, this is how to do it:

If you have an Android phone you may want to take a look to the CardDAV application here.

Troubleshoting

If you get a curl error like this when downloading the dependencies

All settings correct for using Composer

PHP Warning: failed loading cafile stream: `/etc/ssl/certs/cacert.pem' in - on line 762
PHP Warning: file_get_contents(): Failed to enable crypto in - on line 762
PHP Warning: file_get_contents(https://getcomposer.org/versions): failed to open stream: operation failed in - on line 762
PHP Warning: Invalid argument supplied for foreach() in - on line 508
None of the 0 stable version(s) of Composer matches your PHP version (5.6.21 / ID: 50621)

then you have to install a cert bundle:

cd /etc/ssl/certs
wget --no-check-certificate https://curl.haxx.se/ca/cacert.pem

and tell php where to find it editing your php.ini

openssl.cafile=/etc/ssl/certs/cacert.pem


  1. https://www.allerstorfer.at/roundcube-install-carddav-plugin-on-ubuntu-20-04/