aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/chloe/config/connect.php
blob: 18b09330042a6945fb0f1eef04d5a554b021a56f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
if (!defined("_ECRIRE_INC_VERSION")) return;
define('_MYSQL_SET_SQL_MODE',true);
$GLOBALS['spip_connect_version'] = 0.7;
spip_connect_db(
  getenv("SPIP_MYSQL_HOST"),
  getenv("SPIP_MYSQL_PORT"),
  getenv("SPIP_MYSQL_USER"),
  getenv("SPIP_MYSQL_PASSWORD"),
  getenv("SPIP_MYSQL_DB"),
  'mysql',
  'spip',
  'ldap.php'
);
?>