Hi guys. I'm getting the following warning after upgrading to php version 5.3.1 PHP Warning: mysql_connect(): Headers and client library minor version mismatch. Any idea what could be wrong? Thanks in advance
How did you upgrade and what platform are you running on? Most likely there is some dependency that was not properly installed or configured with the new setup.
Hi Do a <?php echo phpinfo(); ?> and scroll down to the MySQL Information. Client API library version Client API header version Make sure those two values match, or you will get a version mismatch. Try re-installing the MySQL PHP extension and try again. You may have upgraded PHP but still using the old MySQL extension from the previous install. Regards, Steve