jagsadmin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PHP 5.2 with MySQL 5.0 on IIS 6.0I have done this already, and after that have restarted the server as well. But till now it does not shows any special section for mysql in phpinfo page.
also the system path variables are also configured on its own while the setup was happening, i have checked that as well which is appearing like “C:\Program Files\PHP\;”, and found all OK.
You are requested to share any more clues if you have, it is really Appriciative quick response from your end.
Thanks!
Forum: Fixing WordPress
In reply to: PHP 5.2 with MySQL 5.0 on IIS 6.0have tried restarting of server as well after doing all the changes, but still no luck,
I am able to open the phpinfo page fine.
I DO NOT have file named as mysql.dll but i have files like php_mysql.dll, php_mysqli.dll, php_iisfunc.dll, libmysql.dll.
can you please tell me whether the php_mysql.dll needs to be registered manually >??
also, there is no special section for mysql in phpinfo file. It only has the path that we used/configure in Enviornment Variables.
Please help me, as i have spent lot of time on this and now i feel i am almost near to my goal.
Forum: Fixing WordPress
In reply to: PHP 5.2 with MySQL 5.0 on IIS 6.0Dear clark,
Do you have any test script through wich i can try the connectivity between PHP & mySQL?
as i have one as pasted below, but it is not working, also after making the above changes in php.ini file it gives the same result.
can you plz confirm whether the versions that i am using, has any deviations…
OR
Shoudl i eliminate the IIS completely from the process and try with apache web serevr on windows?, would this be feasible and advisable ????, Since my requirement is to work the wordpress on win2K3 box. I have tested the PHP working fine, have tsted mySQL working fine and IIS too as an stand alone applications. but they are not working togather.
PLEASE SUGGEST THE BEST ALTERNATIVE FOR THE SAME TO HAVE WORDPRESS WORKING ON WIN2K3 BOX WITH ALL ITS PRE-REQUISITES.
<?
//remember to change the password to whatever you set
//it to in mysql instance configuration//first parameter is server name, 2nd username ‘root’, 3rd is password
$rst = @mysql_connect(“127.0.0.1″,”root”,”xxxxxxxx”);if (!$rst){
echo( “<p>Unable to connect to database manager.</p>”);
die(‘Could not connect: ‘ . mysql_error());
exit();
} else {
echo(“<p>Successfully Connected to MySQL Database Manager!</p>”);
}if (! @mysql_select_db(“mysql”) ){
echo( “<p>Unable to connect database…</p>”);
exit();
} else {
echo(“<p>Successfully Connected to Database ‘MYSQL’!</p>”);
}
?>Forum: Fixing WordPress
In reply to: PHP 5.2 with MySQL 5.0 on IIS 6.0Hi Clark,
have modified the below mentioned options in php.ini file
Uncommented the below mentioned params.
extension=php_mysql.dll
extension=php_pdo_mysql.dllconfigured the below params
mysql.default_port = 3306
mysql.default_socket =
mysql.default_host = localhost
mysql.default_user = root
mysql.default_password = xxxxxxxxAny more suggestions are welcome!!!
Forum: Fixing WordPress
In reply to: PHP 5.2 with MySQL 5.0 on IIS 6.0Or is it that below config has only IIS is ODD MAN OUT
# Windows 2003Std. Edition with SP2
# IIS 6.0
# PHP 5.2.3
# MySQL 5.0Forum: Fixing WordPress
In reply to: PHP 5.2 with MySQL 5.0 on IIS 6.0Thanks for your speedy response!
I would like to know whether any changes needs to be made in php.ini file (eg. uncommenting any tages)for enabling mysql & IIS Or any additional drivers/apps reqruied to be installed on the server.