From cc49fd1dc93bda957899f713984dd4880ca3eee6 Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Mon, 1 Dec 2008 13:48:39 +0100 Subject: [PATCH] Updated the documentation to take into account the new admin area. --- INSTALL.mdtext | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/INSTALL.mdtext b/INSTALL.mdtext index 289de27..a4daec8 100644 --- a/INSTALL.mdtext +++ b/INSTALL.mdtext @@ -58,7 +58,7 @@ Here is the step-by-step installation procedure: * Run `php /home/www/pluf/src/migrate.php --conf=IDF/conf/idf.php -a -i -d -u` to test the installation of the tables. * Run `php /home/www/pluf/src/migrate.php --conf=IDF/conf/idf.php -a -i -d` to really install the tables. -* Create a bootstrap file to create the first project and admin user for example `www/bootstrap.php`. Do not forget to update the second line with your path to Pluf: +* Create a bootstrap file to create the admin user for example `www/bootstrap.php`. Do not forget to update the second line with your path to Pluf: name = 'Your project'; - $project->shortname = 'yourproject'; //Only letters digits - $project->description = 'This is your project.'; - $project->create(); $user = new Pluf_User(); $user->first_name = 'John'; $user->last_name = 'Doe'; // Required! @@ -89,8 +84,8 @@ Here is the step-by-step installation procedure: * Remove the `www/bootstrap.php` file. * Open the `www/index.php` file and ensure that the path to Pluf and Indefero are correctly set for your configuration. - -Now you can login with this user into the interface. +* Now you can login with this user into the interface. +* Click on the Administer link on top and create your first project. ## Upgrade InDefero