Search code examples
phpwindowsopen-sourceroundcubemail-server

roundcube mssql setup


Installing roundcube webmail: I have the DB set up (win serv 2008, MS SQL 2008 - though even that was a battle!) i can navigate to the installer but when I go to set up everything there is no SQL Server option in the list of DBs?

Anyone got any idea what thats all about? I can see MySql, MySqli and PgSql but no MSSQL.


Solution

  • Make sure you've activated the MSSQL extension in your php.ini. I don't know this script, but often installers first detect which database extensions are available and let you only use these.

    So find your php.ini and search it for something like this:

    extension=msql.dll
    

    If you can't find the line, add it to the file (maybe restart your webserver) and try again.