Re: [PHP-DB] Yet another Call to Undefined Function help request

2008-12-09 Thread Alex Moen
OK, sounds good, what am I looking for? I don't see the module being declared in my php.ini file on either of my servers. Alex Fortuno, Adam wrote: Alex: It sounds like the MySQL extension module isn't loading. Here are some things to confirm: - Ensure the module is declared in your

Re: [PHP-DB] Yet another Call to Undefined Function help request

2008-12-09 Thread Bastien Koert
On Tue, Dec 9, 2008 at 10:33 AM, Alex Moen [EMAIL PROTECTED] wrote: OK, sounds good, what am I looking for? I don't see the module being declared in my php.ini file on either of my servers. Alex Fortuno, Adam wrote: Alex: It sounds like the MySQL extension module isn't loading. Here

Re: [PHP-DB] Yet another Call to Undefined Function help request

2008-12-09 Thread Alex Moen
GOT IT!!! Adam, thanks for the answer. It got me where I needed to be, and I now understand how this stuff works a little better. Here's the solution for future reference: The new server has a separate directory (/etc/php.d) that was referenced in the php.ini. (This server is running

Re: [PHP-DB] Yet another Call to Undefined Function help request

2008-12-09 Thread Chris
Then, I did a search for the mysql.so file, which turned out to be in the build/modules directory all by itself just waiting to be used, copied it to /usr/lib/apache/php/, restarted httpd, and voila, I now have a working implementation of php pulling data from a remote server. Did you run

Re: [PHP-DB] Yet another Call to Undefined Function help request

2008-12-09 Thread Alex Moen
Yes, I did run make install... I was kind of surprised that it didn't put that file somewhere. Alex Chris wrote: Then, I did a search for the mysql.so file, which turned out to be in the build/modules directory all by itself just waiting to be used, copied it to /usr/lib/apache/php/,