benn600 wrote:Something is absolutely not right because when I repaired PHP to add MySQL addons (which were installed already), it broke PHP. If the ini file location is missing or accurate, nothing shows up. If it is inaccurate, phpinfo works. But I still can't get mysql working in either case.
What's going on?!
As bpat pointed out you have no such file:
C:\php5\pear\SAM\php_sam.php
and this file is wanted by page:sam_factory
* php manual: CXL. SAM - Simple Asynchronous Messaging
Link: [man]sam[/man]
To see what php.ini file is in use, see phpinfo top section
Loaded Configuration File C:\php\php.ini
About MySQL.
In phpinfo() you should see if MySQL is loaded in the extension listing.
You have to Load the module in php.ini
Uncomment all extensions you want to use
;extension=php_ming.dll
;extension=php_msql.dll
;extension=php_mssql.dll
extension=php_mysql.dll
;extension=php_mysqli.dll
;extension=php_oci8.dll
Of course you have to have MySQL installed in your Windows first.
Otherwise the module wont work.
PS. I upgraded into my Win XP, from Apache 2.2.4 to Apache 2.2.6 some hours ago
and also to latest Firefox 2.0.0.8 (bugfixes).
Both operations was done without any problems.
🙂