2004-10-20 00:24:10 +02:00
|
|
|
|
<?php
|
2005-01-08 12:40:21 +01:00
|
|
|
|
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
|
|
|
|
* Copyright (C) 2004 <EFBFBD>ric Seigne <eric.seigne@ryxeo.com>
|
|
|
|
|
|
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
|
|
|
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
|
|
|
|
|
* Copyright (C) 2004 Sebastien DiCintio <sdicintio@ressource-toi.org>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
*
|
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
*
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
*
|
|
|
|
|
|
* $Id$
|
|
|
|
|
|
* $Source$
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2004-12-04 16:30:14 +01:00
|
|
|
|
|
2005-01-08 12:40:21 +01:00
|
|
|
|
/** \file htdocs/install/fileconf.php
|
|
|
|
|
|
\brief Demande les infos qui constituerons le contenu du fichier conf.php. Ce fichier sera remplie <EFBFBD> l'<EFBFBD>tape suivante
|
|
|
|
|
|
\version $Revision$
|
2004-12-04 16:30:14 +01:00
|
|
|
|
*/
|
|
|
|
|
|
|
2004-02-11 19:08:59 +01:00
|
|
|
|
include("./inc.php");
|
2004-02-12 15:43:09 +01:00
|
|
|
|
pHeader("Fichier de configuration","etape1");
|
2004-02-11 19:08:59 +01:00
|
|
|
|
|
|
|
|
|
|
$conf = "../conf/conf.php";
|
|
|
|
|
|
|
2004-12-04 16:30:14 +01:00
|
|
|
|
// Ici, le fichier conf.php existe et est forc<72>ment editable car le test a <20>t<EFBFBD> fait pr<70>c<EFBFBD>demment.
|
|
|
|
|
|
include($conf);
|
2004-08-25 22:12:02 +02:00
|
|
|
|
|
2004-12-04 16:30:14 +01:00
|
|
|
|
print '<table border="0" cellpadding="1" cellspacing="0">';
|
2004-12-05 00:18:03 +01:00
|
|
|
|
|
2004-12-04 16:30:14 +01:00
|
|
|
|
print '<tr>';
|
|
|
|
|
|
print '<td valign="top" class="label">';
|
2004-12-05 00:18:03 +01:00
|
|
|
|
print "R<EFBFBD>pertoire d'installation des pages web";
|
2004-12-04 16:30:14 +01:00
|
|
|
|
print "</td>";
|
2004-02-11 19:08:59 +01:00
|
|
|
|
|
2004-02-12 21:48:59 +01:00
|
|
|
|
if(! isset($dolibarr_main_url_root) || strlen($dolibarr_main_url_root) == 0)
|
2004-02-11 19:08:59 +01:00
|
|
|
|
{
|
2004-11-27 16:29:32 +01:00
|
|
|
|
// Si le php fonctionne en CGI, alors SCRIPT_FILENAME vaut le path du php et
|
|
|
|
|
|
// ce n'est pas ce qu'on veut. Dans ce cas, on propose $_SERVER["DOCUMENT_ROOT"]
|
|
|
|
|
|
if (eregi('php$',$_SERVER["SCRIPT_FILENAME"]) || eregi('php\.exe$',$_SERVER["SCRIPT_FILENAME"])) {
|
|
|
|
|
|
$dolibarr_main_document_root=$_SERVER["DOCUMENT_ROOT"];
|
|
|
|
|
|
|
|
|
|
|
|
if (! eregi('\/dolibarr/htdocs$',$dolibarr_main_document_root))
|
|
|
|
|
|
{
|
|
|
|
|
|
$dolibarr_main_document_root.="/dolibarr/htdocs";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
$dolibarr_main_document_root = substr($_SERVER["SCRIPT_FILENAME"],0,strlen($_SERVER["SCRIPT_FILENAME"])- 21 );
|
|
|
|
|
|
// Nettoyage du path propos<6F>
|
|
|
|
|
|
// Gere les chemins windows avec double "\"
|
|
|
|
|
|
$dolibarr_main_document_root = str_replace('\\\\','/',$dolibarr_main_document_root);
|
|
|
|
|
|
|
|
|
|
|
|
// Supprime le slash ou antislash final
|
|
|
|
|
|
$dolibarr_main_document_root = ereg_replace('[\\\\\/]$','',$dolibarr_main_document_root);
|
|
|
|
|
|
}
|
2004-02-11 19:08:59 +01:00
|
|
|
|
}
|
2004-11-27 16:29:32 +01:00
|
|
|
|
|
2004-02-11 19:08:59 +01:00
|
|
|
|
?>
|
2004-12-05 00:18:03 +01:00
|
|
|
|
<td class="label" valign="top"><input type="text" size="60" value="<?php print $dolibarr_main_document_root; ?>" name="main_dir">
|
2004-02-12 15:43:09 +01:00
|
|
|
|
</td><td class="comment">
|
2004-02-11 19:08:59 +01:00
|
|
|
|
Sans le slash "/" <EFBFBD> la fin<br>
|
2004-02-12 21:48:59 +01:00
|
|
|
|
exemples :<br>
|
|
|
|
|
|
<li>/var/www/dolibarr/htdocs</li>
|
|
|
|
|
|
<li>C:/wwwroot/dolibarr/htdocs</li>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
2004-12-05 00:18:03 +01:00
|
|
|
|
<tr>
|
|
|
|
|
|
<td valign="top" class="label">
|
|
|
|
|
|
<?php print "R<EFBFBD>pertoire contenant les documents g<>n<EFBFBD>r<EFBFBD>s"; ?>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<?php
|
|
|
|
|
|
if(! isset($dolibarr_main_data_root) || strlen($dolibarr_main_data_root) == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Si le r<>pertoire documents non d<>fini, on en propose un par d<>faut
|
|
|
|
|
|
$dolibarr_main_data_root=ereg_replace("/htdocs","",$dolibarr_main_document_root);
|
|
|
|
|
|
$dolibarr_main_data_root.="/documents";
|
|
|
|
|
|
}
|
2004-07-20 11:06:13 +02:00
|
|
|
|
?>
|
2004-12-05 00:18:03 +01:00
|
|
|
|
<td class="label" valign="top"><input type="text" size="60" value="<?php print $dolibarr_main_data_root; ?>" name="main_data_dir">
|
|
|
|
|
|
</td><td class="comment">
|
|
|
|
|
|
Sans le slash "/" <EFBFBD> la fin. Il est recommand<EFBFBD> de mettre ce r<EFBFBD>pertoire en dehors du r<EFBFBD>pertoire des pages web.<br>
|
|
|
|
|
|
exemples :<br>
|
|
|
|
|
|
<li>/var/www/dolibarr/documents</li>
|
|
|
|
|
|
<li>C:/wwwroot/dolibarr/documents</li>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
2004-07-20 11:06:13 +02:00
|
|
|
|
|
2004-02-11 19:08:59 +01:00
|
|
|
|
<tr>
|
|
|
|
|
|
<td valign="top" class="label">
|
|
|
|
|
|
URL Racine</td><td valign="top" class="label"><input type="text" size="60" name="main_url" value="
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<?php
|
2004-02-12 12:02:16 +01:00
|
|
|
|
if(strlen($main_url) > 0)
|
|
|
|
|
|
$dolibarr_main_url_root=$main_url;
|
2004-02-12 21:48:59 +01:00
|
|
|
|
if(! isset($dolibarr_main_url_root) || strlen($dolibarr_main_url_root) == 0)
|
2004-02-11 19:08:59 +01:00
|
|
|
|
{
|
2004-02-12 21:48:59 +01:00
|
|
|
|
if (isset($_SERVER["SCRIPT_URI"])) { # Si d<>fini
|
|
|
|
|
|
$dolibarr_main_url_root=$_SERVER["SCRIPT_URI"];
|
|
|
|
|
|
}
|
|
|
|
|
|
else { # SCRIPT_URI n'est pas toujours d<>fini (Exemple: Apache 2.0.44 pour Windows)
|
|
|
|
|
|
$dolibarr_main_url_root="http://".$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
|
|
|
|
|
|
}
|
|
|
|
|
|
$dolibarr_main_url_root = substr($dolibarr_main_url_root,0,strlen($dolibarr_main_url_root)-12);
|
|
|
|
|
|
# Nettoyage de l'URL propos<6F>e
|
|
|
|
|
|
$dolibarr_main_url_root = ereg_replace('\/$','',$dolibarr_main_url_root); # Supprime le /
|
|
|
|
|
|
$dolibarr_main_url_root = ereg_replace('\/index\.php$','',$dolibarr_main_url_root); # Supprime le /index.php
|
|
|
|
|
|
$dolibarr_main_url_root = ereg_replace('\/install$','',$dolibarr_main_url_root); # Supprime le /install
|
2004-02-11 19:08:59 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print $dolibarr_main_url_root ;
|
|
|
|
|
|
?>">
|
2004-02-12 15:43:09 +01:00
|
|
|
|
</td><td class="comment">
|
2004-02-12 21:48:59 +01:00
|
|
|
|
exemples :<br>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
<li>http://dolibarr.lafrere.net</li>
|
|
|
|
|
|
<li>http://www.lafrere.net/dolibarr</li>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
2004-02-12 21:48:59 +01:00
|
|
|
|
<td colspan="3" align="center"><h2>Base de donn<EFBFBD>es Dolibarr<h2></td>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</tr>
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<?php
|
2004-02-12 15:43:09 +01:00
|
|
|
|
if (!isset($dolibarr_main_db_host))
|
|
|
|
|
|
{
|
|
|
|
|
|
$dolibarr_main_db_host = "localhost";
|
|
|
|
|
|
}
|
|
|
|
|
|
?>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
<tr>
|
2004-08-24 09:01:36 +02:00
|
|
|
|
<!-- moi-->
|
|
|
|
|
|
<td valign="top" class="label">Choix de la base de donn<EFBFBD>es</td>
|
|
|
|
|
|
|
2004-08-26 00:15:35 +02:00
|
|
|
|
<td class="label"><select name='db_type'>
|
|
|
|
|
|
<option value='mysql'<?php echo (!$dolibarr_main_db_type||$dolibarr_main_db_type=='mysql')?" selected":"" ?>>MySql</option>
|
2005-01-08 12:40:21 +01:00
|
|
|
|
<option value='pgsql'<?php echo ($dolibarr_main_db_type=='pgsql')?" selected":"" ?>>PostgreSQL (exp<78>rimental, non op<6F>rationnel)</option>
|
2004-08-25 22:12:02 +02:00
|
|
|
|
</select>
|
|
|
|
|
|
|
2004-12-05 00:18:03 +01:00
|
|
|
|
</td>
|
2004-08-25 22:12:02 +02:00
|
|
|
|
|
2005-01-08 12:40:21 +01:00
|
|
|
|
<td class="comment">Type de la base de donn<EFBFBD>e</td>
|
2004-08-24 09:01:36 +02:00
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
2004-12-05 00:18:03 +01:00
|
|
|
|
<tr>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
<td valign="top" class="label">Serveur</td>
|
2004-12-05 00:18:03 +01:00
|
|
|
|
<td valign="top" class="label"><input type="text" name="db_host" value="<?php print $dolibarr_main_db_host ?>">
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<input type="hidden" name="base" value="<?php print $test_base?>">
|
2004-12-05 00:18:03 +01:00
|
|
|
|
</td>
|
|
|
|
|
|
<td class="comment">Nom ou adresse ip du serveur de base de donn<EFBFBD>es, g<EFBFBD>n<EFBFBD>ralement 'localhost' quand le serveur est install<EFBFBD> sur la m<EFBFBD>me machine que le serveur web</td>
|
2004-02-12 15:43:09 +01:00
|
|
|
|
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
2004-02-12 21:48:59 +01:00
|
|
|
|
<td class="label">Nom de la base de donn<EFBFBD>es</td>
|
2004-02-12 15:43:09 +01:00
|
|
|
|
|
2004-12-04 16:30:14 +01:00
|
|
|
|
<td class="label" valign="top"><input type="text" name="db_name" value="<?php echo $dolibarr_main_db_name ?>"></td>
|
2004-02-12 21:48:59 +01:00
|
|
|
|
<td class="comment">Nom de la base de donn<EFBFBD>es Dolibarr (sera cr<EFBFBD><EFBFBD>e si n<EFBFBD>cessaire)</td>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr class="bg1">
|
|
|
|
|
|
<td class="label" valign="top">Login</td>
|
2004-02-12 15:43:09 +01:00
|
|
|
|
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<td class="label"><input type="text" name="db_user" value="<?php print isset($dolibarr_main_db_user)?$dolibarr_main_db_user:'' ?>"></td>
|
2004-02-12 21:48:59 +01:00
|
|
|
|
<td class="comment">Login de l'administrateur de la base de donn<EFBFBD>es Dolibarr. Laisser vide si vous vous connectez en anonymous</td>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="label" valign="top">Mot de passe</td>
|
2004-02-12 15:43:09 +01:00
|
|
|
|
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<td class="label"><input type="text" name="db_pass" value="<?php print isset($dolibarr_main_db_pass)?$dolibarr_main_db_pass:'' ?>"></td>
|
2004-02-12 21:48:59 +01:00
|
|
|
|
<td class="comment">Mot de passe de l'administrateur de la base de donn<EFBFBD>es Dolibarr. Laisser vide si vous vous connectez en anonymous</td>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="label" valign="top">Cr<EFBFBD>er l'utilisateur</td>
|
2004-02-12 15:43:09 +01:00
|
|
|
|
|
|
|
|
|
|
<td class="label"><input type="checkbox" name="db_create_user"></td>
|
2004-12-05 00:18:03 +01:00
|
|
|
|
<td class="comment">Cocher cette option si l'utilisateur doit-<EFBFBD>tre cr<EFBFBD><EFBFBD>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td colspan="3" align="center"><h2>Base de donn<EFBFBD>es - Acc<EFBFBD>s super utilisateur</h2></td></tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="label" valign="top">Login</td>
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<td class="label" valign="top"><input type="text" name="db_user_root" value="<?php if(isset($db_user_root)) print $db_user_root; ?>"></td>
|
2004-02-12 21:48:59 +01:00
|
|
|
|
<td class="label"><div class="comment">Login de l'utilisateur ayant les droits de cr<EFBFBD>ation de la base de donn<EFBFBD>es, inutile si votre base est d<EFBFBD>j<EFBFBD> cr<EFBFBD><EFBFBD>e (comme lorsque vous <EFBFBD>tes chez un h<EFBFBD>bergeur). Laisser vide si vous vous connectez en anonymous</div>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="label" valign="top">Mot de passe</td>
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<td class="label" valign="top"><input type="text" name="db_pass_root" value="<?php if(isset($db_pass_root)) print $db_pass_root; ?>"></td>
|
2004-02-11 19:08:59 +01:00
|
|
|
|
<td class="label"><div class="comment">Laisser vide si l'utilisateur n'a pas de mot de passe</div>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
</table>
|
2004-12-04 16:30:14 +01:00
|
|
|
|
|
2004-10-20 00:24:10 +02:00
|
|
|
|
<?php
|
2004-12-04 16:30:14 +01:00
|
|
|
|
|
2004-02-11 19:08:59 +01:00
|
|
|
|
pFooter($err);
|
2004-12-04 16:30:14 +01:00
|
|
|
|
|
2004-02-11 19:08:59 +01:00
|
|
|
|
?>
|