giocomai
Forum Replies Created
-
I had this same error message, and in my case it turned out to be related to not having the pdo extension installed.
This is my complete dockerfile now. Without installing pdo pdo_mysql as per the dockerfile below, it would throw this exact error. This works nicely both with php 5.6.20 and php 7.3.
If you don’t use docker, you may still want to check you have the pdo and pdo_mysql extensions enabled.
FROM php:7.3-apache RUN apt-get update RUN apt-get install -y libzip-dev zlib1g-dev RUN docker-php-ext-install zip mysqli pdo pdo_mysql RUN a2enmod rewrite
As I see one of the comments above mentions using the php docker image, it turns out you can solve it by installing the pdo extensions.
This is my complete dockerfile now. Without installing pdo pdo_mysql as per the dockerfile below, it would throw this exact error. This works nicely with both php 5.6.20 and with 7.3.
FROM php:7.3-apache RUN apt-get update RUN apt-get install -y libzip-dev zlib1g-dev RUN docker-php-ext-install zip mysqli pdo pdo_mysql RUN a2enmod rewrite
Forum: Plugins
In reply to: [Zotpress] Zotpress 6.0: Feedback@katie great, thanks!
Forum: Plugins
In reply to: [Zotpress] Zotpress 6.0: FeedbackHi there!
if I generically quote a book that is an edited volume, I no longer see the editor names in inline citations (they appear alright in the reference list at the bottom of the post. I assume this is a regression (probably connected with the new 6.1 feature: “In-text citations will no longer erroneously display Editors.”), since this used to work fine.See for example the first reference in the first paragraph of this post:
https://www.giorgiocomai.eu/2014/08/12/russia-2004-the-next-ten-yearsIt is probably more common to quote an individual chapter inside an edited book, but it should probably still be possible to make reference to an edited book inline.
thanks!