Instruct ICC wrote:
However, a web page that includes the same file with the
mssql_connect call still works fine, and now it makes sense that I
see mssql is still enabled in phpinfo.
The apache version of the php.ini file is different to the cli
version. Make sure you are looking at the right one.
On debian I have two separate directories for each config -
/etc/php5/apache2/ and /etc/php5/cli/
Try this:
php -i | grep 'php.ini'
from the command line to work out which php.ini to look at.
Both your command
php -i | grep 'php.ini'
and
find / -name php.ini 2>/dev/null
report the single /etc/php.ini
Hmm. do a php -i and look for:
Configuration File (php.ini) Path =>
That will tell you where it's looking for the file.
Maybe you need to create that file (or just symlink it to the other one).
--
Postgresql & php tutorials
http://www.designmagick.com/
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php