diff options
author | adam <adam@> | 2021-02-14 15:14:49 +0200 |
---|---|---|
committer | adam <adam@> | 2021-02-14 15:14:49 +0200 |
commit | 466d2b7fbb9d066692eaa32b35824e6e8a403cc4 (patch) | |
tree | 7c8b6232c458cf42ef894477f0c5de4944e1e903 | |
parent | 69239c2a520438b158c23259d8e37f32b4890331 (diff) | |
download | fileup-466d2b7fbb9d066692eaa32b35824e6e8a403cc4.tar.gz |
asdf
-rw-r--r-- | php/configuration.php | 48 | ||||
-rw-r--r-- | php/configuration.php.of | 28 |
2 files changed, 23 insertions, 53 deletions
diff --git a/php/configuration.php b/php/configuration.php index 236db70..1f2f423 100644 --- a/php/configuration.php +++ b/php/configuration.php @@ -1,30 +1,28 @@ <?php -/*should be placed outside of document root*/ - -$use_https=true; - -if (file_exists("/home/alex")) { - $domain_name="localhost"; - $database_name="alex"; - $database_username="alex"; - $database_password="lol"; - $database_location="127.0.0.1"; - - $storage_root = "/home/alex/fileup_storage"; -} -else { - $domain_name="testing"; - $database_name="fileup_testing"; - $database_username="outsider"; - $database_password="parola123"; - $database_location="localhost"; - /*storage root must be in the webroot*/ - $storage_root = "/srv/apache/testing/project/files/"; -} - -/*if we save deleted files just in case of an error*/ + +$use_https = false; + +// The server needs to know its domain name so it can generate download links +$domain_name="localhost"; + +// MySQL database name/user/password location +// VOLATILE - database_name is hard coded in INIT_DATABASE.sql, if you change it here you MUST change that as well +$database_name="fileup"; +$database_username="root"; +$database_password=""; +$database_location="127.0.0.1"; + +// This directory MUST exist and PHP's configuration must be able to read/write/delete files inside it +$storage_root = "C:\\fileup_storage"; + + +// Are we using the /trash directory? $has_trash=true; + $password_hash_algo=PASSWORD_BCRYPT; $has_email_verification=false; -?> + +@include_once("$_SERVER[HOME]/.fileup.config.php"); + +?>
\ No newline at end of file diff --git a/php/configuration.php.of b/php/configuration.php.of deleted file mode 100644 index 1f2f423..0000000 --- a/php/configuration.php.of +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -$use_https = false; - -// The server needs to know its domain name so it can generate download links -$domain_name="localhost"; - -// MySQL database name/user/password location -// VOLATILE - database_name is hard coded in INIT_DATABASE.sql, if you change it here you MUST change that as well -$database_name="fileup"; -$database_username="root"; -$database_password=""; -$database_location="127.0.0.1"; - -// This directory MUST exist and PHP's configuration must be able to read/write/delete files inside it -$storage_root = "C:\\fileup_storage"; - - -// Are we using the /trash directory? -$has_trash=true; - -$password_hash_algo=PASSWORD_BCRYPT; - -$has_email_verification=false; - -@include_once("$_SERVER[HOME]/.fileup.config.php"); - -?>
\ No newline at end of file |