blob: 081277bde55e2dd7b864c4298979471c3cc17526 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<div style="text-align:center">
<?php echo form_open_multipart('file/do_upload'); ?>
File: <input type="file" name="file" size="30" />
<input type="submit" value="Upload" name="process" />
</form>
<br />
<p>OR</p>
<br />
<?php echo form_open_multipart('file/do_paste'); ?>
<textarea name="content" cols="80" rows="20"></textarea><br />
<input type="submit" value="Paste" name="process" />
</form>
</div>
<br /><br />
Uploads/pastes are deleted after 5 days.<br />
<br />
For shell uploading/pasting use:<br />
<pre>
curl -F "content=<-" <?php echo base_url(); ?> < file (not binary safe)
cat file | curl -F "content=<-" <?php echo base_url(); ?> (not binary safe)
curl -F "file=@/home/user/foo" <?php echo base_url(); ?> (binary safe)
</pre>
<br />
If you want to you can use my script (needs python and curl) to upload files, paste text or delete your uploads:<br />
<a href="http://git.server-speed.net/bin/plain/fb">http://git.server-speed.net/bin/plain/fb</a><br />
<br />
If you experience any problems feel free to <a href="http://bluewind.at/?id=1">contact me</a>.<br />
<br />
<br />
<div class="small">
This service is provided without warranty of any kind and may not be used to distribute copyrighted content.
</div>
|