From 6d7defc87cd6ce40910b66472168e3d86c362164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 23 Aug 2013 22:24:41 +0200 Subject: new messages when update / install --- install/update.php | 79 ------------------------------------------------------ 1 file changed, 79 deletions(-) delete mode 100644 install/update.php (limited to 'install/update.php') diff --git a/install/update.php b/install/update.php deleted file mode 100644 index 8c93af6d..00000000 --- a/install/update.php +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - updating poche - - -

update poche to 1.0-beta3

- -

Changelog

-

-

-

-

To update your poche, please fill the following fields.

-

-

-
-
-
-
-

-login($_POST['login'], sha1($_POST['password'] . $_POST['login'] . $old_salt)); - if ($user != array()) { - $new_salt = md5(time() . $_SERVER['SCRIPT_FILENAME'] . rand()); - $myconfig_file = '../inc/poche/myconfig.inc.php'; - if (!is_writable('../inc/poche/')) { - die('You don\'t have write access to create ./inc/poche/myconfig.inc.php.'); - } - - if (!file_exists($myconfig_file)) - { - $fp = fopen($myconfig_file, 'w'); - - fwrite($fp, 'updatePassword($user['id'], sha1($_POST['password'] . $_POST['login'] . $new_salt)); -?> -

your poche is up to date!

-

don't forget to delete ./install/ folder after the update.

-

go back to your poche

- - - \ No newline at end of file -- cgit v1.2.3 From 679b6b85ad1f8c9110334101a1568510ad15891b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 23 Aug 2013 22:43:16 +0200 Subject: preparing to beta4 --- install/update.php | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 install/update.php (limited to 'install/update.php') diff --git a/install/update.php b/install/update.php new file mode 100644 index 00000000..ccc0566f --- /dev/null +++ b/install/update.php @@ -0,0 +1,71 @@ + + + + + + + + + + updating poche + + +

update poche to 1.0-beta4

+ +

Changelog

+ +

To update your poche, please fill the following fields.

+

+

+
+
+
+
+

+login($_POST['login'], sha1($_POST['password'] . $_POST['login'] . SALT)); + if ($user != array()) { + $myconfig_file = '../inc/poche/myconfig.inc.php'; + # just change version number in config file + + if (!is_writable('../inc/poche/myconfig.inc.php')) { + die('You don\'t have write access to open ./inc/poche/myconfig.inc.php.'); + } + + if (file_exists($myconfig_file)) + { + $content = str_replace('1.0-beta3', '1.0-beta4', file_get_contents($myconfig_file)); + file_put_contents($myconfig_file, $content); + } +?> +

your poche is up to date!

+

don't forget to delete ./install/ folder after the update.

+

go back to your poche

+ + + \ No newline at end of file -- cgit v1.2.3 From 063fc1a7baaf6f7e1fb08eced058962a6140a471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sun, 25 Aug 2013 21:10:01 +0200 Subject: changelog in update --- install/update.php | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) (limited to 'install/update.php') diff --git a/install/update.php b/install/update.php index ccc0566f..1deaf7f3 100644 --- a/install/update.php +++ b/install/update.php @@ -20,18 +20,24 @@ $store = new Database();

Changelog

    -
  • this awesome updating step
  • -
  • error message when install folder exists
  • -
  • more tests before installation (write access, etc.)
  • -
  • updated README to make installation easier
  • -
  • german language thanks to HLFH
  • -
  • spanish language thanks to Nitche
  • -
  • new file ./inc/poche/myconfig.inc.php created to store language and salt
  • -
  • #119: salt is now created when installing poche
  • -
  • #130: robots.txt added
  • -
  • #136: error during readability import
  • -
  • #137: mixed content alert in https
  • -
  • #138: change pattern to parse url with #
  • +
  • enhancement: updating and installing poche are more easier
  • +
  • enhancement: poche now uses Full Text RSS to fetch content
  • +
  • enhancement: css and twig files are more clean, thanks to NumEricR and nicofrand
  • +
  • enhancement: updated german translation, thanks to HLFH
  • +
  • enhancement: add db/, cache/ and assets/ directories in versioning
  • +
  • enhancement: display messages when error with import, thanks to EliasZ
  • +
  • enhancement: poche compatibility test file
  • +
  • enhancement: #112: link with shaarli
  • +
  • enhancement: #162: links to firefox / chrome / android apps in config screen
  • +
  • bug: encode url to share with twitter / email / shaarli
  • +
  • bug: Add IPv4 url support (and others beginning by a digit)
  • +
  • bug: title page in article view was wrong
  • +
  • bug: #148: use of undefined constant POCHE_VERSION
  • +
  • bug: #149: can't poche theguardian.com
  • +
  • bug: #150: default title for untitled articles
  • +
  • bug: #151: HTML entities in titles are encoded twice
  • +
  • bug: #169: entries height with short description
  • +
  • bug: #175: IP addresses do not appear in "view original"

To update your poche, please fill the following fields.

-- cgit v1.2.3