Hello!
I'm running FreeBSD 8.0, PHP 5.3.5 and MySQL 5.5.8. After upgrading PHP 5.3.3 to 5.3.5 and MySQL to the newest version I have discovered strange issues:
(^C - ctrl-c, which kills process)
It hangs, even when I run just "php -v".
After disabling MySQL module I get:
When I restart lighttpd, I get frozen php-cgi processes, which I must kill by "killall -9".
I have tried it with PHP 5.3.5 and 5.2.17, with same result. I have no clue how to solve it, I just know that it's caused by php-mysql module.
Thanks in advance.
I'm running FreeBSD 8.0, PHP 5.3.5 and MySQL 5.5.8. After upgrading PHP 5.3.3 to 5.3.5 and MySQL to the newest version I have discovered strange issues:
Code:
# cat /usr/local/etc/php/extensions.ini | grep mysql
extension=mysql.so
# php -v
PHP 5.3.5 with Suhosin-Patch (cli) (built: Jan 11 2011 17:56:21)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
^C
#
It hangs, even when I run just "php -v".
After disabling MySQL module I get:
Code:
# cat /usr/local/etc/php/extensions.ini | grep mysql
;extension=mysql.so
# php -v
PHP 5.3.5 with Suhosin-Patch (cli) (built: Jan 11 2011 17:56:21)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
#
I have tried it with PHP 5.3.5 and 5.2.17, with same result. I have no clue how to solve it, I just know that it's caused by php-mysql module.
Thanks in advance.