1.FAQ
1. How to upload the files to assigned folder?
Pass asp code to assign file catalog.server end must distribute two catalog,one is temporary list aother is save contents.
2. Whether can assign the tempoarary path or not?
yes. You can throuth write FileUploadObj.SetTempFileSavePath(""c:/temp"") in uploaddeal.asp. default path is c:/temp (receive file must setup temporary folder)
3. Whether can assign the save path or not?
yes.You can throuth write FileUploadObj.SetSavePath(""c:/temp"") in uploaddeal.asp.(commonly the temporary path and the save path are in the same disk)
4. Whether can receive the uploader files's name?
The component have special method to receive the uploader files's name or files's size, and so on. Please refer to HELP document.
5. How size can be uploaded a time?
Universal HTTP File Uploader Component can upload no limited size file(in order to avoid time out, can setup
server.ScriptTimeoutproperty in UploadDeal.asp), of course, also can limit the size of the file.
6. How many files can be uploaded one time?
commonly the uploader file number is no limited. also can limit the number by this method.
7. Whether can save the file name and the file path to database?
Of course. Only need midify uploaddeal.asp. You can get the sample in the install path.
8. Whether can band field form value in uploader data?
Of course, Universal HTTP File Uploader use HTTP transfer protocol, and the format of data is same with html submit form.
If you want to band form value, for example, Invoke ActiveX's AddField Method to add a field, syntax:
UFileUploader.AddField('ID', 'ID VALUE').
You can invoke GetFormValueMethod method in server side's deal page(UploadDeal.asp), syntax: FileUploadObj.GetFormValue(""ID""). If you want to get detailed information, Please refer to HELP document.
9. How to solve the difficult question that IIS 6.0 can't upload big size files under the Windows server 2003 system and the Windows XP?
For safe consideration, IIS 6 only can request 200k(204800Byte). Solve ways:
a. Close IIS Admin Service
b. Change the iis Metabase's property to can edit (open iis and click right key in computer name's tree node, once you right click on the tree you go to properties)
c. Open \Windows\system32\inesrv\metabase.xml
d. Modify the value of ASPMaxRequestEntityAllowed, default value is 204800 (can't set too big)
e. Save metabase.xml and start IIS Admin Service
For example: I want to uploade less then 1G. you must set ASPMaxRequestEntityAllowed as 1024*1024*1024 = 1073741824
10. Well i got your program set up but when i hit upload it uploads but the files aren't being put in the folder i told it to, i don't no where they go If your server is win2003 server. default, win2003 server only allow uploader less then 200K. you must do some config. for detail information, please refer to FAQ 9. What you say may be the uploaddeal.asp exist syntax error. You can try run uploaddeal.asp in IE(Image Uploader named ImageUploadDeal.asp). see if exist syntax error.
11. What language this control is develops with?
Uses the C++ language develops.
12. The different between the demo version and the register version?
The demo version have some function been limited, have time limit, and can't update component.
13.How to purchase it?
Afer you purchase our product. You can contact with us and tell me the order number. We will comfirm you order and will send license and production to you in 24 hours.
14. What the License information bundle up?
The License of our products has two kinds of ways. You can choose one in two ways. One is bundle up the hardware ID of Server, another is bundle up the website's domain name. You can choose one in two ways. If you choose first way, You should tell us your website's domain name. at this rate, our product will run on your website. Of course,
if you choose second way, We will provider special tools to you and you run it on your Server which the product will install. This tools will generate some character string. then, You send these character strings to us. we will generate the license number accordding the character string.
2.How to set the upload directory right?
Because of Upload Component need Read and Write right for upload directory. if not it will upload faild.
For example:
In Windows 2003 Server, if i want to upload the file to d:\website\upload.
so you should give IIS User and User Group right to read, create folder and wite this folder.
Remind: you must give Users Group right to write.
Can we preselect a directory/files instead of having the user browse through the directory structure
Can we preselect a directory/files instead of having the user browse through the directory structure each time.
Eg .I know that the user will be uploading from C:\testfiles. Can I directly display this directory as selected and show pictures in there as selected so all the user has to do is click upload.
File uploader Active has a method named as ""AddFile"". You can get the more informattion from help files. You can invoke it before upload.
[JavaScript]
UUploaderID.AddFile(FileName);
[VB Script]
UUploaderID.AddFile FileName
"You must use the '\\' in javascript.
FileUploaderD.AddFile (""E:\\avanis\\avani.jpg"")
and the AddFile will return a value. if add success it will return 0;
else you can get the detail error information by invoke the 'GetError'
Ex:
var ret
ret = FileUploaderD.AddFile(""E:\\avanis\\avani.jpg"")
if (ret != 0)
{
alert(FileUploaderD.GetError(ret))
}
3.how long would delivery of the order take place after payment is made if we are going to download the software
if your payment is made, after getting our confirmation, we would send the official version package and the licence by email as soon as possible. It will not exceed 2 days. And have the interrelated service like free technology support
4.Can you tell me what is breakpoints upload?
Don't worry about unreliable or slow connections. If an upload fails before completion, it is resumed from the point of failure so time and bandwidth are never wasted.
When a file transfer is resumed, File Uploder uses a handshake between the client and the server to determine how much of the transfer has already been received. File Uploder queries the server with an HTTP HEAD request to determine how many bytes were received during the initial file upload
5.can I create folders on client machine automatically and set different file prefixes (upload condition) for different clients?
Yes,it is feasible
6.I want to use your control in my .net website. Is it possible? How do I do that?
it is support .net project. asp.net is compatible for asp.
Our product stransfer protocal is use the standard rfc format, so you can receive the upload data by tradditional HTML upload method. And we support the examples about using in .net.(see the installation path)
7.Resize Image on Client before Upload
Can this control automatically resize the image (to reduce its size) before uploading to the server? How do I tell the control the maximum dimensions of the resized file, and what JPEG compression value to use when storing the intermediate file prior to uploading it?
yes. it support.
it exist two methods to resize the image.
first: resize the image's width and height before upload
the following three attributes is useful:
AutoAdjustImageRatio, MaxImageHeight MaxImageWidth.
e.g.
imageuploadid.AutoAdjustImageRatio = 1
imageuploadid.MaxImageHeight = 1024
imageuploadid.MaxImageWidth = 768
second: set AutoCompressImage attribute. if set this attribute as 1, the imageuploader will compress the image before upload. e.g. imageuploadid.AutoCompressImage = 1
8 Is it possible to make this work on LAMP?
The software looks great. Is it possible to serve it from a PHP / Apache server on Linux?
yes, it support. beacause the protocal is compatible with rfc standard. please download a trial version from our website. after install it, it have many samples in the intstall path. and also it have the help document and PHP example.
9.Three notices about the windows 2003 server
if you are using windows 2003 server.
frist, you need remove the limitaion for only allow upload 200k default.
because 2003 server have the post size limit. you should remove the limit.
the following is the stepment:
a. Close IIS Admin Service
b. Change the iis Metabase's property to can edit (open iis and click right key in computer name's tree node, once you right click on the tree you go to properties)
c. Open \Windows\system32\inesrv\metabase.xml
d. Modify the value of ASPMaxRequestEntityAllowed, default value is 204800 (can't set too big)
e. Save metabase.xml and start IIS Admin Service
For example: I want to uploade less then 1G. you must set ASPMaxRequestEntityAllowed as 1024*1024*1024 = 1073741824
you could also refer the document in the google or microsoft website
second. you should set the permission of save path, it need assign iis user and user group to read and write permission.
and also you need assign create folder permission to the save path and upper of save path
http://uploader.versalsoft.com/UploaderDemo\setuserspermission.GIF
third, you need make sure the imageuploadd.asp didn't exist error. you could check the error by run the imageuploaddea.asp in the IE.
if you found createobject failed, please read this article: refer to the faq 12
.
10.Is the the possibility to change the language of the ActivX output, eg. to Russiun, French, German, etc
currently, it didn't support this language, you could help us to translate it, and we could add it. our program frame
is support multi-language, so it is very easy to support multi-lanuge.
11. When I load the page: ImageUploaderD.aspx I get the script error: UImageUploaderD is undefined
To this error, I think your client could not install the Activex successful, or the CAB package name is not same with UImageUploaderD, please check them.
12.create object failed, how to do?
if you have already install the software in the server, but the object create failed, please modify the com+ setting,
please open the component server in the control panel.
The follwing is the screen capture:
http://www.versalsoft.com/UploaderDemo/com+.gif
13. Is it possible to get the path of the image at the client computer?
you could use the GetFormValue method to get the full path name. The following is the code frament.
' Split file list into string array
arrFileFieldList = split(strFileFieldList, ""|"")
for i = 0 to ubound(arrFileFieldList)
' Get the full file name here
strFullFileName = FileUploadObj.GetFormValue(arrFileFieldList(i))
' Get file name according to field value
strFileName = FileUploadObj.GetUploadFileName(arrFileFieldList(i))
if not strFileName = """" then
'Save file from temp directory into save diectory
FileUploadObj.SaveFile arrFileFieldList(i), strFileName
end if
next"
14. ActiveX HTTP Download Control with vb.net
it's support. please download the vb.net sample here.
http://downloader.versalsoft.com/VB.NETSample.rar
15. Start Upload does nothing
if you are using the registered version. you should use the method of SetLicenseSN to set license first
16 it shows that the image is been uploaded but when I check the folder for the image that is supposed to be uploaded, the image is not there
if you are using windows 2003 server.
frist, you need remove the limitaion for only allow upload 200k default.
second. you should set the permission of save path, it need assign iis user and user group to read and write permission. and also you need assign create folder permission to the save path and upper of save path
http://uploader.versalsoft.com/UploaderDemo\setuserspermission.GIF
third, you need make sure the imageuploadd.asp didn't exist error. you could check the error by run the imageuploaddea.asp in the IE.
You also could consult the FAQ9.
17. where is the cab file?
i have the version of the uploader, but i have know idea of how to get/find the cab file."
it is in the directoy of aspsample.
18.Session in ASP.NET
Session didn't support in the asp.net.
ASP is support. ASP.NET compatible ASP.
If you cann't use the asp to develop. You could use the field to replace session to pass the parameter
The following show how to use the field to pass the parameter:
Uploaderd.aspx
UImageUploaderD.AddField('myStruct', 'value');
Uploaddeal.aspx
Request.Form[""'myStruct'""]"
19 how to Rename uploading files
it has sample in the install path.
also it has the introduce in the help document
20. Illegal URL Address(ImageUploadDealD.asp)!. when You are using trial version.
Trial version only support port 80. Please donn't use other port
21 Large file upload problem for php.
it is working fine, but only for small files. But i need to upload files with 100MB
you should set the apache ,let it could allow to upload more bigger files
22. Pls help!! I need to run this image software on a unix server
pl copy the imageupload.cab to the right position. and copy the php the server. need not to install the package.it will work!!
23. Does this control support java on the server?
yes, of course
24 BreakPoint Php Script
PHP didn't supports. ASP supports break upload |