]> git.immae.eu Git - github/wallabag/wallabag.git/blob - install/update.php
updating script
[github/wallabag/wallabag.git] / install / update.php
1 <?php
2 require_once dirname(__FILE__).'/../inc/poche/Tools.class.php';
3 include dirname(__FILE__).'/../inc/poche/define.inc.php';
4 require_once __DIR__ . '/../inc/poche/Database.class.php';
5 $store = new Database();
6 $old_salt = '464v54gLLw928uz4zUBqkRJeiPY68zCX';
7 ?>
8 <!DOCTYPE html>
9 <!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]-->
10 <!--[if lte IE 7]> <html class="no-js ie7 ie67 ie678" lang="en"> <![endif]-->
11 <!--[if IE 8]> <html class="no-js ie8 ie678" lang="en"> <![endif]-->
12 <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
13 <html>
14 <head>
15 <meta charset="utf-8">
16 <title>updating poche</title>
17 </head>
18 <body>
19 <h1>update poche to 1.0-beta3</h1>
20
21 <h2>Changelog</h2>
22 <p>
23 <ul>
24 <li>this awesome updating step</li>
25 <li>error message when install folder exists</li>
26 <li>more tests before installation (write access, etc.)</li>
27 <li>updated README to make installation easier</li>
28 <li>german language thanks to HLFH</li>
29 <li>spanish language thanks to Nitche</li>
30 <li>new file ./inc/poche/myconfig.inc.php created to store language and salt</li>
31 <li><a href="https://github.com/inthepoche/poche/issues/119">#119</a>: salt is now created when installing poche</li>
32 <li><a href="https://github.com/inthepoche/poche/issues/130">#130</a>: robotx.txt added</li>
33 <li><a href="https://github.com/inthepoche/poche/issues/136">#136</a>: error during readability import</li>
34 <li><a href="https://github.com/inthepoche/poche/issues/137">#137</a>: mixed content alert in https</li>
35 <li><a href="https://github.com/inthepoche/poche/issues/138">#138</a>: change pattern to parse url with #</li>
36 </ul>
37 </p>
38 <p>
39 <form name="update" method="post">
40 <div><label for="login">login:</label> <input type="text" name="login" id="login" /></div>
41 <div><label for="password">password:</label> <input type="password" name="password" id="password" /></div>
42 <div><input type="hidden" name="go" value="ok" /><input type="submit" value="update" /></div>
43 </form>
44 </p>
45 <?php
46 if (isset($_POST['go'])) {
47 if (!empty($_POST['login']) && !empty($_POST['password'])) {
48 $user = $store->login($_POST['login'], sha1($_POST['password'] . $_POST['login'] . $old_salt));
49 if ($user != array()) {
50 $new_salt = md5(time() . $_SERVER['SCRIPT_FILENAME'] . rand());
51 $myconfig_file = '../inc/poche/myconfig.inc.php';
52 if (!is_writable('../inc/poche/')) {
53 die('You don\'t have write access to create ./inc/poche/myconfig.inc.php.');
54 }
55
56 if (!file_exists($myconfig_file))
57 {
58 $fp = fopen($myconfig_file, 'w');
59
60 fwrite($fp, '<?php'."\r\n");
61 fwrite($fp, "define ('POCHE_VERSION', '1.0-beta3');" . "\r\n");
62 fwrite($fp, "define ('SALT', '" . $new_salt . "');" . "\r\n");
63 fwrite($fp, "define ('LANG', 'en_EN.utf8');" . "\r\n");
64 fclose($fp);
65 }
66 # faire une mise à jour de la table users en prenant en compte le nouveau SALT généré
67 $store->updatePassword($user['id'], sha1($_POST['password'] . $_POST['login'] . $new_salt));
68 ?>
69 <p><span style="color: green;">your poche is up to date!</span></p>
70 <p><span style="color: red;">don't forget to delete ./install/ folder after the update.</span></p>
71 <p><a href="../">go back to your poche</a></p>
72 <?php
73 }
74 }
75 }
76 ?>
77 </body>
78 </html>