Remplace par install/
This commit is contained in:
parent
d68401e8de
commit
12b9bd7690
@ -1,317 +0,0 @@
|
||||
<?PHP
|
||||
|
||||
if ($HTTP_POST_VARS["action"] == "set")
|
||||
{
|
||||
umask(0);
|
||||
print '<h2>Enregistrement des valeurs</h2>';
|
||||
|
||||
print '<table cellspacing="0" cellpadding="4" border="1">';
|
||||
$error=0;
|
||||
$fp = fopen("conf/conf.php", "w");
|
||||
if($fp)
|
||||
{
|
||||
|
||||
if (substr($HTTP_POST_VARS["main_dir"], strlen($HTTP_POST_VARS["main_dir"]) -1) == "/")
|
||||
{
|
||||
$HTTP_POST_VARS["main_dir"] = substr($HTTP_POST_VARS["main_dir"], 0, strlen($HTTP_POST_VARS["main_dir"])-1);
|
||||
}
|
||||
|
||||
if (substr($HTTP_POST_VARS["main_url"], strlen($HTTP_POST_VARS["main_url"]) -1) == "/")
|
||||
{
|
||||
$HTTP_POST_VARS["main_url"] = substr($HTTP_POST_VARS["main_url"], 0, strlen($HTTP_POST_VARS["main_url"])-1);
|
||||
}
|
||||
|
||||
clearstatcache();
|
||||
|
||||
fwrite($fp, '<?PHP');
|
||||
fputs($fp,"\n");
|
||||
|
||||
fputs($fp, '$dolibarr_main_document_root="'.$HTTP_POST_VARS["main_dir"].'";');
|
||||
fputs($fp,"\n");
|
||||
|
||||
fputs($fp, '$dolibarr_main_url_root="'.$HTTP_POST_VARS["main_url"].'";');
|
||||
fputs($fp,"\n");
|
||||
|
||||
fputs($fp, '$dolibarr_main_db_host="'.$HTTP_POST_VARS["db_host"].'";');
|
||||
fputs($fp,"\n");
|
||||
|
||||
fputs($fp, '$dolibarr_main_db_name="'.$HTTP_POST_VARS["db_name"].'";');
|
||||
fputs($fp,"\n");
|
||||
|
||||
fputs($fp, '$dolibarr_main_db_user="'.$HTTP_POST_VARS["db_user"].'";');
|
||||
fputs($fp,"\n");
|
||||
|
||||
fputs($fp, '$dolibarr_main_db_pass="'.$HTTP_POST_VARS["db_pass"].'";');
|
||||
fputs($fp,"\n");
|
||||
|
||||
fputs($fp, '?>');
|
||||
fclose($fp);
|
||||
|
||||
if (file_exists("conf/conf.php"))
|
||||
{
|
||||
include ("conf/conf.php");
|
||||
}
|
||||
|
||||
print "<tr><td>Configuration enregistrée</td><td>OK</td>";
|
||||
|
||||
print '<tr><td colspan="2">Test des répertoires</td></tr>';
|
||||
|
||||
if (! is_dir($HTTP_POST_VARS["main_dir"]))
|
||||
{
|
||||
print "<tr><td>Le dossier ".$HTTP_POST_VARS["main_dir"]." n'existe pas !</td><td>Erreur</td></tr>";
|
||||
$error++;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
print "<tr><td>Le dossier ".$HTTP_POST_VARS["main_dir"]." existe</td><td>OK</td></tr>";
|
||||
|
||||
if (! is_dir($HTTP_POST_VARS["main_dir"]."/document"))
|
||||
{
|
||||
print "<tr><td>Le dossier ".$HTTP_POST_VARS["main_dir"]."/document n'existe pas !<p>";
|
||||
print "- Vous devez créer le dossier : <b>".$HTTP_POST_VARS["main_dir"]."/document</b> et permettre au serveur web d'écrire dans celui-ci";
|
||||
print '</td><td bgcolor="red">Erreur</td></tr>';
|
||||
$error++;
|
||||
}
|
||||
else
|
||||
{
|
||||
$dir[0] = $HTTP_POST_VARS["main_dir"]."/document/facture";
|
||||
$dir[1] = $HTTP_POST_VARS["main_dir"]."/document/propale";
|
||||
$dir[2] = $HTTP_POST_VARS["main_dir"]."/document/societe";
|
||||
$dir[3] = $HTTP_POST_VARS["main_dir"]."/document/ficheinter";
|
||||
$dir[4] = $HTTP_POST_VARS["main_dir"]."/document/produit";
|
||||
|
||||
for ($i = 0 ; $i < sizeof($dir) ; $i++)
|
||||
{
|
||||
|
||||
if (is_dir($dir[$i]))
|
||||
{
|
||||
print "<tr><td>Le dossier ".$dir[$i]." existe</td><td>OK</td></tr>";
|
||||
}
|
||||
else
|
||||
{
|
||||
if (! @mkdir($dir[$i], 0755))
|
||||
{
|
||||
print "<tr><td>Impossible de créer : ".$dir[$i]."</td><td bgcolor=\"red\">Erreur</td></tr>";
|
||||
$error++;
|
||||
}
|
||||
else
|
||||
{
|
||||
print "<tr><td>Création de : ".$dir[$i]." réussie</td><td>OK</td></tr>";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
print '<tr><td colspan="2">test de connexion à la base de données</td></tr>';
|
||||
require ($dolibarr_main_document_root . "/lib/mysql.lib.php");
|
||||
require ($dolibarr_main_document_root . "/conf/conf.class.php");
|
||||
$conf = new Conf();
|
||||
$conf->db->host = $dolibarr_main_db_host;
|
||||
$conf->db->name = $dolibarr_main_db_name;
|
||||
$conf->db->user = $dolibarr_main_db_user;
|
||||
$conf->db->pass = $dolibarr_main_db_pass;
|
||||
$db = new DoliDb();
|
||||
|
||||
$sql[0] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'FAC_OUTPUTDIR', value='".$dolibarr_main_document_root."/document/facture', visible=0, type='chaine'";
|
||||
|
||||
$sql[1] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'FAC_OUTPUT_URL', value='".$dolibarr_main_url_root."/document/facture', visible=0, type='chaine'";
|
||||
|
||||
$sql[2] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'PROPALE_OUTPUTDIR', value='".$dolibarr_main_document_root."/document/propale', visible=0, type='chaine'";
|
||||
|
||||
$sql[3] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'PROPALE_OUTPUT_URL', value='".$dolibarr_main_url_root."/document/propale', visible=0, type='chaine'";
|
||||
|
||||
$sql[4] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'FICHEINTER_OUTPUTDIR', value='".$dolibarr_main_document_root."/document/ficheinter', visible=0, type='chaine'";
|
||||
|
||||
$sql[5] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'FICHEINTER_OUTPUT_URL', value='".$dolibarr_main_url_root."/document/ficheinter', visible=0, type='chaine'";
|
||||
|
||||
$sql[6] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'SOCIETE_OUTPUTDIR', value='".$dolibarr_main_document_root."/document/societe', visible=0, type='chaine'";
|
||||
|
||||
$sql[7] = "REPLACE INTO ".MAIN_DB_PREFIX."const SET name = 'SOCIETE_OUTPUT_URL', value='".$dolibarr_main_url_root."/document/societe', visible=0, type='chaine'";
|
||||
$result = 0;
|
||||
for ($i=0; $i < sizeof($sql);$i++)
|
||||
{
|
||||
|
||||
if ($db->query($sql[$i]))
|
||||
{
|
||||
print "<tr><td>requete sql $i</td><td>OK</td></tr>";
|
||||
$result++;
|
||||
}
|
||||
else
|
||||
{
|
||||
print "<tr><td>requete sql $i</td><td>Erreur</td></tr>";
|
||||
}
|
||||
}
|
||||
|
||||
if ($result == sizeof($sql))
|
||||
{
|
||||
print "<tr><td>connexion réussie à la base de données</td><td>OK</td></tr>";
|
||||
print '</table>';
|
||||
|
||||
if ($error == 0)
|
||||
{
|
||||
|
||||
$db->query("DELETE FROM ".MAIN_DB_PREFIX."const WHERE name='MAIN_NOT_INSTALLED'");
|
||||
|
||||
|
||||
print '<div class="main">
|
||||
<div class="main-inside">';
|
||||
print "Votre système est maintenant configuré, il ne vous reste plus qu'a sélectionner les modules que vous souhaitez utiliser. Pour cela cliquer sur l'url ci-dessous : <br>";
|
||||
print '<a href="'.$dolibarr_main_url_root .'/admin/modules.php">Configurer les modules</a></div></div>';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print '</table>';
|
||||
print $db->error();
|
||||
}
|
||||
$db->close();
|
||||
}
|
||||
else
|
||||
{
|
||||
print "Erreur le système à besoin d'écrire dans le fichier conf/conf.php veuillez mettre les droits correct pour cela.";
|
||||
}
|
||||
print "<hr>";
|
||||
}
|
||||
|
||||
if (file_exists("conf/conf.php"))
|
||||
{
|
||||
include ("conf/conf.php");
|
||||
}
|
||||
else
|
||||
{
|
||||
print "conf/conf.php does not exists<br>";
|
||||
}
|
||||
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-size:14px;
|
||||
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
|
||||
background-color: #cac8c0;
|
||||
margin-left: 5%;
|
||||
margin-right: 5%;
|
||||
margin-top: 5%;
|
||||
margin-bottom: 5%;
|
||||
}
|
||||
|
||||
div.main {
|
||||
background-color: white;
|
||||
text-align: left;
|
||||
border: solid black 1px;
|
||||
}
|
||||
div.main-inside {
|
||||
background-color: white;
|
||||
padding-left: 20px;
|
||||
padding-right: 50px;
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
div.footer {
|
||||
background-color: #dcdff4;
|
||||
font-size: 10px;
|
||||
border-top: solid black 1px;
|
||||
padding-left: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.header {
|
||||
background-color: #dcdff4;
|
||||
border-bottom: solid black 1px;
|
||||
padding-left: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.footer p {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
a:link,a:visited,a:active {
|
||||
text-decoration:none;
|
||||
color:blue;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration:underline;
|
||||
color:blue;
|
||||
}
|
||||
|
||||
a.comment {
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
div.main-inside h2 {
|
||||
font-size:18px;
|
||||
font-weight: bold;
|
||||
color: #990033;
|
||||
}
|
||||
|
||||
</style>
|
||||
<title>Dolibarr Install</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="main">
|
||||
<div class="main-inside">
|
||||
<h2>Installation de Dolibarr</h2>
|
||||
<form action="install.php" method="POST">
|
||||
<input type="hidden" name="action" value="set">
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<?PHP print "Répertoire d'installation"; ?>
|
||||
</td><td><input type="text" size="60" value="<?PHP print $dolibarr_main_document_root ?>" name="main_dir">
|
||||
<br>
|
||||
Sans le slash "/" à la fin<br>
|
||||
exemple : /var/www/dolibarr/htdocs
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
URL Racine</td><td><input type="text" size="60" name="main_url" value="<?PHP print $dolibarr_main_url_root ?>">
|
||||
<br>
|
||||
exemples :
|
||||
<br>
|
||||
<ul>
|
||||
<li>http://dolibarr.lafrere.net</li>
|
||||
<li>http://www.lafrere.net/dolibarr</li>
|
||||
</ul>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<td colspan="2" align="center">Base de données</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>host</td><td><input type="text" name="db_host" value="<?PHP print $dolibarr_main_db_host ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>nom</td><td><input type="text" name="db_name" value="<?PHP print $dolibarr_main_db_name ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">user</td>
|
||||
<td>
|
||||
<input type="text" name="db_user" value="<?PHP print $dolibarr_main_db_user ?>">
|
||||
<a class="comment">Laisser vide si vous vous connectez en anonymous</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">pass</td>
|
||||
<td>
|
||||
<input type="text" name="db_pass" value="<?PHP print $dolibarr_main_db_pass ?>">
|
||||
<a class="comment">Laisser vide si vous vous connectez en anonymous</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="center"><input type="submit" value="Enregistrer"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue
Block a user