Debian Bug report logs - #817769
problem with include_path

version graph

Package: php5; Maintainer for php5 is (unknown);

Reported by: Ivan Sergio Borgonovo <ivan@webthatworks.it>

Date: Wed, 9 Mar 2016 23:36:07 UTC

Severity: normal

Found in version php5/5.6.19+dfsg-1

Fixed in version php5/5.6.19+dfsg-2

Done: Ondřej Surý <ondrej@debian.org>

Bug is archived. No further changes may be made.

Toggle useless messages

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#817769; Package php5. (Wed, 09 Mar 2016 23:36:13 GMT) (full text, mbox, link).


Acknowledgement sent to Ivan Sergio Borgonovo <ivan@webthatworks.it>:
New Bug report received and forwarded. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>. (Wed, 09 Mar 2016 23:36:13 GMT) (full text, mbox, link).


Message #5 received at submit@bugs.debian.org (full text, mbox, reply):

From: Ivan Sergio Borgonovo <ivan@webthatworks.it>
To: submit@bugs.debian.org
Subject: problem with include_path
Date: Thu, 10 Mar 2016 00:34:43 +0100
Package: php5
Version: 5.6.19+dfsg-1

After upgrade from 5.6.18+dfsg-1 I get:

FastCGI: server "/usr/lib/cgi-bin/php5-fcgi" stderr: PHP message: PHP 
Fatal error:  require_once(): Failed opening required 
'Horde/Autoloader/Default.php' 
(include_path='/usr/share/horde/lib:.::/usr/share/pear') in 
/usr/share/horde/lib/core.php on line 49

packages potentially involved are:
php5-fpm
php5-common
php5-cli

I haven't been able to track down which package is actually the culprit.
Gut feeling would point to php5-fpm


thanks


-- 
Ivan Sergio Borgonovo
http://www.webthatworks.it




Information forwarded to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#817769; Package php5. (Wed, 09 Mar 2016 23:54:04 GMT) (full text, mbox, link).


Acknowledgement sent to Ondřej Surý <ondrej@sury.org>:
Extra info received and forwarded to list. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>. (Wed, 09 Mar 2016 23:54:04 GMT) (full text, mbox, link).


Message #10 received at 817769@bugs.debian.org (full text, mbox, reply):

From: Ondřej Surý <ondrej@sury.org>
To: Ivan Sergio Borgonovo <ivan@webthatworks.it>, 817769@bugs.debian.org
Subject: Re: [php-maint] Bug#817769: problem with include_path
Date: Thu, 10 Mar 2016 00:51:48 +0100
It seems that your include_path is wrong, as Horde resides in:

/usr/share/php/Horde/Autoloader/Default.php

Doesn't seem to be php5 fault as /usr/share/php is missing from your
include_path and the default include_path is:

include_path = ".:/usr/share/php"

