Changes between Version 3 and Version 4 of ice_messaging


Ignore:
Timestamp:
09/20/12 13:25:08 (12 years ago)
Author:
Nick Holden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ice_messaging

    v3 v4  
    1616}}}
    1717
     18This assumes the YourDatabaseKey connection has been defined in /sites/default/settings.php
    1819
    19 Connecting to a MS SQL Server is supposedly possible from a LAMP machine running drupal, but I don't think it will be easy. See:
     20The sqlsrv project provides a SQL server driver, but it only works on Windows servers. There's a fork of sqlsrv which uses dblib to work on linux: http://drupal.org/sandbox/rgeorgy/1775970
    2021
    21 http://davejamesmiller.com/blog/web-development/connecting-php-to-sql-server-on-debian-ubuntu
     22To run that, we need to 'sudo apt-get install php5-sybase git' then 'git clone http://git.drupal.org/sandbox/rgeorgy/1775970.git dblib_driver_for_sql_server'
    2223
    23 The sqlsrv project provides a SQL server driver, but it only works on Windows servers. There's a fork of sqlsrv which is supposed to work on linux: http://drupal.org/sandbox/rgeorgy/1775970
     24Then 'sudo drush dl datatables'. Then do the manual installation of DataTables jQuery plugin, rename the intermediate directory to 'dataTables' and then 'sudo drush en datatables'. That will enable the necessary additional prerequisites.
    2425
    25 Possibly an ODBC approach would work...
     26Then enable the dblib module and set up a link from /includes/database/dblib to the module's dblib directory.
    2627
    27 https://secure.kitserve.org.uk/content/accessing-microsoft-sql-server-php-ubuntu-using-pdo-odbc-and-freetds
     28Finally, enable the ice_messaging module. After that, everything should work.