b4c9e13c13
ajout des fonctions dans SessionCiblage setCritere, etc..
34 lines
886 B
PHP
34 lines
886 B
PHP
<?php
|
|
|
|
define('MYSQL_HOST', '192.168.78.230');
|
|
define('MYSQL_USER', 'sphinx');
|
|
define('MYSQL_PASS', 'indexer');
|
|
define('MYSQL_DEFAULT_DB', 'jo');
|
|
|
|
Class ConfigurationGenerique
|
|
{
|
|
public static $debug = true;
|
|
public static $redevance_insee = 3.295;
|
|
public static $api = '2.0.2';
|
|
public function __construct(){set_limit(0);}
|
|
}
|
|
|
|
Class ConfigurationCiblage extends ConfigurationGenerique
|
|
{
|
|
public static $index = 'ciblage';
|
|
|
|
public static $nb_results = 5000;
|
|
public static $max_results = 500000;
|
|
|
|
public static $mysql_host = MYSQL_HOST;
|
|
public static $mysql_user = MYSQL_USER;
|
|
public static $mysql_password = MYSQL_PASS;
|
|
public static $mysql_database = MYSQL_DEFAULT_DB;
|
|
|
|
|
|
public static $sphinx_host = '192.168.78.252';
|
|
public static $sphinx_port = 3312;
|
|
public static $sphinx_match = SPH_MATCH_EXTENDED2;
|
|
public static $sphinx_sort = SPH_SORT_EXTENDED;
|
|
}
|