Cheers,
-- 
Ondřej Surý <ondrej@sury.org>
Knot DNS (https://www.knot-dns.cz/) – a high-performance DNS server

On Thu, Mar 10, 2016, at 00:34, Ivan Sergio Borgonovo wrote:
> Package: php5
> Version: 5.6.19+dfsg-1
> 
> After upgrade from 5.6.18+dfsg-1 I get:
> 
> FastCGI: server "/usr/lib/cgi-bin/php5-fcgi" stderr: PHP message: PHP 
> Fatal error:  require_once(): Failed opening required 
> 'Horde/Autoloader/Default.php' 
> (include_path='/usr/share/horde/lib:.::/usr/share/pear') in 
> /usr/share/horde/lib/core.php on line 49
> 
> packages potentially involved are:
> php5-fpm
> php5-common
> php5-cli
> 
> I haven't been able to track down which package is actually the culprit.
> Gut feeling would point to php5-fpm
> 
> 
> thanks
> 
> 
> -- 
> Ivan Sergio Borgonovo
> http://www.webthatworks.it
> 
> _______________________________________________
> pkg-php-maint mailing list
> pkg-php-maint@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-php-maint



Information forwarded to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#817769; Package php5. (Thu, 10 Mar 2016 10:21:06 GMT) (full text, mbox, link).


Acknowledgement sent to Ivan Sergio Borgonovo <ivan.s.b@gmail.com>:
Extra info received and forwarded to list. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>. (Thu, 10 Mar 2016 10:21:06 GMT) (full text, mbox, link).


Message #15 received at 817769@bugs.debian.org (full text, mbox, reply):

From: Ivan Sergio Borgonovo <ivan.s.b@gmail.com>
To: 817769@bugs.debian.org
Subject: Re: [php-maint] Bug#817769: problem with include_path
Date: Thu, 10 Mar 2016 11:18:58 +0100
Downgrading fix the problem.
Simply reinstalling new versions break stuff again.

Before downgrading I have
root@caronte:~/pkg# php5 -r 'echo(get_include_path());'
.::/usr/share/pear
after downgrading
root@caronte:~/pkg# php5 -r 'echo(get_include_path());'
.:/usr/share/php:/usr/share/pear

So the include_path as was clear from the log is wrong, but the main 
suspect still remain one of those packages.

I've been trying to guess which package among the suspects exactly 
defined a default include_path but grep and diff were not enough useful 
since the only possible interesting differences were in binary files.

php.ini files for modules seems to be generated in postinst but all the 
instance of include_path seems to be commented out in both versions in 
/etc/php5.

Considering that php5 in console still has the wrong path I would 
exclude from the list of suspects php5-fpm.

The remaining candidates are php5 , php5-common and php5-cli.

On 03/10/2016 12:51 AM, Ondřej Surý wrote:
> It seems that your include_path is wrong, as Horde resides in:
>
> /usr/share/php/Horde/Autoloader/Default.php
>
> Doesn't seem to be php5 fault as /usr/share/php is missing from your
> include_path and the default include_path is:
>
> include_path = ".:/usr/share/php"
>
> Cheers,
>

-- 
Ivan Sergio Borgonovo
http://www.webthatworks.it




Information forwarded to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#817769; Package php5. (Thu, 10 Mar 2016 10:42:05 GMT) (full text, mbox, link).


Acknowledgement sent to Ondřej Surý <ondrej@sury.org>:
Extra info received and forwarded to list. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>. (Thu, 10 Mar 2016 10:42:05 GMT) (full text, mbox, link).


Message #20 received at 817769@bugs.debian.org (full text, mbox, reply):

From: Ondřej Surý <ondrej@sury.org>
To: Ivan Sergio Borgonovo <ivan.s.b@gmail.com>, 817769@bugs.debian.org
Subject: Re: [php-maint] Bug#817769: Bug#817769: problem with include_path
Date: Thu, 10 Mar 2016 11:38:59 +0100
You might be right, the PHP packages stopped building PEAR between
5.6.18 and 5.6.19, because it's a separate source package now and
perhaps the defaults has changed because of this.

I'll investige more later this or next week.

Cheers,
-- 
Ondřej Surý <ondrej@sury.org>
Knot DNS (https://www.knot-dns.cz/) – a high-performance DNS server

On Thu, Mar 10, 2016, at 11:18, Ivan Sergio Borgonovo wrote:
> Downgrading fix the problem.
> Simply reinstalling new versions break stuff again.
> 
> Before downgrading I have
> root@caronte:~/pkg# php5 -r 'echo(get_include_path());'
> .::/usr/share/pear
> after downgrading
> root@caronte:~/pkg# php5 -r 'echo(get_include_path());'
> .:/usr/share/php:/usr/share/pear
> 
> So the include_path as was clear from the log is wrong, but the main 
> suspect still remain one of those packages.
> 
> I've been trying to guess which package among the suspects exactly 
> defined a default include_path but grep and diff were not enough useful 
> since the only possible interesting differences were in binary files.
> 
> php.ini files for modules seems to be generated in postinst but all the 
> instance of include_path seems to be commented out in both versions in 
> /etc/php5.
> 
> Considering that php5 in console still has the wrong path I would 
> exclude from the list of suspects php5-fpm.
> 
> The remaining candidates are php5 , php5-common and php5-cli.
> 
> On 03/10/2016 12:51 AM, Ondřej Surý wrote:
> > It seems that your include_path is wrong, as Horde resides in:
> >
> > /usr/share/php/Horde/Autoloader/Default.php
> >
> > Doesn't seem to be php5 fault as /usr/share/php is missing from your
> > include_path and the default include_path is:
> >
> > include_path = ".:/usr/share/php"
> >
> > Cheers,
> >
> 
> -- 
> Ivan Sergio Borgonovo
> http://www.webthatworks.it
> 
> _______________________________________________
> pkg-php-maint mailing list
> pkg-php-maint@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-php-maint



Information forwarded to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#817769; Package php5. (Thu, 10 Mar 2016 14:33:08 GMT) (full text, mbox, link).


Acknowledgement sent to Ivan Sergio Borgonovo <ivan.s.b@gmail.com>:
Extra info received and forwarded to list. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>. (Thu, 10 Mar 2016 14:33:08 GMT) (full text, mbox, link).


Message #25 received at 817769@bugs.debian.org (full text, mbox, reply):

From: Ivan Sergio Borgonovo <ivan.s.b@gmail.com>
To: 817769@bugs.debian.org
Subject: Re: [php-maint] Bug#817769: Bug#817769: problem with include_path
Date: Thu, 10 Mar 2016 15:29:52 +0100
On 03/10/2016 11:38 AM, Ondřej Surý wrote:
> You might be right, the PHP packages stopped building PEAR between
> 5.6.18 and 5.6.19, because it's a separate source package now and
> perhaps the defaults has changed because of this.
>
> I'll investige more later this or next week.

BTW if it can be of help to diagnose the problem, php7 on my workstation 
seems unaffected

ivan@gloom:~$ php7.0 -r 'echo(get_include_path());'
.:/usr/share/php:

But here I dont have php5 installed.

On the other hand on my home server
php7.0-common and php7.0-xml were installed as dependencies of something 
but no other php7 package was installed.

-- 
Ivan Sergio Borgonovo
http://www.webthatworks.it




Reply sent to Ondřej Surý <ondrej@debian.org>:
You have taken responsibility. (Fri, 11 Mar 2016 18:36:13 GMT) (full text, mbox, link).


Notification sent to Ivan Sergio Borgonovo <ivan@webthatworks.it>:
Bug acknowledged by developer. (Fri, 11 Mar 2016 18:36:13 GMT) (full text, mbox, link).


Message #30 received at 817769-close@bugs.debian.org (full text, mbox, reply):

From: Ondřej Surý <ondrej@debian.org>
To: 817769-close@bugs.debian.org
Subject: Bug#817769: fixed in php5 5.6.19+dfsg-2
Date: Fri, 11 Mar 2016 18:35:26 +0000
Source: php5
Source-Version: 5.6.19+dfsg-2

We believe that the bug you reported is fixed in the latest version of
php5, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 817769@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ondřej Surý <ondrej@debian.org> (supplier of updated php5 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Fri, 11 Mar 2016 09:25:59 +0100
Source: php5
Binary: php5 php5-common libapache2-mod-php5 libapache2-mod-php5filter php5-cgi php5-cli php5-phpdbg php5-fpm libphp5-embed php5-dev php5-dbg php5-curl php5-enchant php5-gd php5-gmp php5-imap php5-interbase php5-intl php5-ldap php5-mcrypt php5-readline php5-mysql php5-mysqlnd php5-odbc php5-pgsql php5-pspell php5-recode php5-snmp php5-sqlite php5-sybase php5-tidy php5-xmlrpc php5-xsl
Architecture: source amd64 all
Version: 5.6.19+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>
Changed-By: Ondřej Surý <ondrej@debian.org>
Description:
 libapache2-mod-php5 - server-side, HTML-embedded scripting language (Apache 2 module)
 libapache2-mod-php5filter - server-side, HTML-embedded scripting language (apache 2 filter mo
 libphp5-embed - HTML-embedded scripting language (Embedded SAPI library)
 php5       - server-side, HTML-embedded scripting language (metapackage)
 php5-cgi   - server-side, HTML-embedded scripting language (CGI binary)
 php5-cli   - command-line interpreter for the php5 scripting language
 php5-common - Common files for packages built from the php5 source
 php5-curl  - CURL module for php5
 php5-dbg   - Debug symbols for PHP5
 php5-dev   - Files for PHP5 module development
 php5-enchant - Enchant module for php5
 php5-fpm   - server-side, HTML-embedded scripting language (FPM-CGI binary)
 php5-gd    - GD module for php5
 php5-gmp   - GMP module for php5
 php5-imap  - IMAP module for php5
 php5-interbase - interbase/firebird module for php5
 php5-intl  - internationalisation module for php5
 php5-ldap  - LDAP module for php5
 php5-mcrypt - MCrypt module for php5
 php5-mysql - MySQL module for php5
 php5-mysqlnd - MySQL module for php5 (Native Driver)
 php5-odbc  - ODBC module for php5
 php5-pgsql - PostgreSQL module for php5
 php5-phpdbg - server-side, HTML-embedded scripting language (PHPDBG binary)
 php5-pspell - pspell module for php5
 php5-readline - Readline module for php5
 php5-recode - recode module for php5
 php5-snmp  - SNMP module for php5
 php5-sqlite - SQLite module for php5
 php5-sybase - Sybase / MS SQL Server module for php5
 php5-tidy  - tidy module for php5
 php5-xmlrpc - XML-RPC module for php5
 php5-xsl   - XSL module for php5
Closes: 817769
Changes:
 php5 (5.6.19+dfsg-2) unstable; urgency=medium
 .
   * Return /usr/share/php to the default include_path that got dropped
     when we stopped building PEAR from this source package
     (Closes: #817769)
Checksums-Sha1:
 c01cd6f56b5c05b4220b6ca4347011578d8d3c37 5138 php5_5.6.19+dfsg-2.dsc
 6d3a0b08f42d7cdbd2e1598c8c7184e3f75354e6 224828 php5_5.6.19+dfsg-2.debian.tar.xz
 4f6831a43d93f2242b3c4d10c89e9d5faa7fc2af 2209162 libapache2-mod-php5_5.6.19+dfsg-2_amd64.deb
 c0cb52b7b79566c6089acd306eb096845b13063e 2208774 libapache2-mod-php5filter_5.6.19+dfsg-2_amd64.deb
 b2bd6e611176d4eb529209f3d098e2b7b252f26f 2203584 libphp5-embed_5.6.19+dfsg-2_amd64.deb
 6da982e997aa20ae155b87986a0e59b292a66de0 4273870 php5-cgi_5.6.19+dfsg-2_amd64.deb
 17ccb431567bec0489f6d7fc6093116966322b00 2180642 php5-cli_5.6.19+dfsg-2_amd64.deb
 622aa2deffa011dd230b4a634a3a3440e9e1b555 727992 php5-common_5.6.19+dfsg-2_amd64.deb
 dc9da21dec866a8909cc0a751fb40aee991cbd66 27654 php5-curl_5.6.19+dfsg-2_amd64.deb
 4aec08f5e5bdc64bb43478d472db5e8ab60d46fb 48327768 php5-dbg_5.6.19+dfsg-2_amd64.deb
 80c08dae4b1049fa45f18898feb4f2d28c5cc16a 356006 php5-dev_5.6.19+dfsg-2_amd64.deb
 c94e6f976cd4d565d6172c9efde908ddb740ccbf 9198 php5-enchant_5.6.19+dfsg-2_amd64.deb
 2bc756260b139ae6c1bec48c74addd0edc7be6ca 2193246 php5-fpm_5.6.19+dfsg-2_amd64.deb
 172dc036fbf28f1056f743c0106ca224675a752d 28642 php5-gd_5.6.19+dfsg-2_amd64.deb
 cdc98091f01ab31fd504119c2396ab45eb210c77 21666 php5-gmp_5.6.19+dfsg-2_amd64.deb
 2a5de67da814fe89eddc9e97aecfd0421c96eed7 31012 php5-imap_5.6.19+dfsg-2_amd64.deb
 7d0623b7b7841f48c864b1051b96509b6ab6dd25 42598 php5-interbase_5.6.19+dfsg-2_amd64.deb
 7c1e5780b8c568d30b3beabc81f631edef07725a 111598 php5-intl_5.6.19+dfsg-2_amd64.deb
 b8c2d5930af8b85cbb62c76416a8741ce2df58c8 22130 php5-ldap_5.6.19+dfsg-2_amd64.deb
 67bfc3c51e4ceb5c4c930dab204c8ff1d1d58422 15184 php5-mcrypt_5.6.19+dfsg-2_amd64.deb
 2da82871c313c371b6a84d19435680294442f803 64766 php5-mysql_5.6.19+dfsg-2_amd64.deb
 d8a7b7cfc31c6ebe8dd4efdea1e6664a7c5a645d 140754 php5-mysqlnd_5.6.19+dfsg-2_amd64.deb
 91d2cd9d232a210101c9110b368bb1582408f4d2 31746 php5-odbc_5.6.19+dfsg-2_amd64.deb
 f208169180503c32980abb7d6924ab470058d2c7 56966 php5-pgsql_5.6.19+dfsg-2_amd64.deb
 d058872e8b280b676f3bfb58a9f07167ca506a14 2191200 php5-phpdbg_5.6.19+dfsg-2_amd64.deb
 bb87af29f431d56ad4297cab46737675e8659d54 8136 php5-pspell_5.6.19+dfsg-2_amd64.deb
 b9793204a54531847ea5c5df7b2581ffb9e869e3 13112 php5-readline_5.6.19+dfsg-2_amd64.deb
 28f092ca5ee466f6b9dc688609d38841c503c222 5504 php5-recode_5.6.19+dfsg-2_amd64.deb
 aa97cd631937502da5198a045d590c760d9905da 19390 php5-snmp_5.6.19+dfsg-2_amd64.deb
 8fa69465323dc30afc4441c5beadcbb295957571 24430 php5-sqlite_5.6.19+dfsg-2_amd64.deb
 e52a41ebd3f4942afe9a72659dc444aefec4da38 24240 php5-sybase_5.6.19+dfsg-2_amd64.deb
 b71f48854a774d81e38e7d5762e76b54b1679fac 16604 php5-tidy_5.6.19+dfsg-2_amd64.deb
 d1da38dc19ba50d594101d19bb9d79a2443befd6 35678 php5-xmlrpc_5.6.19+dfsg-2_amd64.deb
 064930e26dbf81a2ec3813fe6e7ce3304d61122b 13874 php5-xsl_5.6.19+dfsg-2_amd64.deb
 43f0dd30d7e139dfec84338d40857e54f442adaa 1248 php5_5.6.19+dfsg-2_all.deb
Checksums-Sha256:
 314f52d08647dee6222beb295ea599f2c51e6530bdc110b816d4c4ed19d444f5 5138 php5_5.6.19+dfsg-2.dsc
 7f8b51d117a09e975862899f479efa1ce180ca59c867733f813b56df839c37bd 224828 php5_5.6.19+dfsg-2.debian.tar.xz
 45439ebda5fa2123a56e9fe87103d8b115cbd228c927901f7177ba870364b029 2209162 libapache2-mod-php5_5.6.19+dfsg-2_amd64.deb
 9ddcad3f200a2a0f25f59db5458405fdd41cbeaa81ecc6a3759a2d574d83184d 2208774 libapache2-mod-php5filter_5.6.19+dfsg-2_amd64.deb
 d48dda2e9e290cffcb302144e7715b682dc70582c40513ac411b303ddf7e1c87 2203584 libphp5-embed_5.6.19+dfsg-2_amd64.deb
 fe3021d992e66033c1684001de5d2ee16b3ce66dbab63be4458afbb9448bd9c7 4273870 php5-cgi_5.6.19+dfsg-2_amd64.deb
 6908c358ae270cc1ea2fc42c0e8780e7d3f557c91794ccf7fb5cf164684e8a15 2180642 php5-cli_5.6.19+dfsg-2_amd64.deb
 b403862a6a1dfb7d3a6f710d9b771a13c0ffc947d339661aa857c4574ba7208a 727992 php5-common_5.6.19+dfsg-2_amd64.deb
 d4a17c9614e363fccd87c888b4688adaea4a1afd92b994d3e0c9de9333452206 27654 php5-curl_5.6.19+dfsg-2_amd64.deb
 cebd040292c03e8c4152823b11610c23dbd8cd88a52484d350d2fb5d7904f07b 48327768 php5-dbg_5.6.19+dfsg-2_amd64.deb
 42cd4509a44ed9ebd08f138d384579017387159fd5aa31e3e64b720d1c7d76dd 356006 php5-dev_5.6.19+dfsg-2_amd64.deb
 547708f653f8f8a8f252629a35c7ed02e66004ddb11b62ad8f047e8619e7ccb5 9198 php5-enchant_5.6.19+dfsg-2_amd64.deb
 63eb430647e1245d4b553072ba44f03597e2aaf21dbb77d8a7713a58cc28c441 2193246 php5-fpm_5.6.19+dfsg-2_amd64.deb
 ba186b9690f6713af68d5e78ac96d59ac60ff20ceb7006e1898fa5d76591f5bc 28642 php5-gd_5.6.19+dfsg-2_amd64.deb
 d4f5a603f25dabb9ede0dbec8719f9db0107b3d2fb4d7a59e9c2a98300c409bf 21666 php5-gmp_5.6.19+dfsg-2_amd64.deb
 50ef8a13d59d721c6c50a272e4b64f552ea34e8b0bc0f28e6656d7265b9a55b1 31012 php5-imap_5.6.19+dfsg-2_amd64.deb
 eedded1a7b2cda930b31ff179f7badf3832c87b084e1d2be503bba7efb05caff 42598 php5-interbase_5.6.19+dfsg-2_amd64.deb
 54e6139b1e7d3b91504e009b9653704ace1b9d5538e7cbecd55d7ad327cb9187 111598 php5-intl_5.6.19+dfsg-2_amd64.deb
 17efd0b531be0a8f58318e334dcb72bfee6ccd1392b339be4f899a7235401b1f 22130 php5-ldap_5.6.19+dfsg-2_amd64.deb
 07ce9649cfe83b015146c937853602879fb148f2402ccf572ec9c4defc3c3a10 15184 php5-mcrypt_5.6.19+dfsg-2_amd64.deb
 5208245f4fc74c526d6c94623c164cfe18639d18bcb7a1944efd3e8783263bc2 64766 php5-mysql_5.6.19+dfsg-2_amd64.deb
 d2329e732c41c5935e0e4087727bc648fa8d5be059296db32d40ea10711211e3 140754 php5-mysqlnd_5.6.19+dfsg-2_amd64.deb
 ec23e33a8a7da284efe033692e32d894fa4ba1114fb85b066f5d14adf7e9ed7f 31746 php5-odbc_5.6.19+dfsg-2_amd64.deb
 f9da6c75f896e04fd0d89180ae2c6dfe544b67c9c824503c3e70edee607704ce 56966 php5-pgsql_5.6.19+dfsg-2_amd64.deb
 936468c15bad5b686c2d0fa4841f2d3bfe9c4d466bebf781a3bd8a4ffa754147 2191200 php5-phpdbg_5.6.19+dfsg-2_amd64.deb
 90a3ecca972dabe39a46812c7712b220110281b24a9603a40a7080b1afe299ec 8136 php5-pspell_5.6.19+dfsg-2_amd64.deb
 0f3193b167c10ccc0da2425b9c6cc4c1391f4d2195b0cf780c09eadfa8ac2c24 13112 php5-readline_5.6.19+dfsg-2_amd64.deb
 8f0067d86d18aec9301cb4ad53344a41078e6f3191e6d1eca089e997af220fb1 5504 php5-recode_5.6.19+dfsg-2_amd64.deb
 219aacfc2169cbfab6f328eb9369c5cf0ed1a7e2735b850c436c5532b474cbb9 19390 php5-snmp_5.6.19+dfsg-2_amd64.deb
 230ffff592049eff05c02af18685c36af4b2c260555d7e4f168c3fa7b0ec0594 24430 php5-sqlite_5.6.19+dfsg-2_amd64.deb
 4e8398aa25234cb25be2e954cebf8017872ca9a96c763fbd92a17d78494362a1 24240 php5-sybase_5.6.19+dfsg-2_amd64.deb
 c1edd8af37427f09898eab0ae5eaba6acd5b65e37de85c3c3f99af8756130dc6 16604 php5-tidy_5.6.19+dfsg-2_amd64.deb
 6d830f04242962f3b7ba40a7797dea7bc45b37897caf83ffa6acab7d02cfdf2c 35678 php5-xmlrpc_5.6.19+dfsg-2_amd64.deb
 6a873e318c23bf542a250bcf67caffcf7626d4d9afce00f9873c415dcbf951e4 13874 php5-xsl_5.6.19+dfsg-2_amd64.deb
 42507da401499fb858c1aae1fa3bc220fab5b4e5c99b3c82b30b9adacae662a4 1248 php5_5.6.19+dfsg-2_all.deb
Files:
 bb1c693fe0004d1f3dff57322d7e2d16 5138 php optional php5_5.6.19+dfsg-2.dsc
 3c287aa699cec396ebf8792775aa730a 224828 php optional php5_5.6.19+dfsg-2.debian.tar.xz
 c424262af6a61c3a27ea717067815869 2209162 httpd optional libapache2-mod-php5_5.6.19+dfsg-2_amd64.deb
 1acafae304bc37d229d609a0723099d0 2208774 httpd extra libapache2-mod-php5filter_5.6.19+dfsg-2_amd64.deb
 55d8b269e66e65422cbd66ad7cc34eec 2203584 php optional libphp5-embed_5.6.19+dfsg-2_amd64.deb
 d4d8f9693b93b7db946d2cd304762808 4273870 php optional php5-cgi_5.6.19+dfsg-2_amd64.deb
 e3296a1eb36184e30d3a43833d142e4d 2180642 php optional php5-cli_5.6.19+dfsg-2_amd64.deb
 6daf144e9a15f8b480231f06b1d2c7b9 727992 php optional php5-common_5.6.19+dfsg-2_amd64.deb
 83ce46f0b2938e7f6ef66a3e66653709 27654 php optional php5-curl_5.6.19+dfsg-2_amd64.deb
 c3af5b54a59e58ed52d429d5f2516f45 48327768 debug extra php5-dbg_5.6.19+dfsg-2_amd64.deb
 c3d91cdebffae348b162c634ff3b9bfe 356006 php optional php5-dev_5.6.19+dfsg-2_amd64.deb
 f8372636a7811e635cd4f6526d1d98d1 9198 php optional php5-enchant_5.6.19+dfsg-2_amd64.deb
 b2a083ee417207dbff59600ec89f8a27 2193246 php optional php5-fpm_5.6.19+dfsg-2_amd64.deb
 314e65909def5908790cdd371bc5662c 28642 php optional php5-gd_5.6.19+dfsg-2_amd64.deb
 e1d6cfd42818cfebb9ed97a225041573 21666 php optional php5-gmp_5.6.19+dfsg-2_amd64.deb
 511744eef6699f3ea8bad38ec80fa02e 31012 php optional php5-imap_5.6.19+dfsg-2_amd64.deb
 0e03b3285eab071978c4df2574ae6547 42598 php optional php5-interbase_5.6.19+dfsg-2_amd64.deb
 8dac9a38cbdc928fb84f147155098d84 111598 php optional php5-intl_5.6.19+dfsg-2_amd64.deb
 b8803de976a627a9c98c5cad72acbc1d 22130 php optional php5-ldap_5.6.19+dfsg-2_amd64.deb
 8ee9aaa640c0a7f930afcb143514cd51 15184 php optional php5-mcrypt_5.6.19+dfsg-2_amd64.deb
 7c532930fe837f8adc71bcfdadb9c379 64766 php optional php5-mysql_5.6.19+dfsg-2_amd64.deb
 3302e439edf5b0ea4bd570e31c9de6cb 140754 php extra php5-mysqlnd_5.6.19+dfsg-2_amd64.deb
 cbc24ef7a5e61b775c08ae183a67d4d0 31746 php optional php5-odbc_5.6.19+dfsg-2_amd64.deb
 c274dab11b7e3db20d32551354c13ecd 56966 php optional php5-pgsql_5.6.19+dfsg-2_amd64.deb
 d16f4bb8c3a8a1a6712a6c14611ff3f5 2191200 php optional php5-phpdbg_5.6.19+dfsg-2_amd64.deb
 9fe68196166965ffce8170cca9b55256 8136 php optional php5-pspell_5.6.19+dfsg-2_amd64.deb
 256505937105ca74c2f1575f54f7cbcc 13112 php optional php5-readline_5.6.19+dfsg-2_amd64.deb
 59e28d89adfc7412f1300d3247826df0 5504 php optional php5-recode_5.6.19+dfsg-2_amd64.deb
 bcbffff19687ae1356ea7599b14e7bf9 19390 php optional php5-snmp_5.6.19+dfsg-2_amd64.deb
 34a91e6d3b0dda2663437fbb74a7bafb 24430 php optional php5-sqlite_5.6.19+dfsg-2_amd64.deb
 02172ef19e154036b487d8ac45bf5764 24240 php optional php5-sybase_5.6.19+dfsg-2_amd64.deb
 332664f973253f7e13f9678266f684c1 16604 php optional php5-tidy_5.6.19+dfsg-2_amd64.deb
 7f6f51c98ed95420b8208218fc33dd07 35678 php optional php5-xmlrpc_5.6.19+dfsg-2_amd64.deb
 870bb372bc77dae643f828669a208299 13874 php optional php5-xsl_5.6.19+dfsg-2_amd64.deb
 e8cd93add39c2adeb419256c988736a9 1248 php optional php5_5.6.19+dfsg-2_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQJ8BAEBCgBmBQJW4w09XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzMEI5MzNEODBGQ0UzRDk4MUEyRDM4RkIw
Qzk5QjcwRUY0RkNCQjA3AAoJEAyZtw70/LsHligQAO8BtaxJscE5Yt+IFItF/PSv
L1f7iRR1opzCuDruCYgW5SaedkwbH3c3V5z4AB16a0BGox25Hi2j5zPsrnJHSK0q
ozSb74SUeBmnyTnuAl22wqkw2aTxTp0PIq2LkTPfpu2C9qVvCoGHrqGMo31QZXjd
LcB9J8Ti57xkHo0ktWCwWGb1HWEzdzh6tISjmQ3zavS9IQwYdX5A23z9A9LhXWFJ
KBGcvkQfMdO0eLkzHlXG1P5LRiTH1vxcQg1yiK/k/aNR94rOKPYfCsLUzdKbUtcA
ZpNQKAe8IlN6trYD93SdS/UcGHRjYhydgRY4fXlMk81xuMez2CHOcY5VVJ6KUUf9
U6Xdyz9XkvKWPi2vCLvK9AhTqISyhQvFD/0mG8/+zsnYphCLi3aurEpWyXE+L+rE
tB5LKAcvVnm4uwAirDCGsebNOydNYtRSUIn+UxAHCznhXwxsQ0DuXqjpbwFzO2yO
DpnIFVzBX9gSZJSV9GaDCCH5YqGtmYBhlciLJnzV7fSMWOdiukmrHgJdJ/GAS6tj
orQQmHfXN1QqPf+JOuubXRedEXMKAqB1rV8rnmhdIIflzi75LpuEx4yv8k9AdQdq
5PFuD3MXgRWaR3LDtm71mRFQ4oqyfpmVXtXRWF+RRthsOwJzfwKqj+HAF6T74Yob
2N1vf+OslzMJCHQZQeVA
=anvr
-----END PGP SIGNATURE-----




Bug archived. Request was from Debbugs Internal Request <owner@bugs.debian.org> to internal_control@bugs.debian.org. (Sun, 10 Apr 2016 07:31:32 GMT) (full text, mbox, link).


Send a report that this bug log contains spam.


Debian bug tracking system administrator <owner@bugs.debian.org>. Last modified: Sun Jul 2 03:32:03 2023; Machine Name: bembo

Debian Bug tracking system

Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.

Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.