Welcome to Noter.

This application is a minimal-configuration php script set which can be used to organize notes.
Specifically, simple text files (.txt) and any other file with a text MIME encoding can be
edited and created in its interface. Files are stored in an editable file tree 
structure similar to that of files on disk containing nested folders. Each user has a
private store where they alone have access to files created/uploaded. There is also a public
store which all users have full access to, to facilitate collaboration amongst a relatively
small group. Sessions, and secure password storage have also been implemented. The 
administrative user, 'admin', has the full ability to add/remove/changepassword for any 
regular user of the system. Lastly, due to the way the files are stored server-side, 
if one wants to migrate files away from noter they can simply copy the corresponding user
folder under the 'Data' directory. It will contain all files as seen inside noter's file
tree, without any program 'meta' files scattered amongst it. 

Requirements:
-Linux Server (Tested Debian/Ubuntu)
-Apache
-php (built on 5.5.9/7.2)
-no database!

Install/Setup:
-Simply unzip the contents of this zip into a folder you've created in the apache 
webroot which traditionally has been "/var/www" or "/var/www/http"
-Make sure the folder you extract into and the extracted files are owned by the 
apache user (usually "www-data"), or at least have sufficient perms to allow apache
to make folders and modify files.
-Then visit the folder path in your browser and the setup wizard should initiate and 
guide you though password/directory setup. 
-All settings are in Config.php, which you can modify later to alter program behavior. 
-For php to handle uploads of any reasonable size/quantity you'll need to edit your 
php.ini file. "/etc/php5/apache2/php.ini"
-Use https...


