diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | php/configuration.php | 2 | ||||
-rw-r--r-- | sql/fileshare.sql | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -1 +1,2 @@ screen +files diff --git a/php/configuration.php b/php/configuration.php index 476311d..1ee0a99 100644 --- a/php/configuration.php +++ b/php/configuration.php @@ -18,7 +18,7 @@ $database_username="outsider"; $database_password="parola123"; $database_location="localhost"; - $storage_root = "/tmp"; + $storage_root = "/srv/apache/testing/project/files/"; } diff --git a/sql/fileshare.sql b/sql/fileshare.sql index ed48696..b0f1696 100644 --- a/sql/fileshare.sql +++ b/sql/fileshare.sql @@ -1,6 +1,6 @@ /*BEWARE!*/ -drop table if exists nodes; drop table if exists users; +drop table if exists nodes; drop table if exists node_access; drop table if exists node_links; |