0
Set PersistsUpload = Server.CreateObject("Persits.Upload.1")
PersistsUpload.Save 
set persistsfile = PersistsUpload.Files("file")

When I am uploading the file the following error is returned:

Request.BinaryRead failed: Unspecified error
Paul
  • 4,160
  • 3
  • 30
  • 56
  • There's actually very little information here: what type of file are you uploading, how big is the file, does the user have access to the file (OS), etc. – Paul Sep 23 '14 at 13:31

1 Answers1

0

In most cases it means that your upload script uses Request.Form or Request.QueryString prior to calling Upload.Save XXX. As a result, the BinaryRead method of the Request object fails.

see: http://support.persits.com/show.asp?code=PS01032216

schudel
  • 1,235
  • 2
  • 11
  • 18