Ajout du port

This commit is contained in:
Michael RICOIS 2012-01-27 16:17:23 +00:00
parent 1a787444c3
commit 5801065732
2 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,7 @@ class EnvoiController extends Zend_Controller_Action
//Récupérer les clients
$dbConfig = array(
'host' => MYSQL_HOST,
'port' => MYSQL_PORT,
'username' => MYSQL_USER,
'password' => MYSQL_PASS,
'dbname' => MYSQL_DEFAULT_DB,

View File

@ -1,7 +1,8 @@
<?php
// Base de données de S&D
define('MYSQL_HOST', '88.190.14.56:53336');
define('MYSQL_HOST', '88.190.14.56');
define('MYSQL_PORT', '53336');
define('MYSQL_USER', 'wsuser');
define('MYSQL_PASS', 'scores');
define('MYSQL_DEFAULT_DB', 'jo');