Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

standard method of php connection on iis

  • 02-08-2015 8:38pm
    #1
    Registered Users, Registered Users 2 Posts: 4,081 ✭✭✭


    can someone clear up something for me.

    Developed an application in php mysql
    moving it to production server which is iis Mysql and php are running on IIS I cannot get php to connect to mysql.

    Is odbc_connect the standard method of connecting to a database using php on an iis server
    windows server 2008 r2
    IIS 7.5.7600
    php5

    mysql workbench 6.3
    MYSQL 5.6


Comments

  • Registered Users, Registered Users 2 Posts: 190 ✭✭NeutralHandle


    Did it connect to MySQL on the development machine? If so then probably either missing the driver on the server or something up with the connection string.

    Otherwise you could look at using Pdo or mysqli.


  • Registered Users, Registered Users 2 Posts: 4,081 ✭✭✭sheesh


    Did it connect to MySQL on the development machine? If so then probably either missing the driver on the server or something up with the connection string.

    Otherwise you could look at using Pdo or mysqli.

    yes it connected on the development machine (window 8) using mysqli on iis.
    Basically on the production machine(windows 2008) it is connecting to the database with odbc_connect but not mysqli_connect.


  • Registered Users, Registered Users 2 Posts: 190 ✭✭NeutralHandle


    In PHP 5.0 - 5.2 on Windows the mysqli extension is not enabled by default, so the php_mysqli.dll DLL must be enabled inside of php.ini

    details:

    http://php.net/manual/en/mysqli.installation.php


Advertisement