I am trying to configure MySQL to be used with PHP and Apache. But getting the following error. I am not sure what to do.

Fatal error: Call to undefined function mysql_connect()

Please explain what are steps to configure MySQL with PHP and Apache. What changes are required in the .ini and .dll files.

I am using the following versions:

  • Apache: 2.2.19
  • PHP: 5.3.8
  • MySQL: 5.5.15

I am using Windows machine.

link|improve this question

69% accept rate
feedback

5 Answers

In php.ini, uncomment the line: ;extension=php_mysql.dll

link|improve this answer
feedback

have you got install the mysql extension for php?

link|improve this answer
No I didn't install mysql extension for PHP. – iSumitG Aug 26 '11 at 16:03
you mean the DLL files in PHP extension directory? If yes then I have those DLL files. – iSumitG Aug 26 '11 at 16:04
does the phpinfo(); shows the mysql extension? – Flask Aug 26 '11 at 16:08
phpinfo() showing one table with heading mysqlnd. There is no other table related to MySQL – iSumitG Aug 26 '11 at 16:10
feedback

Perhaps not exactly the answer you're looking for but have you considered using XAMPP? It's an installer for that exact setup (apache + php + mysql).

http://www.apachefriends.org/en/xampp.html

link|improve this answer
Thanks for the comment. I have used XAMPP earlier but right now I want to use Apache only. – iSumitG Aug 26 '11 at 16:06
feedback

If you're using windows, I recommend using WAMP to set up your server - http://www.wampserver.com/en/.

Much quicker than fighting this kinda battle yourself.

FWIW, look in (I think) PHP.ini; there's a long list of libraries which are all commented out by default. MySQL support is one of them; uncomment, restart apache, try again. The names are fairly obvious, though from memory there are 2 MySQL ones.

link|improve this answer
feedback

I found this link with every explanation: http://www.artfulsoftware.com/php_mysql_win.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.