About 1,100,000 results
Open links in new tab
  1. MySQL php can't connect to localhost, 127.0.0.1 working

    Looks like you might have created the user which is bound with 127.0.0.1. Try one thing create another user like this in mysql. create user 'my_user'@'localhost' identified by 'mypassword'; and grant same …

  2. php fpm - How to install php-mysql, php-gd and other libraries on ...

    Jul 2, 2024 · I am trying to install following libraries on Oracle Linux 8 but not working. On Debian 11 after installing php8.1-fpm I run following command and it works. sudo apt install php8.1-mysql …

  3. MySQL :: MySQL Forums

    Oct 25, 2025 · The world's most popular open source database MySQL.com Downloads Documentation Developer Zone Forums Bugs Worklog Labs Planet MySQL News and Events Community

  4. Connecting to MySQL from PHP is extremely slow - Server Fault

    Jul 17, 2012 · The issue must be PHP's connection to MySQL - that's as far as I've been able to reason. I can find tons of stuff about PHP being slow or MySQL being slow, but nothing about PHP+MySQL …

  5. MySQL :: TLS 1.2 with php/mysqli

    Feb 23, 2017 · What configuration is required for the PHP/mysqli connector to create a SSL connection with the TLSv1.2 protocol to a MySQL server? For example, in the following PHP script, we create a …

  6. php - mysql_connect (): The server requested authentication method ...

    May 2, 2012 · I'm trying to run PHP 5.4.1 ( compiled from source ) but when i try to connect on mysql i get: Warning: mysql_connect(): The server requested authentication method unknown to the client [

  7. MySQL :: Announcing January 2025 Releases featuring MySQL Server …

    Jan 22, 2025 · MySQL NDB Cluster is the distributed, shared-nothing variant of MySQL. MySQL Server 9.2.0 and MySQL NDB Cluster 9.2.0 are Innovation releases, which means it will have new features, …

  8. MySQL :: Re: Fatal error: Uncaught Error: Call to undefined function ...

    Feb 12, 2016 · A call to phpinfo () will show you a lot of information, including the location of your php.ini file (or, at least where it's looking for one), and also it lists all enabled extensions. php_mysql.dll is …

  9. Where can I get php_mysql.dll for Windows? - Server Fault

    Also, search for the line ;extension=php_mysql.dll and uncomment it to enable the extension. Lastly, the file libmysql.dll should be available to the Windows system PATH. The easiest way to accomplish …

  10. php - MySQL cannot connect via "localhost", only 127.0.0.1 - Server Fault

    31 MySQL will try to connect to the unix socket if you tell it to connect to "localhost". If you tell it to connect to 127.0.0.1 you are forcing it to connect to the network socket. So probably you have …