-
Notifications
You must be signed in to change notification settings - Fork 81
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
Interface 'MStilkerich\RCMCardDAV\Frontend\RcmInterface' not found #424
Comments
Hello, I believe this is because of roundcube/plugin-installer#38 For a workaround, see However, in case of the docker container, I would suggest to build a new docker container and install RCMCardDAV 5.0.1 directly without the upgrade step. Then you should not run into this issue. |
Btw the base docker image should already include the composer command. For me the following adaptation of the Dockerfile published on the roundcube-docker project works to install 5.0.1: FROM roundcube/roundcubemail:latest
RUN set -ex; \
composer \
--working-dir=/usr/src/roundcubemail/ \
--prefer-dist \
--prefer-stable \
--update-no-dev \
--no-interaction \
--optimize-autoloader \
require \
roundcube/carddav \
; \ |
It worked. Thanks |
Hello,
I had http 500 error with Roundcube for several weeks now, and finally got time to look into it.
Running on Docker on RaspberryPi:
Image is built from roundcubemail-docker, with extra steps to install
composer
androundcube/carddav
roundcube/carddav
version that was installed by this command was 4.4.6. I found the following issues #415 and #418, and went inside Roundcube container to updateroundcube/carddav
, but it still fails with the error:I tried the following but result is the same:
Do you have ideas of what could be causing this issue ?
Thanks for your work and your help.
The text was updated successfully, but these errors were encountered: