|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-04-06 07:11 UTC] developer at i-space dot org
i have a slackware server with apache 1.3.20 and mysql 3.23.39 with php 4.0.6 and it works perfect. but when i tried to install thew new version of php - 4.1.2 some problems ocurred. first of all it configures and compiles correct - with no errors. with phpinfo() everything is correct - it finds the mysql.sock file in the correct place - /tmp/mysql.sock as a link to var/run/mysql/mysql.sock. so with php4.0.6 mysql connections works fine but after upgrading to php4.1.2 can't connect anymore, dies with that error : Can't connect to local MySQL server through socket '/tmp/mysql.sock' (40) so i guess it's something different in the mysql support in the new php version but couldn't find anything related in the documentation. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 11:00:02 2025 UTC |
By configuring --with-mysql (without the path) you're using the bundled mysql libraries. Also, using some link in /tmp/ to point to the correct link is not very good idea. PHP configure searches for the link during configure time.. Just delete that link and reconfigure ('rm config.cache' first!) Make sure you have mysqld running before you configure PHP. This is not any bug.