[ Index ] |
|
Code source de WikiNi 0.4.4 |
1 <?php 2 /* 3 writeconfig.php 4 Copyright (c) 2002, Hendrik Mans <hendrik@mans.de> 5 Copyright 2002, 2003 David DELON 6 Copyright 2002, 2003 Patrick PAUL 7 Copyright 2003 Jean-Pascal MILCENT 8 Copyright 2006 Didier LOISEAU 9 All rights reserved. 10 Redistribution and use in source and binary forms, with or without 11 modification, are permitted provided that the following conditions 12 are met: 13 1. Redistributions of source code must retain the above copyright 14 notice, this list of conditions and the following disclaimer. 15 2. Redistributions in binary form must reproduce the above copyright 16 notice, this list of conditions and the following disclaimer in the 17 documentation and/or other materials provided with the distribution. 18 3. The name of the author may not be used to endorse or promote products 19 derived from this software without specific prior written permission. 20 21 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 22 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 23 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 25 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 26 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 30 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 if (!defined('WIKINI_VERSION')) 33 { 34 die ("accès direct interdit"); 35 } 36 if (empty($_POST['config'])) 37 { 38 header('Location: ' . myLocation()); 39 die ('problème dans la procédure d\'installation'); 40 } 41 42 // fetch config 43 $config = $config2 = unserialize($_POST["config"]); 44 45 // merge existing configuration with new one 46 $config = array_merge($wakkaConfig, $config); 47 48 // set version to current version, yay! 49 $config["wikini_version"] = WIKINI_VERSION; 50 $config["wakka_version"] = WAKKA_VERSION; 51 52 // convert config array into PHP code 53 $configCode = "<?php\n// wakka.config.php créée ".strftime("%c")."\n// ne changez pas la wikini_version manuellement!\n\n\$wakkaConfig = array(\n"; 54 foreach ($config as $k => $v) 55 { 56 $entries[] = "\t\"".$k."\" => \"".$v."\""; 57 } 58 $configCode .= implode(",\n", $entries).");\n?>"; 59 60 // try to write configuration file 61 echo "<b>Création du fichier de configuration en cours...</b><br>\n"; 62 test("Écriture du fichier de configuration <tt>".$wakkaConfigLocation."</tt>...", $fp = @fopen($wakkaConfigLocation, "w"), "", 0); 63 64 if ($fp) 65 { 66 fwrite($fp, $configCode); 67 // write 68 fclose($fp); 69 70 echo "<p>Voila c'est terminé ! Vous pouvez <a href=\"",$config["base_url"],"\">retourner sur votre site WikiNi</a>. Il est conseillé de retirer l'accès en écriture au fichier <tt>wakka.config.php</tt>. Ceci peut être une faille dans la sécurité.</p>"; 71 } 72 else 73 { 74 // complain 75 echo"<p><span class=\"failed\">AVERTISSEMENT:</span> Le 76 fichier de configuration <tt>",$wakkaConfigLocation,"</tt> n'a pu être 77 créé. Veuillez vous assurez que votre serveur a les droits d'accès en écriture pour ce fichier. Si pour une raison quelconque vous ne pouvez pas faire ça vous devez copier les informations suivantes dans un fichier et les transférer au moyen d'un logiciel de transfert de fichier (ftp) sur le serveur dans un fichier <tt>wakka.config.php</tt> directement dans le répertoire de WikiNi. Une fois que vous aurez fait cela, votre site WikiNi devrait fonctionner correctement.</p>\n"; 78 ?> 79 <form action="<?php echo myLocation() ?>?installAction=writeconfig" method="POST"> 80 <input type="hidden" name="config" value="<?php echo htmlentities(serialize($config2)) ?>"> 81 <input type="submit" value="Essayer à nouveau"> 82 </form> 83 <?php 84 echo"<div style=\"background-color: #EEEEEE; padding: 10px 10px;\">\n<xmp>",$configCode,"</xmp>\n</div>\n"; 85 } 86 87 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 12:05:46 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |