Package: iipimage-server Severity: grave Tags: patch Justification: renders package unusable
Dear Maintainer, iipsrv.conf Apache config file does not work with Apache 2.4 due to changes in Apache auth syntax. The "Allow from all" syntax is now "Require all granted". As mod_version is installed and activated by default in Debian, a generic solution would be to add version detection to the config file. For example: <IfModule mod_version.c> <IfVersion < 2.4> Order allow,deny Allow from all </IfVersion> <IfVersion >= 2.4> Require all granted </IfVersion> </IfModule> -- System Information: Debian Release: 7.6 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 3.2.0-4-686-pae (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=UTF-8 (charmap=locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Ne peut initialiser LC_ALL ? la locale par d?faut: Aucun fichier ou dossier de ce type ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/dash Versions of packages iipimage-server depends on: pn libapache2-mod-fcgid | lighttpd <none> ii libc6 2.13-38+deb7u4 ii libfcgi0ldbl 2.4.0-8.1 ii libgcc1 1:4.7.2-5 ii libjpeg8 8d-1+deb7u1 ii libmemcached10 1.0.8-1 ii libstdc++6 4.7.2-5 ii libtiff4 3.9.6-11 Versions of packages iipimage-server recommends: ii imagemagick 8:6.7.7.10-5+deb7u3 ii libvips-tools 7.28.5-1+deb7u1 Versions of packages iipimage-server suggests: pn iipimage-doc <none> pn jiipview <none> ii memcached 1.4.13-0.2+deb7u1
8,17c8,9 < < <IfModule mod_version.c> < <IfVersion < 2.4> < Order allow,deny < Allow from all < </IfVersion> < <IfVersion >= 2.4> < Require all granted < </IfVersion> < </IfModule> --- > Order allow,deny > Allow from all