diff options
author | Frederik Gladhorn <gladhorn@kde.org> | 2010-03-15 16:08:46 +0100 |
---|---|---|
committer | Frederik Gladhorn <gladhorn@kde.org> | 2010-03-15 16:08:46 +0100 |
commit | 0046d8a4608b65ea39ceffa1a6de295a3ebc82de (patch) | |
tree | 6e6d5d8027afa2c868a7e32569813973d83fc64f /docs | |
parent | e992da513ff7759f12c875b419ab1869230039f2 (diff) | |
download | nextcloud-server-0046d8a4608b65ea39ceffa1a6de295a3ebc82de.tar.gz nextcloud-server-0046d8a4608b65ea39ceffa1a6de295a3ebc82de.zip |
some more install instructions - mysql
Diffstat (limited to 'docs')
-rwxr-xr-x | docs/INSTALL | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/INSTALL b/docs/INSTALL index 2c98e81b1c7..6a31bc57f01 100755 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -8,15 +8,29 @@ config/config.php Your data will be in: $CONFIG_DATADIRECTORY = '/www/testy'; +Apache needs to have write permissions to this directory. And the ownCloud path is: $CONFIG_DOCUMENTROOT = '/www/owncloud/htdocs'; +The ownCloud checkout should be in the root of "htdocs". Both are absolute paths, so if your server is in /var/www, you need to add the /var +== Database == +The database should by default be sqlite. No configuration there. +But until then you need some setup with mysql: +Create a table "owncloud": +mysqladmin create owncloud -u root -p +Dump the default database schema: +mysql owncloud -u root -p < owncloud.sql +TODO: you also need to create a mysql user that is configured in config/config.php + + +Please help improving this documentation! +Create merge requests at gitorious.org/owncloud . |