Managed Projects

HTTP File Server

  Analyzed 1 day ago

HttpFileServer is a simple REST-oriented file server with minimal requirements: * PHP 5 (5.2 I suppose) * web server (Apache will do) * writable directory (this is where your files will be stored) This is for the server part. For the client part you only need to be able to do ... [More] HTTP GET and HTTP POST requests, so you're good with just wget in a batch script (or .NET application, or Ruby, PHP, Java - pretty much anything nowadays can form HTTP requests). Example usage: # store file on server - use HTTP POST wget --post-file=file_to_send.txt http://server/index.php/path/to/store/file.txt -O - # retrieve file - use HTTP GET wget http://server/index.php/path/to/store/file.txt [Less]

149 lines of code

0 current contributors

over 9 years since last commit

2 users on Open Hub

Inactive
0.0
 
I Use This