diff options
author | adam <adam@> | 2021-02-12 13:44:02 +0200 |
---|---|---|
committer | adam <adam@> | 2021-02-12 13:44:02 +0200 |
commit | 3909f0306619241b46848bcab602a22103fa15ba (patch) | |
tree | 0e6bb214d4e4c69b4e9705b607cfe8c31a070f3c | |
parent | 48639929374cb0d0a5e2ac52b7c021f7a48229f5 (diff) | |
download | fileup-3909f0306619241b46848bcab602a22103fa15ba.tar.gz |
fixes
-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; |