Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • giocomai

    (@giocomai)

    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
    
    • This reply was modified 5 years ago by giocomai.
    • This reply was modified 5 years ago by giocomai.
    giocomai

    (@giocomai)

    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
    
    • This reply was modified 5 years ago by giocomai.
    • This reply was modified 5 years ago by giocomai.
    • This reply was modified 5 years ago by giocomai.

    @katie great, thanks!

    Hi 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-years

    It 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!

Viewing 4 replies - 1 through 4 (of 4 total)