From 32535ef9b873bf45199c989e3b9feacb8c527359 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 29 Apr 2009 23:19:54 +0000 Subject: [PATCH] Add version on first install page --- README | 15 ++++++++++++--- htdocs/install/check.php | 5 ++++- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/README b/README index f73e954a057..353ab64ab82 100644 --- a/README +++ b/README @@ -20,7 +20,7 @@ To install Dolibarr: - Create an empty mysql database (postgresql support is experimental). - Set write permissions on directory 'dolibarr/htdocs/conf' for your web server user (write permissions will be removed once install is finished). -- From your browser, call the dolibarr install page. Url depends on choice +- From your browser, call the dolibarr "install/" page. Url depends on choice made on first step: http://localhost/dolibarr/htdocs/install/index.php or @@ -37,11 +37,20 @@ To upgrade Dolibarr from an old version to this one: - If you came from version x.y.z to x.y.w (only third number differ), there is no need to run any migrate process. - If you came from a beta version or from any version x.y.z to any - other where x or y number differs, you must call the Dolibarr install - page in your browser: + other where x or y number differs, you must call the Dolibarr "install/" + page in your browser. + Url might be for example: http://localhost/dolibarr/htdocs/install/index.php or http://yourdolibarrhost/install/index.php + To know what is exactly correct URL for "install/" page, take URL you use + to go on login page. It it ends with "index.php", remove it, then add + "install/". + For example, if your login page is: + http://yourdolibarrhost/something/index.php + Then, your "install/" pages will be + http://yourdolibarrhost/something/install/ + Then choose the "update" option according to your case. Note: Migrate process can ben runned safely several times. diff --git a/htdocs/install/check.php b/htdocs/install/check.php index e4fa37252b7..d3ca2572831 100644 --- a/htdocs/install/check.php +++ b/htdocs/install/check.php @@ -50,7 +50,10 @@ dolibarr_install_syslog("check: Dolibarr install/upgrade process started"); pHeader($langs->trans("DolibarrWelcome"),""); // Etape suivante = license -print '
Dolibarr logo

'; +print '
'; +print 'Dolibarr logo
'; +print DOL_VERSION.'

'; +print '
'; print "
\n";