[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-18 Thread Ondřej Surý
> One problem with the solution you linked to is that it is extracting the gx_maxlifetime in seconds, then putting that in find's -cmin which expects minutes. Good catch. The code was there, but it got deleted accidentally. > What do you think about running this for each SAPI? I am still not sur

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-19 Thread Ondřej Surý
> 1. PROC_NAMES should be defined as proc_names or used as PROC_NAMES (inconsistent case) Good catch, fixed. > 2. printf "%s:%s:%s\n" "$save_path" "$gc_maxlifetime" has 2 arguments but the > definition takes 3, I would simplify it to this: echo "$save_path:$gc_maxlifetime" Good catch, fixed. >

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-19 Thread Ondřej Surý
> Issue on line 8: Missed this in all the cruft generated by "sh -x", and since the other output looked ok... Thanks for noticing that... Also thank you for the feedback, this was very valuable after all. I probably owe you an apology, so please accept my apology I should have been more calm fr

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-20 Thread Ondřej Surý
There's one more improvement the packages could do: Each SAPI could drop it's session snippet to /var/lib/php5/sapi/ and the sessionclean script would read those snippets and clean the directory according to really installed snippets. That would make the sessionclean script SAPI agnostic and coul

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-20 Thread Ondřej Surý
> Wouldn't /usr/lib/php5/sapi/ be a better location for scripts? Yup... -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1356113 Title: PHP5 session clean cron job causes OOM To manage notifications

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-20 Thread Ondřej Surý
Either ``` for sapi in /usr/lib/php5/sapi/*; do . $sapi ``` and have the /usr/lib/php5/sapi/ contain shell snippet with definitions or ``` cat /usr/lib/php5/sapi/* | while IFS=: read -r VAR1 VAR2 VAR3 VAR4; do ``` and keep the current format... -- You received this bug notification because

[Bug 1319595] Re: upstart script ignores some php-fpm.conf parameters, cannot be bypassed in preference of SystemV init script.

2014-08-05 Thread Ondřej Surý
> This causes several options from the config file to be ignored Well, I see only "error_log" being ignore in this case and not "several options". You should really fill this bug with upstream (in PHP bug tracker), since it's wrong behaviour on FPM side to ignore configuration settings. -- You

[Bug 1319595] Re: upstart script ignores some php-fpm.conf parameters, cannot be bypassed in preference of SystemV init script.

2014-08-06 Thread Ondřej Surý
Nope, the init script is correct. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1319595 Title: upstart script ignores some php-fpm.conf parameters, cannot be bypassed in preference of SystemV init

[Bug 1319595] Re: upstart script ignores some php-fpm.conf parameters, cannot be bypassed in preference of SystemV init script.

2014-08-06 Thread Ondřej Surý
I could probably prepare a patch, so --nodaemonize doesn't break logging, since this will break with Debian systemd as well. Whether it will be accepted by Ubuntu into trusty is up to Ubuntu maintainer. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscr

[Bug 1354069] Re: please merge php5 from debian

2014-08-11 Thread Ondřej Surý
My personal suggestion would be to stick with 5.5. in utopic. You can use master-5.5 branch for that. People can always use PPAs to update to 5.6 when it's ready (f.e. my ppa:ondrej/php5-5.6). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to U

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-13 Thread Ondřej Surý
As an *expert* you surely heard of "rm /etc/cron.d/php5" or even "sed -i -e "s/^/#/" /etc/cron.d/php5"... -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1356113 Title: PHP5 session clean cron job cau

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-13 Thread Ondřej Surý
Should I be in awe or what? You can improve things even when not using the argument from authority. My point is that the default cron job works and is perfectly safe for most deployments and it's documented in README.Debian that you need to tweak the session cleanup if you do modification to sessi

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-14 Thread Ondřej Surý
> I was just trying to make a point You did make a point, but totally different from the one intended. Also your proposed fix is incomplete... # sed -n -e 's/^[[:space:]]*session.save_handler[[:space:]]*=[[:space:]]*\([[:alnum:]]\+\).*$/\1/p' /etc/php5/fpm/php.ini # php5 -c /etc/php5/fpm/php.in

[Bug 1356113] Re: PHP5 session clean cron job causes OOM

2014-08-14 Thread Ondřej Surý
Try this updated script that now requires php5-cli to be installed: http://anonscm.debian.org/cgit/pkg-php/php.git/tree/debian/sessionclean -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1356113 Title

[Bug 1274698] Re: ondrej php5 is missing raring. This is a change in the last 24 hours

2014-01-30 Thread Ondřej Surý
First - this is not a place to report bugs in my PPAs. Second - the raring support has ended, and I am doing releases only for supported releases. ** Changed in: php5 (Ubuntu) Status: New => Invalid ** Changed in: php5 (Ubuntu) Assignee: (unassigned) => Ondřej Surý (ondrej) -

[Bug 1230917] Re: php5-fpm logrotate errors after package switched to upstart

2014-02-13 Thread Ondřej Surý
This should help: $ git diff HEAD~2 diff --git a/debian/php5-fpm.init b/debian/php5-fpm.init index b8b2fb3..13485ce 100644 --- a/debian/php5-fpm.init +++ b/debian/php5-fpm.init @@ -16,7 +16,7 @@ DESC="PHP5 FastCGI Process Manager" NAME=php5-fpm DAEMON=/usr/sbin/$NAME DAEMON_ARGS="--daemonize --

[Bug 1230917] Re: php5-fpm logrotate errors after package switched to upstart

2014-02-13 Thread Ondřej Surý
And this fix will be included in 5.5.9+dfsg-2 (and when Ubuntu people merge it to their own copies of src:php5). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1230917 Title: php5-fpm logrotate error

[Bug 1230917] Re: php5-fpm logrotate errors after package switched to upstart

2014-03-04 Thread Ondřej Surý
php5-5.4 from php5-oldstable doesn't have an upstart script, so this bug is not there. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1230917 Title: php5-fpm logrotate errors after package switched t

[Bug 1237343] Re: session.gc_maxlifetime ignored by garbage collector

2013-10-09 Thread Ondřej Surý
Not a bug. The session handling (and the reasons for it) is correctly described in (php5-common) README.Debian. ** Changed in: php5 (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.la

[Bug 1237343] Re: session.gc_maxlifetime ignored by garbage collector

2013-10-09 Thread Ondřej Surý
Please don't play BTS ping-pong. That's how the packaged PHP works. The session behaviour is described in README.Debian together with reasons and you always have an option to configure the default value in /etc/php5//php.ini or just configure it back on your local system (and disable the cron scrip

[Bug 665187] Re: ldns-keygen not working

2014-06-16 Thread Ondřej Surý
Bug for obsolete Ubuntu release 9.10, thus closing. ** Changed in: ldns (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/665187 Title: ldns-keygen not working T

[Bug 1044430] Re: Php ftp_* eats memory

2014-06-23 Thread Ondřej Surý
Ryan, I think that Clint was *being fair* since he has requested additional information from the reporter... > Can you provide more information on how you used xdebug to determine it was ftp_* causing your memory leaks? Also have you tried using gc_enable();gc_collect_cycles() in your code after d

[Bug 1294958] Re: php5 assert failure: libgcc_s.so.1 must be installed for pthread_cancel to work

2014-06-23 Thread Ondřej Surý
libgcc1 1:4.9-20140222-0ubuntu1 is installed on your system. In fact it could not be uninstalled since it's in libs/required and f.e apt depends on it. So I doubt that php5-cli I at fault and I am reassigning this to libc to check what might have caused this. If anything it went through libmysqlc

[Bug 1230917] Re: php5-fpm logrotate errors after package switched to upstart

2014-07-17 Thread Ondřej Surý
@voidburn Could you try kill -USR2 "$(cat /var/run/php-fpm.pid)" instead? I am not sure where the pid file is located in Ubuntu (it would be best to read the value from /etc/php5/fpm/php-fpm.conf)... -- You received this bug notification because you are a member of Ubuntu Bugs, which is subsc

[Bug 1230917] Re: php5-fpm logrotate errors after package switched to upstart

2014-07-17 Thread Ondřej Surý
Or even better: kill -USR2 "$(cat $(< /etc/php5/fpm/php-fpm.conf sed -ne 's/^pid = \(.*\)/\1/p'))" Just make sure the "pid =" is not commented out in /etc/phpt/fpm/php- fpm.conf... -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. http

[Bug 1310552] Re: could not extract the package.xml file from "/build/buildd/php5-5.5.9+dfsg/pear-build-download/packagename.tgz"

2014-07-22 Thread Ondřej Surý
*** This bug is a duplicate of bug 1315888 *** https://bugs.launchpad.net/bugs/1315888 ** This bug has been marked a duplicate of bug 1315888 Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist -- You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 1315888] Re: Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist

2014-07-22 Thread Ondřej Surý
This the patch[1], and please do S-P-U fast as this breaks many downstream packages. 1. http://anonscm.debian.org/cgit/pkg-php/php.git/tree/debian/patches /zlib-largefile-function-renaming.patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 1089982] Re: Dependency Problem php5-common (= 5.3.10-1ubuntu3)

2012-12-13 Thread Ondřej Surý
Add security also for universe, e.g. your apt sources list should have: deb http://security.ubuntu.com/ubuntu precise-security main restricted universe multiverse and not only deb http://security.ubuntu.com/ubuntu precise-security main restricted O. ** Changed in: php5 (Ubuntu) Status:

[Bug 1090255] Re: Missing mysqlnd_ms package

2012-12-14 Thread Ondřej Surý
mysql_ms is a PECL extension and not included in a standard php5 distribution (http://php.net/manual/en/mysqlnd-ms.installation.php). Marking as invalid. Please read how to request new packages (preferably use the through-the- Debian way): https://wiki.ubuntu.com/UbuntuDevelopment/NewPackages **

[Bug 1090992] Re: Strict Standards: Redefining already defined constructor for class HTML_CSS in /usr/share/php/HTML/CSS.php on line 306

2012-12-16 Thread Ondřej Surý
There's no HTML_CSS pear package, so you need to fill the bug directly with upstream at pear.php.net. ** Changed in: php5 (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.ne

[Bug 1131463] Re: php ldap 5.3 in ubuntu 12.04 LTS does not support pagination

2013-02-22 Thread Ondřej Surý
I suggest to use my PHP5 PPA for latest PHP releases. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1131463 Title: php ldap 5.3 in ubuntu 12.04 LTS does not support pagination To manage notificatio

[Bug 1093428] Re: Cron job reports unable to load pdo_mysql.so

2013-01-21 Thread Ondřej Surý
The referrenced bug suggested that you have php binary installed in your system elsewhere which is causing a clash of symbols between the packaged version and the custom version you probably installed from sources (or from dotdeb or from some other place in the universe). I don't think there's a b

[Bug 1102366] Re: libapache2-mod-php5: Segmentation fault on mediawiki POST requests after apache2 reload

2013-01-22 Thread Ondřej Surý
Your claim isn't based on reality, please go read the changelogs and at least get a basic understanding of Debian/Ubuntu versioning schema before you make a bold claims without actually testing anything next time. -- You received this bug notification because you are a member of Ubuntu Bugs, whic

[Bug 1120359] Re: php5-dev version does not match php5 version

2013-02-09 Thread Ondřej Surý
It's your system which is in broken state and not the php5 package which have the dependencies right. ** Changed in: php5 (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.ne

[Bug 825872] Re: FTBFS with newer versions of heimdal

2011-09-26 Thread Ondřej Surý
Hmm, many thanks for "contributing" this patch back to Debian :-/ -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/825872 Title: FTBFS with newer versions of heimdal To manage notifications about this

[Bug 811273] Re: FTBFS due to libpng (and lesser libjpeg)

2011-08-19 Thread Ondřej Surý
Michael, the 5.3.7 should be OK. The upstream has changed the .m4 macros to check just for headers. O. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/811273 Title: FTBFS due to libpng (and lesser l

[Bug 1069138] Re: After upgrading to 12.10 I can't install PHP 5.3

2012-10-22 Thread Ondřej Surý
The distributions (Ubuntu and Debian) provide only the latest upstream release. You should upgrade to PHP 5.4, or you will have to compiled PHP from sources if you want to use 5.3.x version (which is being phased out by upstream). This is actually not a bug, but a request for a feature which is no

[Bug 1007546] Re: package kate-syntax-go (not installed) failed to install/upgrade: trying to overwrite '/usr/share/kde4/apps/katepart/syntax/go.xml', which is also in package kate-data 4:4.8.2-0ubunt

2012-06-01 Thread Ondřej Surý
*** This bug is a duplicate of bug 968734 *** https://bugs.launchpad.net/bugs/968734 Really that hard to check for duplicate report? ** This bug has been marked a duplicate of bug 968734 package kate-syntax-go (not installed) failed to install/upgrade: »/usr/share/kde4/apps/katepart/synta

[Bug 991849] Re: package php5-cli 5.3.10-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2012-05-02 Thread Ondřej Surý
** Package changed: php5 (Ubuntu) => debconf (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/991849 Title: package php5-cli 5.3.10-1ubuntu3 failed to install/upgrade: ErrorMessage: subproce

[Bug 1006738] Re: php5-fpm segfaults with error 4 in libc-2.15.so

2012-08-06 Thread Ondřej Surý
Better would be to pull 5.4.4-4 which already includes more complete fix from upstream git. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1006738 Title: php5-fpm segfaults with error 4 in libc-2.15.

[Bug 948156] Re: Please merge PHP 5.4 from Debian

2012-08-06 Thread Ondřej Surý
PHP 5.4 changes API, so a PHP backport would need to also to backport all it's rev-deps and this is quite a major task. I don't think it's feasible to officially maintain such a huge backport (the other thing is my PPA which includes PHP 5.4 backport including some of it's reverse dependencies peo

[Bug 948156] Re: Please merge PHP 5.4 from Debian

2012-08-09 Thread Ondřej Surý
http://wiki.debian.org/PHP/54Transition -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948156 Title: Please merge PHP 5.4 from Debian To manage notifications about this bug go to: https://bugs.launc

[Bug 1046330] Re: Incorrect crypt() function behavior

2012-09-09 Thread Ondřej Surý
As a temporary workaround, you can just strip salt to 9 characters. The fix is fairly simple, and I'll prepare a patch later today. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1046330 Title: Incor

[Bug 948156] Re: Please merge PHP 5.4 from Debian

2012-08-28 Thread Ondřej Surý
@Leo: No, and although I am not a Ubuntu PHP maintainer I have already explained why this won't happen in precise. API and ABI changes are quite major to _just_ backport package like that. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu

[Bug 1024355] Re: package php5-mysqlnd 5.4.4-1ubuntu1 failed to install/upgrade: subprocess post-installation script returned error exit status 4

2012-07-20 Thread Ondřej Surý
Ok, fixed now, and I have asked for unblock, so it will hit the testing hopefully soon. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1024355 Title: package php5-mysqlnd 5.4.4-1ubuntu1 failed to ins

[Bug 1024355] Re: package php5-mysqlnd 5.4.4-1ubuntu1 failed to install/upgrade: subprocess post-installation script returned error exit status 4

2012-07-20 Thread Ondřej Surý
Just a note - my comment about being fixed applies to Debian 5.4.4-3 version and was mainly directed at Clint. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1024355 Title: package php5-mysqlnd 5.4.4

[Bug 1024355] Re: package php5-mysqlnd 5.4.4-1ubuntu1 failed to install/upgrade: subprocess post-installation script returned error exit status 4

2012-07-20 Thread Ondřej Surý
** Changed in: php5 (Ubuntu) Status: Fix Committed => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1024355 Title: package php5-mysqlnd 5.4.4-1ubuntu1 failed to install/upgrade: s

[Bug 1024355] Re: package php5-mysqlnd 5.4.4-1ubuntu1 failed to install/upgrade: subprocess post-installation script returned error exit status 4

2012-07-14 Thread Ondřej Surý
It's not fixed yet, because I am not sure how to fix this and keep my sanity :). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1024355 Title: package php5-mysqlnd 5.4.4-1ubuntu1 failed to install/up

[Bug 1014044] Re: PHP5-FPM not reporting errors to web server (nginx)

2012-06-19 Thread Ondřej Surý
** Bug watch added: Debian Bug tracker #677994 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677994 ** Also affects: php5 (Debian) via http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677994 Importance: Unknown Status: Unknown -- You received this bug notification because you

[Bug 1004891] Re: package kate-syntax-go not installed failed to install/upgrade: trying to overwrite /usr/share/kde4/apps/katepart/syntax/go.xml , which is also in package kate-data 4:4.8.3-0ubuntu1

2012-05-26 Thread Ondřej Surý
*** This bug is a duplicate of bug 968734 *** https://bugs.launchpad.net/bugs/968734 ** This bug has been marked a duplicate of bug 968734 package kate-syntax-go (not installed) failed to install/upgrade: »/usr/share/kde4/apps/katepart/syntax/go.xml« is already in kate-data 4:4.8.1-0ubunt

[Bug 1162999] Re: PHP should be updated in 12.04.1 LTS, as 5.3.10 has a regression

2013-04-01 Thread Ondřej Surý
The update policy doesn't allow that. However either you can upgrade to newest PHP using PPA (ppa:ondrej/php5) or that individual fix for this bug can be backported if severity is high enough. Usually it needs to be security bug or the impact has to be quite big. -- You received this bug notifica

[Bug 418220] Re: apache2 crashed with SIGSEGV in pdo_parse_params()

2013-03-29 Thread Ondřej Surý
It's not related to the Debian bug mentioned. See the reporter's comment below. ** Changed in: php5 (Debian) Importance: Unknown => Undecided ** Changed in: php5 (Debian) Status: Fix Released => New ** Changed in: php5 (Debian) Remote watch: Debian Bug tracker #402181 => None -- Yo

[Bug 1177672] Re: php5-gd not supported image/x-ms-bmp

2013-05-10 Thread Ondřej Surý
AFAIRemember (can't check right now) the exteenal GD 2.0.x doesn't have support for wbmp. Thus not a bug, but feature request that can only be solved with GD 2.1 and PHP 5.5. But I might be wrong, check ext/gd/gd.c in !GD_BUNDLED part. -- You received this bug notification because you are a memb

[Bug 1177672] Re: php5-gd not supported image/x-ms-bmp

2013-05-10 Thread Ondřej Surý
AFAIRemember (can't check right now) the exteenal GD 2.0.x doesn't have support for wbmp. Thus not a bug, but feature request that can only be solved with GD 2.1 and PHP 5.5. But I might be wrong, check ext/gd/gd.c in !GD_BUNDLED part. -- You received this bug notification because you are a memb

[Bug 1178838] Re: Update to 5.3

2013-05-10 Thread Ondřej Surý
See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=658829 There are rumours about db 6 release soon...ish. Also db migrations are really not easy, so I wouldn't rush it. Could you please describe your motivation to bump minor db version? ** Bug watch added: Debian Bug tracker #658829 http:

[Bug 1178838] Re: Update to 5.3

2013-05-11 Thread Ondřej Surý
Then don't do the transition (yet). Upgrading to latest Berkeley DB just for the sake of upgrading is really horrible idea. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178838 Title: Update to 5.3

[Bug 1167394] Re: segfaults with php-fpm and current php5-memcached

2013-05-11 Thread Ondřej Surý
** Package changed: php5 (Ubuntu) => php-memcached (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1167394 Title: segfaults with php-fpm and current php5-memcached To manage notifications ab

[Bug 1000716] Re: Package phpapi-20090626 Missing LTS 12.0

2012-05-17 Thread Ondřej Surý
There seems to be some general problem with your system, since both php5 post-inst scripts segfaulted (exit status 139): > dpkg: error processing php5-fpm (--configure): > subprocess installed post-installation script returned error exit status 139 > Setting up libapache2-mod-php5 (5.3.10-1ubuntu

[Bug 1076489] Re: Cannot be uninstalled without installing Apache2

2012-11-09 Thread Ondřej Surý
Just also uninstall php5 package, so it doesn't pull libapache2-mod-php5 as default dependency. ** Changed in: php5 (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.n

[Bug 1076489] Re: Cannot be uninstalled without installing Apache2

2012-11-10 Thread Ondřej Surý
You seem to mix PHP 5 (as in the interpreter) and php5 meta-package. It would be nice to at least read the description of the packages you are reporting bugs to: --cut here-- Description: server-side, HTML-embedded scripting language (metapackage) This package is a metapackage that, when install

[Bug 876387] Re: fuser forking uncontrollably in cron job

2012-11-13 Thread Ondřej Surý
> Me too. If you really feel the urge to write "Me too." (instead of just clicking at the top of the page), please at least provide some useful information. The version of Ubuntu, it's architecture, version of PHP 5 packages (php5-common should suffice) and version of psmisc package. -- You rec

[Bug 876387] Re: fuser forking uncontrollably in cron job

2012-11-29 Thread Ondřej Surý
This modification to cron job has been uploaded as php5 5.4.9-2~+1 into my PHP5 PPA. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/876387 Title: fuser forking uncontrollably in cron job To manage n

[Bug 1083513] Re: installation IDN on PECL at PHP > 5.3 fails

2012-11-29 Thread Ondřej Surý
> error: /tmp/pear/temp/idn/idn.c:221:1 error: unknown type name 'function_entry' That's a problem with IDN module, not with PHP. It has to be updated to use new function. P.S.: Don't use caps, it's considered rude. ** Changed in: php5 (Ubuntu) Status: New => Invalid -- You received thi

[Bug 1083513] Re: installation IDN on PECL at PHP > 5.3 fails

2012-11-29 Thread Ondřej Surý
P.S.: You need to change "function_entry" to "zend_function_entry" and each "pval" to "zval". -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1083513 Title: installation IDN on PECL at PHP > 5.3 fails

[Bug 1086328] Re: package php5-common 5.4.6-1ubuntu1.1 failed to install/upgrade: package php5-common is already installed and configured

2012-12-04 Thread Ondřej Surý
Not a bug in php5, your dpkg database looks broken. ** Package changed: php5 (Ubuntu) => dpkg (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1086328 Title: package php5-common 5.4.6-1ubuntu

[Bug 876387] Re: fuser forking uncontrollably in cron job

2012-11-27 Thread Ondřej Surý
Ben, could you try replacing the standard cron-job with this script: -- cut here -- #!/bin/sh # first find all used files and touch them (hope it's not massive amount of files) lsof -w -l +d /var/lib/php5 | awk -e '{ if (NR > 1) { print $9; } }' | xargs -i touch -c {} # find all files older th

[Bug 948156] Re: Include PHP 5.4 to Ubuntu 12.04 release

2012-03-07 Thread Ondřej Surý
Clint, I have already PHP 5.4 built for lucid to oneiric in my PPA and people are already using it (I have already received some bug reports). I think that the biggest obstacle is changed API/ABI and need to do the transition for packages which build binary modules (/usr/lib/php5//.so). -- You r

[Bug 929387] Re: [needs-packaging] php lucid packages need update to 5.3.10 on lucid

2012-02-24 Thread Ondřej Surý
You can follow my PPA: https://launchpad.net/~ondrej/+archive/php5 But you can expect other kind of breakages there (since I'll be uploading php 5.4 there shortly as it hits Debian unstable). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ub

[Bug 910296] Re: Please backport the upstream patch to prevent attacks based on hash collisions

2012-02-06 Thread Ondřej Surý
Why not cherry-pick from Debian? (That way you can also check if I haven't missed anything on your radar.) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to the bug report. https://bugs.launchpad.net/bugs/910296 Title: Please backport the ups

[Bug 900620] Re: Possible Bug: php5-fpm does not listen on a socket by default

2012-02-07 Thread Ondřej Surý
Not sure if easier (you need to check permissions, etc.), but I have merged the patch into upcomming PHP 5.4. We haven't shipped php5-fpm to stable yet, so I don't really have to care for backwards compatibility - although I have added records into NEWS file - feel free to cherry-pick. -- You rec

[Bug 908154] Re: PHP session garbage collection measured in minutes instead of seconds

2012-02-08 Thread Ondřej Surý
It's not really a bug in PHP5, but a feature in psmisc package before 22.15 (see related Debian bug). You can pick new psmisc[*] from my PPA: https://launchpad.net/~ondrej/+archive/php5 and report back here. (Be aware to not install 5.3.10-1 unless you really want to.) * - It was uploaded just no

[Bug 312493] Re: Not possible to run PHP in a multiuser and secure way

2012-02-08 Thread Ondřej Surý
php5-fpm (and others listed in my previous comment) pretty much solves this bug. ** Changed in: php5 (Ubuntu) Status: Triaged => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/3124

[Bug 916065] Re: php5 sessionmanagement ignores values in custom ini files

2012-02-08 Thread Ondřej Surý
Slightly better patch now in debian git. Scans all relevant SAPI's configurations and if not found (or php5 not installed), it will scan /etc/php5/*/php.ini and /etc/php5/conf.d/*.ini ** Patch added: "0001-Improve-maxlifetime-script-to-scan-for-more-SAPIs-an.patch" https://bugs.launchpad.net

[Bug 876387] Re: fuser forking uncontrollably in cron job

2012-02-08 Thread Ondřej Surý
Could you try installing psmisc (just psmisc, there's also latest php5) from https://launchpad.net/~ondrej/+archive/php5? This should fix the fork()ing of fuser. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.ne

[Bug 423071] Re: PHP5 now depends on libapache2-mod-php5 even if lighttpd installed

2012-02-08 Thread Ondřej Surý
No problem in php5, seems like apt is chosing wrong packages. ** Package changed: php5 (Ubuntu) => apt (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/423071 Title: PHP5 now depends on libap

[Bug 794820] Re: package libapache2-mod-php5 5.3.2-1ubuntu4.9 failed to install/upgrade:, Curses lost keyboard; Command line distro upgrade -> via Putty -> SSH -> Screen

2012-02-08 Thread Ondřej Surý
You just need to do: sudo dpkg-reconfigure -plow debconf It's not a bug in PHP5 package (it uses standard debconf interface), so I am reassigning to debconf (where it could be probably closed as workaround for broken terminals exists). ** Package changed: php5 (Ubuntu) => debconf (Ubuntu) -- Y

[Bug 930115] Re: php5 5.3.2-1ubuntu4.13 introduced regression

2012-02-10 Thread Ondřej Surý
Forwarded to https://bugs.php.net/bug.php?id=61043 with patch. (Fortunatelly it's the Ubuntu today which needs to bite the bullet, since I haven't uploaded Debian security update yet. ;) I am building Debian package with updated patch and will report back. Thanks for the test script. ** Bug watc

[Bug 930115] Re: php5 5.3.2-1ubuntu4.13 introduced regression in magic_quotes_gpc

2012-02-10 Thread Ondřej Surý
The patch attached to PHP bug report fixes your problem: root@howl:/tmp# /tmp/buildd/php5-5.3.3/cgi-build/sapi/cli/php -c /tmp/php.ini -r 'var_dump(ini_get("magic_quotes_gpc"));' string(1) "1" root@howl:/tmp# grep ^magic_quotes_gpc /tmp/php.ini magic_quotes_gpc = On root@howl:/tmp# /tmp/buildd

[Bug 950525] Re: Packages Missing in both php5 and php5.3 folders since March 6th

2012-03-08 Thread Ondřej Surý
Hi Hone, could you please explain what do you mean? O. ** Changed in: php5 (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/950525 Title: Packages Missing i

[Bug 948156] Re: Include PHP 5.4 to Ubuntu 12.04 release

2012-03-09 Thread Ondřej Surý
Updated. It would be nice if somebody could try to recompile all reverse Build- depends in Ubuntu (and start pulling fixes from Debian + upstream). I will not have a time for that in next week or two. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscr

[Bug 875262] Re: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20090626+lfs/sqlite.so'

2012-03-10 Thread Ondřej Surý
Just a note: php 5.4 has dropped [ -x ... ] and also has a new module manager. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/875262 Title: PHP Startup: Unable to load dynamic library '/usr/lib/ph

[Bug 934704] Re: php5 apache cannot use $_post read data

2012-02-19 Thread Ondřej Surý
Hi Annop, please read the PHP manual before you start filling bugs: http://php.net/manual/en/language.variables.superglobals.php It's $_POST and you DON'T want to enable register_globals. Never ever! register_globals is deprecated and does something different: http://cz2.php.net/manual/en/secu

[Bug 876387] Re: fuser forking uncontrollably in cron job

2012-02-20 Thread Ondřej Surý
crone, there is psmisc 22.15-2~+1 in the PHP5 PPA which I have asked to test. Hence your testing just confirms what we already know. The bug was fixed in psmisc 22.15. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launch

[Bug 942004] Re: godoc doesn't work

2012-02-27 Thread Ondřej Surý
Do you have golang-doc installed? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/942004 Title: godoc doesn't work To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+sou

[Bug 942004] Re: godoc doesn't work

2012-02-27 Thread Ondřej Surý
Ok, thanks for feedback, I'll check what had happened in next review of golang packages in Debian, this will get hopefully pulled by Ubuntu in time. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/942004

[Bug 1189755] Re: package php5-ldap 5.4.6-1ubuntu1.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-06-11 Thread Ondřej Surý
> I suspect a rpm missconfig, maybe the ldap-module won't fit? I more suspect you have mangled with /etc/php5/conf.d files: Please do: ls -l /etc/php5/conf.d and paste the output here. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu

[Bug 1189755] Re: package php5-ldap 5.4.6-1ubuntu1.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-06-11 Thread Ondřej Surý
There should be a link for 20-ldap.ini. imagick and mcrypt might have not been updated to use the new helper scripts. Anyway I have updated the php5enmod script to not fail so hard on such occasions in the Debian package, so Ubuntu packagers might want to cherry-pick the change (when I confirm th

[Bug 1189755] Re: package php5-ldap 5.4.6-1ubuntu1.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-06-11 Thread Ondřej Surý
Here's the commit to cherry-pick : http://anonscm.debian.org/gitweb/?p=pkg-php/php.git;a=commit;h=82c9703c00dc864c1fb903b52cf8c3435577297d -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1189755 Title:

[Bug 1178838] Re: Update to 5.3

2013-06-11 Thread Ondřej Surý
Already packaged: http://ftp-master.debian.org/new/db6.0_6.0.19-1.html Anyway I still think the transitition to 6.0 is a post-saucy material as the Berkeley DB transitions tend to break a lot of stuff. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscr

[Bug 1177684] Re: php5-gd doesn't close /proc/NN/auxv - leaks FDs?

2013-06-11 Thread Ondřej Surý
*** This bug is a duplicate of bug 1189939 *** https://bugs.launchpad.net/bugs/1189939 ** Package changed: php5 (Ubuntu) => libjpeg-turbo (Ubuntu) ** This bug has been marked a duplicate of bug 1189939 Initialization leaks file descriptors to /prox/self/auxv -- You received this bug noti

[Bug 1189939] Re: Initialization leaks file descriptors to /prox/self/auxv

2013-06-11 Thread Ondřej Surý
** Also affects: php5 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1189939 Title: Initialization leaks file descriptors to /prox/self/auxv To m

[Bug 116800] Re: php5-mcrypt has vanished from the repositories

2013-06-03 Thread Ondřej Surý
> Several versions of ubuntu (current saucy) does not contain php5-mcrypt library. What are you talking about: http://packages.ubuntu.com/php5-mcrypt > Why, can't install phpmyadmin and other CMS that require it? PEBKAC? Reading the documentation before filling/commenting on bug might help... h

[Bug 1188070] Re: php5-gd: /usr/lib/php5/20100525/gd.so: undefined symbol: gdGetC in Unknown on line 0

2013-06-06 Thread Ondřej Surý
Either the php5_5.4.x/ext/gd/ module needs some patching to be used with gd 2.1.0 (because it uses some internal symbols from libgd), or just bump the php5 version to 5.5.0~rc2 which already have the support for GD 2.1.0. O. -- You received this bug notification because you are a member of Ubunt

[Bug 1183338] Re: Crypt Blowfish only returns salt

2013-05-23 Thread Ondřej Surý
Yes, PHP up to and including 5.4 (the patch hasn't been ported to 5.5 yet) is using system implementation of available ciphers. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1183338 Title: Crypt Blo

[Bug 1184000] Re: package php5-mysql 5.4.6-1ubuntu1.2 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 2

2013-05-25 Thread Ondřej Surý
Hmm, you are not ought to delete those files, but rather use php5dismod to disable the module. Anyway the script probably should not fail, when the file is not there. You can issue "touch /etc/php5/mods- available/.ini" as temporary workaround. -- You received this bug notification because you

[Bug 1056072] Re: php5-dev missing mysqlnd header files

2013-08-05 Thread Ondřej Surý
This will be fixed in next upload of PHP 5.5 to Debian unstable. I am just working on an optimal fix. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1056072 Title: php5-dev missing mysqlnd header fil

[Bug 1056072] Re: php5-dev missing mysqlnd header files

2013-08-06 Thread Ondřej Surý
No problem, it has been on my TODO list to get it fixed after php5 transition to Debian testing. For Ubuntu I guess that it will be in saucy. (Or you can use my PPAs to get newest PHP 5.4 / PHP 5.5 version - see my launchpad page or debphp.org). -- You received this bug notification because you

[Bug 878825] Re: Go.xml file already included into the kate-data package

2011-12-05 Thread Ondřej Surý
Reassigning to kate-data, it needs to be fixed there, since Ubuntu unsynced go.xml removal from kdelibs5-data. ** Bug watch added: Debian Bug tracker #628161 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628161 ** Also affects: kde4libs (Debian) via http://bugs.debian.org/cgi-bin/bugrepo

[Bug 826832] Re: package kate-syntax-go (not installed) failed to install/upgrade: trying to overwrite '/usr/share/kde4/apps/katepart/syntax/go.xml', which is also in package kate-data 4:4.7.0-0ubuntu

2011-12-05 Thread Ondřej Surý
*** This bug is a duplicate of bug 878825 *** https://bugs.launchpad.net/bugs/878825 ** Bug watch added: Debian Bug tracker #628161 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628161 ** Also affects: golang (Debian) via http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628161 Imp

[Bug 896971] Re: Please sync golang 1:60.3 (universe) from Debian unstable (main)

2011-11-28 Thread Ondřej Surý
Fixed in Debian unstable. Missed the announce email for 60.3 release. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/896971 Title: Please sync golang 1:60.3 (universe) from Debian unstable (main) To

<    1   2   3   4   5   6   >