summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenat Lumpau <rl03@gentoo.org>2006-08-27 23:24:55 +0000
committerRenat Lumpau <rl03@gentoo.org>2006-08-27 23:24:55 +0000
commitfeb1c7c7e2e118ceb91a7502d798efc5151a781c (patch)
tree3f28ca587a31ef5a9c614cc3cc95da563752e2dd /www-apps/ackertodo/files
parentAdded missing postinstall-en.txt, bug #144908. (diff)
downloadwebapps-experimental-feb1c7c7e2e118ceb91a7502d798efc5151a781c.tar.gz
webapps-experimental-feb1c7c7e2e118ceb91a7502d798efc5151a781c.tar.bz2
webapps-experimental-feb1c7c7e2e118ceb91a7502d798efc5151a781c.zip
Really added.
svn path=/experimental/; revision=209
Diffstat (limited to 'www-apps/ackertodo/files')
-rw-r--r--www-apps/ackertodo/files/postinstall-en.txt45
1 files changed, 45 insertions, 0 deletions
diff --git a/www-apps/ackertodo/files/postinstall-en.txt b/www-apps/ackertodo/files/postinstall-en.txt
new file mode 100644
index 0000000..07b1a25
--- /dev/null
+++ b/www-apps/ackertodo/files/postinstall-en.txt
@@ -0,0 +1,45 @@
+* If you are upgrading from a previous version of ackerTodo, please
+ read the UPGRADE file to make sure you don't need to do anything
+ special.
+
+Create The Database Automatically
+---------------------------------
+1.) Edit the \$host, \$user, \$pass, and $database variables in
+ ${MY_INSTALLDIR}/config/config.inc.php with the information used to connect to your
+ mysql server.
+
+2.) Point your browser to the setup script where you've copied the src
+ directory. (ex. http://${VHOST_HOSTNAME}${VHOST_APPDIR}/setup/setup.php).
+
+3.) Follow the instructions in the setup script until you see
+ "Set is complete!", then point your browser to the where you've
+ copied the src directory. (ex. http://${VHOST_HOSTNAME}${VHOST_APPDIR}/).
+ The default admin user is 'admin', password 'admin'.
+
+4.) Remove the setup directory.
+
+5.) Begin adding tasks!
+
+
+Create The Database Manually
+----------------------------
+1.) Create a mysql database to store the data.
+ mysqladmin -u <user> -p create <database>
+
+2.) Create the tables with the 'ackertodo.sql' script in src/setup.
+ mysql -u <user> -p <database> < src/setup/ackertodo.sql
+
+3.) Copy the src directory where it can be accessed by your webserver.
+ cp -a src /var/www/ackertodo
+
+4.) Edit the \$host, \$user, \$pass, and $database variables in
+ http://${VHOST_HOSTNAME}${VHOST_APPDIR}/config/config.inc.php with the information used to connect to your
+ mysql server.
+
+5.) Remove the setup directory.
+
+6.) Point your browser to where you've copied the src directory.
+ (ex. http://${VHOST_HOSTNAME}${VHOST_APPDIR}/).
+ The default admin user is 'admin', password 'admin'.
+
+7.) Begin adding tasks!