How do I get PHP to work with ADOdb and MySQL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:41:50Zhttp://stackoverflow.com/feeds/question/155308http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155308/how-do-i-get-php-to-work-with-adodb-and-mysql0How do I get PHP to work with ADOdb and MySQL?Zack Peterson2008-09-30T22:04:35Z2009-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…</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…</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><?php
phpinfo();
?>
</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…</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#1553163Answer by Ólafur Waage for How do I get PHP to work with ADOdb and MySQL?Ólafur Waage2008-09-30T22:07:06Z2008-10-01T14:28:36Z<p>Check out phpinfo to see if the mysql functions are compiled with your PHP</p>
<pre><code><?php
phpinfo();
?>
</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#1553181Answer by Geoff for How do I get PHP to work with ADOdb and MySQL?Geoff2008-09-30T22:07:15Z2008-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#1579121Answer by James Marshall for How do I get PHP to work with ADOdb and MySQL?James Marshall2008-10-01T14:33:12Z2008-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#4435530Answer by Zack Peterson for How do I get PHP to work with ADOdb and MySQL?Zack Peterson2009-01-14T16:09:20Z2009-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>