Hi,
is someone else testing PHP 7? I would like to confirm the following issue before reporting a bug to the PHP team.
I am not able to log in with any user account, when my host definition in config.inc.php is "localhost". No problem with 127.0.0.1. connect_type is "tcp".
And no problem with "localhost" under PHP 5.6.
Hi
Dne Mon, 10 Aug 2015 19:02:02 -0400 Marc Delisle marc@infomarc.info napsal(a):
is someone else testing PHP 7? I would like to confirm the following issue before reporting a bug to the PHP team.
I am not able to log in with any user account, when my host definition in config.inc.php is "localhost". No problem with 127.0.0.1. connect_type is "tcp".
Travis is running tests and they fail: https://travis-ci.org/phpmyadmin/phpmyadmin/jobs/75042019
Though I have no idea how much is that ours failure and how much of PHP...
Le 2015-08-11 03:24, Michal Čihař a écrit :
Hi
Dne Mon, 10 Aug 2015 19:02:02 -0400 Marc Delisle marc@infomarc.info napsal(a):
is someone else testing PHP 7? I would like to confirm the following issue before reporting a bug to the PHP team.
I am not able to log in with any user account, when my host definition in config.inc.php is "localhost". No problem with 127.0.0.1. connect_type is "tcp".
Travis is running tests and they fail: https://travis-ci.org/phpmyadmin/phpmyadmin/jobs/75042019
Though I have no idea how much is that ours failure and how much of PHP...
These are messages about a deprecated feature ("Methods with the same name as their class will not be constructors in a future version of PHP").
I had seen those from phpseclib in my own PHP 7 tests, see https://github.com/phpmyadmin/phpmyadmin/issues/11387 for a possible solution.
Le 2015-08-10 19:02, Marc Delisle a écrit :
Hi,
is someone else testing PHP 7? I would like to confirm the following issue before reporting a bug to the PHP team.
I am not able to log in with any user account, when my host definition in config.inc.php is "localhost". No problem with 127.0.0.1. connect_type is "tcp".
And no problem with "localhost" under PHP 5.6.
My problem was that mysqli.default_socket was not defined in php.ini. A socket connection is always attempted when host is "localhost".
Currently everything runs smoothly under PHP 7.0.0-beta3 but I continue my tests.