How do I get PHP to work with ADOdb and MySQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:41:50Z http://stackoverflow.com/feeds/question/155308 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155308/how-do-i-get-php-to-work-with-adodb-and-mysql 0 How do I get PHP to work with ADOdb and MySQL? Zack Peterson 2008-09-30T22:04:35Z 2009-01-14T16:09:20Z <p>I'm trying to get a PHP site working in IIS on Windows Server with MySQL.</p> <p>I'm getting this error&hellip;</p> <p>Fatal error: Call to undefined function mysql_connect() in C:\inetpub...\adodb\drivers\adodb-mysql.inc.php on line 363</p> <p><hr /></p> <p>Update&hellip;</p> <p>This link outlines the steps I followed to install PHP on my server:<br /> <a href="http://stackoverflow.com/questions/11919/how-do-i-get-php-and-mysql-working-on-iis-70#94341">How do I get PHP and MySQL working on IIS 7.0 ?</a><br /> (note especially steps 6 and 8 regarting php.ini and php_mysql.dll).</p> <p>Only two lines in the phpinfo report reference SQL:</p> <pre><code>&lt;?php phpinfo(); ?&gt; </code></pre> <blockquote> <p>Configure Command:<br /> cscript /nologo configure.js "--enable-snapshot-build" "--enable-mysqlnd"</p> <p>sql.safe_mode:<br /> Local Value Off, Master Value Off</p> </blockquote> <p><img src="http://img79.imageshack.us/img79/2373/configurecommandmw8.gif" alt="PHP Configure Command" /></p> <p><img src="http://img49.imageshack.us/img49/3066/sqlsafemoderu6.gif" alt="PHP sql.safe_mode" /></p> <p><hr /></p> <p>Update&hellip;</p> <p>I found the solution: <a href="http://stackoverflow.com/questions/158279/how-do-i-install-mysql-modules-within-php#160746">How do I install MySQL modules within PHP?</a></p> http://stackoverflow.com/questions/155308/how-do-i-get-php-to-work-with-adodb-and-mysql/155316#155316 3 Answer by Ólafur Waage for How do I get PHP to work with ADOdb and MySQL? Ólafur Waage 2008-09-30T22:07:06Z 2008-10-01T14:28:36Z <p>Check out phpinfo to see if the mysql functions are compiled with your PHP</p> <pre><code>&lt;?php phpinfo(); ?&gt; </code></pre> <p>Since in some versions of php, its not default with the install.</p> <p><b>Edit for the Update:</b></p> <p>You should have a full MySQL category in your phpinfo();</p> <p>See this for example: <a href="https://secure18.easycgi.com/phpinfo.php" rel="nofollow">https://secure18.easycgi.com/phpinfo.php</a> (googled example)</p> http://stackoverflow.com/questions/155308/how-do-i-get-php-to-work-with-adodb-and-mysql/155318#155318 1 Answer by Geoff for How do I get PHP to work with ADOdb and MySQL? Geoff 2008-09-30T22:07:15Z 2008-09-30T22:07:15Z <p>It sounds like the version of PHP you are using has not been compiled with MySQL support, or has not been enabled in the php.ini.</p> http://stackoverflow.com/questions/155308/how-do-i-get-php-to-work-with-adodb-and-mysql/157912#157912 1 Answer by James Marshall for How do I get PHP to work with ADOdb and MySQL? James Marshall 2008-10-01T14:33:12Z 2008-10-01T14:33:12Z <p>Looks like you haven't got the MySQL PHP extensions installed! You shouldn't have to do any configuration other than installing the correct modules (and shouldn't be doing <em>anything</em> with ADODB).</p> <p>PHP comes in 2 versions as well - a CGI version and an ISAPI module. You're best using the ISAPI version with ISS and adding all the trimmings...</p> http://stackoverflow.com/questions/155308/how-do-i-get-php-to-work-with-adodb-and-mysql/443553#443553 0 Answer by Zack Peterson for How do I get PHP to work with ADOdb and MySQL? Zack Peterson 2009-01-14T16:09:20Z 2009-01-14T16:09:20Z <p>I found the solution: <a href="http://stackoverflow.com/questions/158279/how-do-i-install-mysql-modules-within-php#160746">How do I install MySQL modules within PHP?</a></p>