]> git.mxchange.org Git - simple-upload.git/blobdiff - README.md
Renaming (hide/unhide) of files rewritten so failures can be caught.
[simple-upload.git] / README.md
index a06bd908a76724aed513b61d98173a96d7341a85..4e87b68e331521671adda75896a64d2100c951c7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,7 +2,15 @@
 
 Simple single-file PHP file upload (file share hosting) script.
 
-> :warning: **Security warning**: There is no limit on file size or file type. Please make sure that file permissions are set right so nobody can execute uploaded executables. Or exscape your desired directory! Please skip to server configuration for examples.
+> :warning: **Security warning**: There is no limit on file size or file type. Please make sure that file permissions are set right so nobody can execute uploaded code. See [server configuration](#server-configuration) for examples.
+
+## TODO
+
+- [x] Delete files
+- [x] Private files
+- [x] Sort by age
+- [x] Auto-remove old files
+- [ ] AJAX Uploader
 
 ## Installation
 
@@ -13,7 +21,6 @@ Just drop a PHP file in any directory. It will work straight away
 There are few options that you can change by editing the file itself:
 
 
-
 - Directory to store uploaded files
 
        `uploaddir` => `'.'`
@@ -65,7 +72,7 @@ There are few options that you can change by editing the file itself:
        This example will upload a file and copy URL to clipboard:
 
        ```bash
-       curl -F "file=@file.jpg" your-host/sharing/ | xclip -sel clip
+       curl -F "file[]=@file.jpg" strace.club | xclip -sel clip
        ```
 
 ## Server configuration
@@ -74,6 +81,8 @@ Do not allow uploaded code execution!
 
 ### NGINX configuration example
 
+Edit the NGINX configuration file (`/etc/nginx/sites-enabled/fileuploader`):
+
        server {
                listen 80 default_server;
                listen [::]:80 default_server ipv6only=on;
@@ -95,4 +104,4 @@ Do not allow uploaded code execution!
                        fastcgi_index index.php;
                        include fastcgi_params;
                }
-       }
\ No newline at end of file
+       }