619 |
killian |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
$prefixe_tables_wp = '';
|
|
|
4 |
// $wordpress_dir = '/home/telaprod/www/wordpress';
|
|
|
5 |
$wordpress_dir = '/var/www/wordpress';
|
|
|
6 |
|
|
|
7 |
function connexionSpip() {
|
|
|
8 |
// touche à ça
|
|
|
9 |
$hote = 'localhost';
|
|
|
10 |
$port = '3306';
|
|
|
11 |
$utilisateur = 'dbuser';
|
|
|
12 |
$mdp = '123';
|
|
|
13 |
// $base = 'tela_prod_spip_actu';
|
|
|
14 |
$base = 'dbname';
|
|
|
15 |
|
|
|
16 |
// touche pas à ça
|
|
|
17 |
$dsn = 'mysql:host=' . $hote . ';port=' . $port . ';dbname=' . $base;
|
|
|
18 |
|
|
|
19 |
return new PDO($dsn, $utilisateur, $mdp, array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
function connexionTelaProd() {
|
|
|
23 |
// touche à ça
|
|
|
24 |
$hote = 'localhost';
|
|
|
25 |
$port = '3306';
|
|
|
26 |
$utilisateur = 'dbuser';
|
|
|
27 |
$mdp = '123';
|
|
|
28 |
// $base = 'tela_prod_v4';
|
|
|
29 |
$base = 'dbname';
|
|
|
30 |
|
|
|
31 |
// touche pas à ça
|
|
|
32 |
$dsn = 'mysql:host=' . $hote . ';port=' . $port . ';dbname=' . $base;
|
|
|
33 |
|
|
|
34 |
return new PDO($dsn, $utilisateur, $mdp, array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
|
|
|
35 |
}
|
|
|
36 |
|
|
|
37 |
function connexionWordpress() {
|
|
|
38 |
// touche à ça
|
|
|
39 |
$hote = 'localhost';
|
|
|
40 |
$port = '3306';
|
|
|
41 |
$utilisateur = 'dbuser';
|
|
|
42 |
$mdp = '123';
|
|
|
43 |
// $base = 'wordpress';
|
|
|
44 |
$base = 'wordpress';
|
|
|
45 |
|
|
|
46 |
// touche pas à ça
|
|
|
47 |
$dsn = 'mysql:host=' . $hote . ';port=' . $port . ';dbname=' . $base;
|
|
|
48 |
|
|
|
49 |
return new PDO($dsn, $utilisateur, $mdp, array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
|
|
|
50 |
}
|