Subversion Repositories Applications.papyrus

Rev

Rev 782 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
754 ddelon 1
<?php
832 florian 2
// pap_config.inc.php construit le Thu Mar 16 16:20:56 2006
754 ddelon 3
// ne changez pas la version de Papyrus manuellement!
4
 
5
define('PAP_VERSION','0.21');
6
 
7
define('PAP_BDD_SERVEUR','localhost');
8
 
9
define('PAP_BDD_NOM','papyrus');
10
 
11
define('PAP_BDD_UTILISATEUR','root');
12
 
832 florian 13
define('PAP_BDD_MOT_DE_PASSE','fs1980');
754 ddelon 14
 
15
define('PAP_DSN', 'mysql://'.PAP_BDD_UTILISATEUR.':'.PAP_BDD_MOT_DE_PASSE.'@'.PAP_BDD_SERVEUR.'/'.PAP_BDD_NOM);
16
 
17
define('PAP_FTP_SERVEUR','localhost');
18
 
19
define('PAP_FTP_PORT','21');
20
 
775 florian 21
define('PAP_FTP_UTILISATEUR','florian');
754 ddelon 22
 
832 florian 23
define('PAP_FTP_MOT_DE_PASSE','fs1980');
754 ddelon 24
 
767 ddelon 25
define('PAP_FTP_RACINE','/papyrus/');
754 ddelon 26
 
775 florian 27
define('PAP_URL','http://localhost/papyrus/papyrus.php');
754 ddelon 28
 
775 florian 29
define('PAP_CHEMIN_RACINE','/opt/lampp/htdocs/papyrus/');
754 ddelon 30
 
31
define('PAP_URL_REECRITURE','');
32
 
33
 
832 florian 34
?>