Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter jagsadmin

    (@jagsadmin)

    I 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!

    Thread Starter jagsadmin

    (@jagsadmin)

    have 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.

    Thread Starter jagsadmin

    (@jagsadmin)

    Dear 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>”);
    }
    ?>

    Thread Starter jagsadmin

    (@jagsadmin)

    Hi Clark,

    have modified the below mentioned options in php.ini file

    Uncommented the below mentioned params.
    extension=php_mysql.dll
    extension=php_pdo_mysql.dll

    configured the below params

    mysql.default_port = 3306
    mysql.default_socket =
    mysql.default_host = localhost
    mysql.default_user = root
    mysql.default_password = xxxxxxxx

    Any more suggestions are welcome!!!

    Thread Starter jagsadmin

    (@jagsadmin)

    Or 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.0

    Thread Starter jagsadmin

    (@jagsadmin)

    Thanks 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.

Viewing 6 replies - 1 through 6 (of 6 total)