forked from wycats/laszlo_post_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_upload_test.html
29 lines (28 loc) · 1.1 KB
/
file_upload_test.html
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
<html>
<head>
<title>Zipfile Uploader Test Page</title>
</head>
<body>
<form action="file_upload.jsp" method="post" enctype="multipart/form-data">
<p>
Choose a zip file to upload to the server:
<input name="myFile" type="file"/><br/>
On the server, save the file as: (Enter something here if you want the file to be saved in a different file name - must be a zip file):
<input name="filename" type="text"/><br/>
Specify a UID/path to use, if you want to guarantee overwriting the existing path:
<input name="uid" type="text"/>
</p>
<p>
<input type="submit"/>
<input type="reset"/>
</p>
</form>
<p>
Note that you'll need to download and install the relevant JARs from 'install_to_WEB-INF_lib'
in your LPS WEB-INF/lib for this to work... These files are originally from:
<a href="http://commons.apache.org/downloads/download_fileupload.cgi">commons.fileupload</a>
and
<a href="http://commons.apache.org/downloads/download_io.cgi">commons.io</a>
</p>
</body>
</html>