Pure ASP Upload 3 error

I have tried the few suggestions i found, but nothing seems
to work...
I installed Pure ASP 3 when it first came out.. and then all
the updates
afterwards... but since the initial install i have yet to
successfully use
the new version and get rid of this error....
The error is a pop-up window that has the following:
The following JavaScript error occurred:
At line 1 of file "D:\Program
Files\macromedia\dreamweavermx\dreamweaver
MX\configuration\inspectors\Pure ASP Upload 3 FC.js":
|>>?// Pure Upload 3 - File Upload Control Inspector
illegal character
So i am having to use version 2...
Can anyone suggest anything new i can try...

Hi yea,
I have had the same issues with both the latest pure upload
and SIP, I also
found that they didnt do a clean uninstall, thus when I
reloaded version 2
of the pure upload it was a dirty install..
I even deleted the .dat file before loading version 2 but
that didnt help.
I have dropped them a line,
I dont know of any other extension that can compete with pure
upload (when
its working) at present.
kenny

Similar Messages

  • Pure ASP upload

    Is anyone using version 3 of pure ASP upload from dmxzone?
    I need to have a multiple file upload feature which my
    version 2 of the
    extension doesn't seem to support.
    From what I read on the website, there is some flash feature
    which
    handles the multiple selection of files. I'm slightly
    concerned about
    users not having flash 8 player, and therefore not being able
    to
    multiple select. Is the only way to do this with flash, or is
    there a
    way around it?
    Looking for a quick response on this, hence me asking here.
    The
    response from dmxzone has always taken days in my past
    experience!
    Thanks
    Vix

    Thanks for your comments. I'm going to avoid PAU3 and just
    have several
    file fields instead and stick with using the PAU2 which I'm
    used to.
    V.
    Justin Reid wrote:
    > PAU Version 3 does have a flash interface which triggers
    a file widow to
    > select multiple files in one go (similar to that which
    Dreamweaver uses to
    > open multiple files).
    > I've only used PAU3 on one project so far and ended up
    using multiple file
    > fields (gives you more control).
    >
    > If flash is an issue, then you might have issues with
    PAU3 as the upload
    > process (progress indicator) is flash. I'm not sure you
    can switch this
    > off - but then I've not tried.
    >
    > On a side note. I found PAU3 very awkward to get used to
    as I came from
    > using w3Upload where you submit to the upload com in a
    traditional way and
    > not in an AJAX fashion. It's nice, but if you aren't
    used to it, then allow
    > time for the learning curve.
    >
    > Justin
    >
    > "Chris In Madison"
    <[email protected]> wrote in message
    > news:ekpeue$4ej$[email protected]..
    >> PureASP Upload does support multiple file uploads,
    but each one has to
    >> have its own file field on the page and within the
    form. If you put 10
    >> file fields on the page, you can upload 10 files.
    >>
    >> I'm not sure about how v3.x works since I'm not
    using it yet. Are you
    >> speaking of a shift+click type of thing to select
    multiple files at once?
    >> If so, I'm not familiar with that technique which
    may explain the Flash
    >> interface. But, I'm just speculating since I've not
    seen v3.x.
    >>
    >> Best regards,
    >> Chris
    >>
    >
    >

  • Pure ASP Upload help needed...

    Trying to create simple upload page...
    But nothing seems to be happening
    Can anyone offer suggestions on what to check?
    I created 2 pages...
    Page #1 = Simple form with 3 fields title, file upload and
    page
    Page #2 = simple thank you message to confirm upload
    Im sure its something simple... but when i click on Submit
    nothing happens..
    its like nothing is executing the upload...
    I have checked the permissions on the scriptslibrary, the
    upload folder
    where the files will be placed and they are set to same
    read/write/ execute
    Below is the code on the page with the upload option:
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <!--#include virtual="/Connections/webuplo.asp" -->
    <!--#include virtual="/ScriptLibrary/incPU3Class.asp"
    -->
    <!--#include virtual="/ScriptLibrary/incPU3Utils.asp"
    -->
    <%
    '*** Pure ASP File Upload 3.0.9
    ' Process form form1
    Dim pau, DMX_uploadAction, UploadRequest, UploadQueryString,
    pau_thePath,
    pau_nameConflict, pau_saveWidth, pau_saveHeight
    Set pau = new PureUpload
    pau.ScriptLibrary = "/ScriptLibrary"
    pau.TimeOut = 500
    pau.ConflictHandling = "over"
    pau.StoreType = "path"
    pau.UploadFolder = """../vendor_compliance"""
    pau.Required = true
    pau.AllowedExtensions = "DOC,PDF" ' "custom"
    pau.ProcessUpload
    pau.SaveAll
    %>
    <%
    Dim MM_editAction
    MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
    If (UploadQueryString <> "") Then
    MM_editAction = MM_editAction & "?" &
    Server.HTMLEncode(UploadQueryString)
    End If
    ' boolean to abort record edit
    Dim MM_abortEdit
    MM_abortEdit = false
    %>
    <%
    If (CStr(UploadFormRequest("MM_insert")) = "form1") Then
    If (Not MM_abortEdit) Then
    ' execute the insert
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_webuplo_STRING
    MM_editCmd.CommandText = "INSERT INTO dbo.tbl_docs
    (linktitle,
    uploadfile, displaypage) VALUES (?, ?, ?)"
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param1", 201,
    1, 50, UploadFormRequest("linktitle")) ' adLongVarChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param2", 201,
    1, 100, UploadFormRequest("uploadfile")) ' adLongVarChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param3", 201,
    1, 5, UploadFormRequest("displaypage")) ' adLongVarChar
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
    ' append the query string to the redirect URL
    Dim MM_editRedirectUrl
    MM_editRedirectUrl = "/admin_new/insert_docu_com.asp"
    If (UploadQueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0)
    Then
    MM_editRedirectUrl = MM_editRedirectUrl & "?" &
    UploadQueryString
    Else
    MM_editRedirectUrl = MM_editRedirectUrl & "&" &
    UploadQueryString
    End If
    End If
    Response.Redirect(MM_editRedirectUrl)
    End If
    End If
    %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <title>Upload Documents</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <script
    type="text/javascript"><%=pau.generateScriptCode()%></script>
    <script src="/ScriptLibrary/incPU3.js"
    type="text/javascript"></script>
    </head>
    <body bgcolor="#FFFFFF">
    <form ACTION="<%=MM_editAction%>" METHOD="post"
    enctype="multipart/form-data" name="form1" id="form1"
    onsubmit="<%=pau.submitCode()%>;return
    document.MM_returnValue">
    <label>Title<input name="linktitle" type="text"
    id="linktitle" size="40"
    /></label>
    <br>
    <label>Upload<input name="uploadfile" type="file"
    id="uploadfile"
    onchange="<%=pau.validateCode()%>;return
    document.MM_returnValue" size="40"
    /></label>
    <br>
    <label>Display Page
    <select name="displaypage" id="displaypage">
    <option>Please select a Page</option>
    <option value="vc">Vendor Compliance</option>
    <option value="n">News</option>
    </select>
    </label>
    ( Select page to be displayed on ) <br>
    <input name="Submit" type="button" id="Submit"
    value="Upload" />
    <input type="hidden" name="MM_insert" value="form1">
    </form>
    </body>
    </html>
    ASP, SQL2005, DW8 VBScript

    Not sure what or why this is happening.. or if its now
    related to IE7,
    But after all the problems i had and corrected below.. i now
    have the same
    problem and this time all the code seems to look ok..
    All i did was add 4 more fields of data to be collected, made
    sure that the
    insert record behavior reflects the new fields and everything
    is ok.. but
    using IE7 when i complete the form and hit update, the page
    post back saying
    i have incomplete data and nothing is written to the
    database.
    ASP, SQL2005, DW8 VBScript
    "Daniel" <[email protected]> wrote in message
    news:[email protected]...
    >I really appreciate everyones help.. i went thru and
    compared line by line
    >with the one that worked and the one that wasnt and it
    was a simple code
    >error...
    >
    > On the page that works: this is how the submit was
    coded...
    > <input type="submit" name="Submit" value="Submit"
    />
    >
    > On the page that didnt work it was coded like this:
    > <input name="Submit" type="button" id="Submit"
    value="Upload" />
    >
    > Apparently there is an order to this.. i ordered
    everything the same and
    > it finally worked...
    >
    >
    > --
    > ASP, SQL2005, DW8 VBScript
    > "Daniel" <[email protected]> wrote in message
    > news:[email protected]...
    >> Trying to create simple upload page...
    >>
    >> But nothing seems to be happening
    >>
    >> Can anyone offer suggestions on what to check?
    >>
    >> I created 2 pages...
    >> Page #1 = Simple form with 3 fields title, file
    upload and page
    >> Page #2 = simple thank you message to confirm upload
    >>
    >> Im sure its something simple... but when i click on
    Submit nothing
    >> happens.. its like nothing is executing the
    upload...
    >> I have checked the permissions on the
    scriptslibrary, the upload folder
    >> where the files will be placed and they are set to
    same read/write/
    >> execute
    >>
    >> Below is the code on the page with the upload
    option:
    >>
    >> <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    >> <!--#include virtual="/Connections/webuplo.asp"
    -->
    >> <!--#include
    virtual="/ScriptLibrary/incPU3Class.asp" -->
    >> <!--#include
    virtual="/ScriptLibrary/incPU3Utils.asp" -->
    >> <%
    >> '*** Pure ASP File Upload 3.0.9
    >> ' Process form form1
    >> Dim pau, DMX_uploadAction, UploadRequest,
    UploadQueryString, pau_thePath,
    >> pau_nameConflict, pau_saveWidth, pau_saveHeight
    >> Set pau = new PureUpload
    >> pau.ScriptLibrary = "/ScriptLibrary"
    >> pau.TimeOut = 500
    >> pau.ConflictHandling = "over"
    >> pau.StoreType = "path"
    >> pau.UploadFolder = """../vendor_compliance"""
    >> pau.Required = true
    >> pau.AllowedExtensions = "DOC,PDF" ' "custom"
    >> pau.ProcessUpload
    >> pau.SaveAll
    >> %>
    >> <%
    >> Dim MM_editAction
    >> MM_editAction =
    CStr(Request.ServerVariables("SCRIPT_NAME"))
    >> If (UploadQueryString <> "") Then
    >> MM_editAction = MM_editAction & "?" &
    >> Server.HTMLEncode(UploadQueryString)
    >> End If
    >>
    >> ' boolean to abort record edit
    >> Dim MM_abortEdit
    >> MM_abortEdit = false
    >> %>
    >> <%
    >> If (CStr(UploadFormRequest("MM_insert")) = "form1")
    Then
    >> If (Not MM_abortEdit) Then
    >> ' execute the insert
    >> Dim MM_editCmd
    >>
    >> Set MM_editCmd = Server.CreateObject
    ("ADODB.Command")
    >> MM_editCmd.ActiveConnection = MM_webuplo_STRING
    >> MM_editCmd.CommandText = "INSERT INTO dbo.tbl_docs
    (linktitle,
    >> uploadfile, displaypage) VALUES (?, ?, ?)"
    >> MM_editCmd.Prepared = true
    >> MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param1", 201,
    >> 1, 50, UploadFormRequest("linktitle")) '
    adLongVarChar
    >> MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param2", 201,
    >> 1, 100, UploadFormRequest("uploadfile")) '
    adLongVarChar
    >> MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param3", 201,
    >> 1, 5, UploadFormRequest("displaypage")) '
    adLongVarChar
    >> MM_editCmd.Execute
    >> MM_editCmd.ActiveConnection.Close
    >>
    >> ' append the query string to the redirect URL
    >> Dim MM_editRedirectUrl
    >> MM_editRedirectUrl =
    "/admin_new/insert_docu_com.asp"
    >> If (UploadQueryString <> "") Then
    >> If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare)
    = 0) Then
    >> MM_editRedirectUrl = MM_editRedirectUrl & "?"
    & UploadQueryString
    >> Else
    >> MM_editRedirectUrl = MM_editRedirectUrl &
    "&" & UploadQueryString
    >> End If
    >> End If
    >> Response.Redirect(MM_editRedirectUrl)
    >> End If
    >> End If
    >> %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    >> "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    >> <html xmlns="
    http://www.w3.org/1999/xhtml">
    >> <head>
    >> <title>Upload Documents</title>
    >> <meta http-equiv="Content-Type"
    content="text/html; charset=iso-8859-1"
    >> />
    >> <script
    type="text/javascript"><%=pau.generateScriptCode()%></script>
    >> <script src="/ScriptLibrary/incPU3.js"
    type="text/javascript"></script>
    >> </head>
    >> <body bgcolor="#FFFFFF">
    >> <form ACTION="<%=MM_editAction%>"
    METHOD="post"
    >> enctype="multipart/form-data" name="form1"
    id="form1"
    >> onsubmit="<%=pau.submitCode()%>;return
    document.MM_returnValue">
    >> <label>Title<input name="linktitle"
    type="text" id="linktitle"
    >> size="40" /></label>
    >> <br>
    >> <label>Upload<input name="uploadfile"
    type="file" id="uploadfile"
    >> onchange="<%=pau.validateCode()%>;return
    document.MM_returnValue"
    >> size="40" /></label>
    >> <br>
    >> <label>Display Page
    >> <select name="displaypage" id="displaypage">
    >> <option>Please select a Page</option>
    >> <option value="vc">Vendor
    Compliance</option>
    >> <option value="n">News</option>
    >> </select>
    >> </label>
    >> ( Select page to be displayed on ) <br>
    >> <input name="Submit" type="button" id="Submit"
    value="Upload" />
    >> <input type="hidden" name="MM_insert"
    value="form1">
    >> </form>
    >> </body>
    >> </html>
    >>
    >> --
    >> ASP, SQL2005, DW8 VBScript
    >>
    >
    >

  • File upload no error no file - my solution

    In case someone out there struggles with the no error no file problem with file upload ASP/VB, after days of searching for a solution I finally found out it was an ASP upload max size problem.
    Take a look at this post at the Interakt forum, right at the end of the post is the solution to the max size limit in ASP
    http://www.interaktonline.com/Products/Dreamweaver-Extensions/MXFileUpload/Product-Forum/D etails/62313/File+upload+size.html
    Hope it helps!
    Cecilia

    Thanks Even i found out later this was the culprit.

  • Looking for a ASP upload ext or code

    With all the problems I have had with PureASP3... I need
    something as backup
    to support the pages I have already created...
    I don't need all the bells and whistles like Pure ASP has...
    I just need the
    ability to upload files, and capture the path in the
    database..
    Is there anything available in the form of ext or maybe
    tutorial on how to
    accomplish this?
    DWMX - ASP - Access / SQL

    Try
    http://www.freeaspupload.net/
    Can download the code and modify for free. If this is behind
    a secure area
    and only you, then you'll be fine. Maybe think about
    JavaScript if you have
    many users...
    HTH,
    Piers

  • Upload Failed error while uploading Role

    Hello Everyone,
    I am uploading a role using the following data in the Identity management Import file. I have also checked the "Override Existing data" file checkbox.
    [Role]
    rid=pcd:portal_content/uk.bc.BGSM_BUSINESS_CONTINUITY/uk.bc.BGSM_CSA
    rdesc=BGSM CSA
    user=jonesa;smithj;knottr;
    I am getting a "UPLOAD FAILED" error message after I click on the Upload button. I am doing the above task in NW CE 7.2. I would greatly appreciate your help if some one can help me in figuring out what the problem might be. Let me know if you need any further information. Thanks.
    Regards,
    Gopal.

    removed the rdesc=BGSM CSA and uploading the file sorted the issue!

  • Pure virtual function call error while saving the vi.

    Hi everybody,
    I'm using LabVIEW 8.6 to create the applications. I got "fatal error: memorymanager.cpp: line 437 and Pure virtual function call error: R6025, while i try to save the vi. Also no DAQ cards are interfaced with my PC.
    How can i rectify this error?
    Solved!
    Go to Solution.

    Hi solutions,
    the simplest solution would be to recreate the VI from scratch. Yes, really!
    You can also try to copy the block diagram to a new VI, this might help too. Or to clean up your VI be creating subVIs…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • TS1424 How do you fix a R6025 pure virtual function call error?  When I try to search for music, iTunes freezes & returns this message.

    How do you fix a R6025 pure virtual function call error?  When I try to search for music, iTunes freezes & returns this message.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Microsoft upload Center Error

    Hi Experts,
    Our team has an intranet website (Called Content Server) and it has lots of MS office docs. The functionality is such that when any user clicks on EDIT, documents are opened and after changes are saved, it gets updated in the server. But for some users,
    when they click on save after making changes, get Upload Center Error. But this error does not come for all users. In fact even affected users do not get these all the times. But in a day 10-15 times we get issues like this. Can anyone let me know why this
    error comes. Please ask me any details that you need to resolve the issue.
    Error: "Server file updated"  or "Sign in required".

    Hi,
    When someone was trying to save their changes back to server, are there any other user opening the specific copy on the server ?
    Please try to delete the files in the cache, and then verify result:
    http://office.microsoft.com/en-au/excel-help/office-document-cache-settings-HA010388664.aspx?CTT=5&origin=HA010388348
    http://office.microsoft.com/en-au/excel-help/microsoft-office-upload-center-HA010388348.aspx?CTT=5&origin=HA010388664
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • 42001 Presenter Publish Error  Can't create uploader unknown error

    42001 Presenter Publish Error Can't create uploader unknown
    error
    Well I guess that about says it all. I cannot publish ANY of
    my Presenter files to Connect Pro... Do I need to do a Presenter
    reinstall?

    I know this is from 2010 but I just started with a company that uses this software and we are receiving this same error.  I tried doing the regsvr32 ppsuplo.dll  but came back with the following result "  The module "ppsuplo.dll " failed to load.  Make sure the binary is stored at the specified path or debug it to check for problems with the binary or dependent .DLL files.  The specified module could not be found.  I then looked in the program files folder for presenter and found the file right there.  Then tried using the repair option without any luck.  Anyone have an idea of what else we can do?

  • When uploading dreamwaver error code appears  U44M1P7

    when uploading dreamwaver error code appears  U44M1P7. please advise

    Hi MartinLoos,
    Please attach the Pdapp.log: http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.
    Regards,
    Romit Sinha

  • Interakt File Upload incompatible with Firefox?  Recommend ASP Upload tool?

    Hi,
    I've been using Interakt's File Upload tool for quite some
    time but have
    recently been made aware that it doesn't work in Firefox!
    Anyway, I notice that Interakt no longer exist now, having
    been bought out
    by Adobe some time ago as it turns out.
    Has anyone experienced this problem and found a solution?
    Adobe aren't
    offering any support for the Interakt products and no-one is
    answering, or
    even looking at, their forums.
    My feeling is that I'll need to just scrap the Interakt
    extension and try
    something else? Can anyone recommend a good File Upload
    extension for
    Dreamweaver ASP/VBScript?
    Please do not recommend DMX Zone as I am looking for a
    company that actually
    provides customer support for their products!
    Thanks for any advice offered. Much appreciated
    Nath.

    Hi Joris,
    Is the Adobe Dreamweaver Developer Toolkit included with
    Dreamweaver CS3?
    I'm using Dreamweaver 8.0.2 at the moment, but I would
    upgrade to CS3 if it
    included the Developer Toolkit. If not, it would appear that
    Adobe want
    $299 for it, although I'm in the UK, so it'll probably be
    double that! :o(
    I was previously using Interakt's File Upload
    behaviour/extension, but the
    re-direct code isn't Firefox compatible, so it doesn't
    re-direct correctly:
    <!--#include file="includes/common/KT_common.asp" -->
    <!--#include file="includes/tNG/tNG.inc.asp" -->
    <%
    'Make a transaction dispatcher instance
    Dim tNGs: Set tNGs = new tNG_dispatcher
    tNGs.Init ""
    %>
    <%
    'start Trigger_FileUpload trigger
    'remove this line if you want to edit the code by hand
    Function Trigger_FileUpload (ByRef tNG)
    Dim uploadObj: Set uploadObj = new tNG_FileUpload
    uploadObj.Init tNG
    uploadObj.setFormFieldName "imageone"
    uploadObj.setDbFieldName "imageone"
    uploadObj.setFolder "itemphotos/"
    uploadObj.setMaxSize 1000
    uploadObj.setAllowedExtensions "jpg, gif, jpeg"
    uploadObj.setRename "auto"
    Set Trigger_FileUpload = uploadObj.Execute()
    End Function
    'end Trigger_FileUpload trigger
    %>
    <%
    'start Trigger_Custom trigger
    Function Trigger_Custom (ByRef tNG)
    query = "SELECT rowID FROM table WHERE rowID = " &
    Session("rowIDsess")
    On Error Resume Next
    Set rsCheck = tNG.connection.Execute(query)
    if (Err.Number <> 0) OR (Not rsCheck.EOF) then
    KT_redir("confirmation.asp")
    else
    Set Trigger_Custom = nothing
    end if
    On Error GoTo 0
    End Function
    'end Trigger_Custom trigger
    %>
    As you can see, it should redirect to confirmation.asp, but
    this doesn't
    work in Firefox - it just loads a blank white page! Do you
    have a re-direct
    selected in your form using Kollection 3.7.1? Does it work?
    Is my code
    vastly different to what you've got?
    I purchased Advanced HTML Editor from DMX Zone, experienced a
    problem with
    it, sent e-mails and posted on their forum. I did not receive
    ONE reply. I
    won't be back.
    Would appreciate any help you could offer.
    Thank you.
    Nathon.
    > Some of the interakt products are now sold as Adobe
    Dreamweaver Developer
    > Toolkit,
    > using Kollection 3.7.1 I can't reproduce not being able
    to upload in
    > Firefox on Mac and Windows.
    >
    > I have good experiences with DMXZone support, why are
    you suggesting
    > they're not providing support?

  • Files are not getting updated in sharepoint 2013 because of office upload center error

    Dear Team,
    I am getting upload failed/upload error in Office Upload Center.
    Scenario: I opened excel(version is 2013) file from sharepoint 2013 application and closed and after updating. Later when I opened the file I got error like "UPLOAD FAILED We are sorry this didn't work. Try saving again later and if that still doesn't
    work, click save a copy."
    I found the error is because file is getting upload failed / upload error in microsoft office upload center2013. 
    Please let me know if anyone know the solution for my issues
    Thanks in Advance
    Girish

    Hi Girishkg,
    The default IIS limit for the upload file size is 30MB. If the selected files are larger than 30MB, the files are not uploaded.
    The limit can be set in web application’s web.config file or in IIS .
    There are two detailed articles about setting the limit:
    http://www.brainlitter.com/2009/07/13/sharepointcannot-upload-documents-larger-than-30mb-on-windows-server-2008-or-sbs-2008-application-servers/
    http://expectedexception.wordpress.com/2011/02/08/upload-multiple-files-fail-without-error/
    Feel free to reply if the issue still exists.
    Best regards
    Wendy Li
    TechNet Community Support

  • Sharepoint 2013 Upload documents error

    I have users in Europe that are unable to upload their documents to Sharepoint, we hare just going LIVE with Sharepoint and have come across this issue, any help would be appriciated.
    [Forced due to logging gap, cached @ 02/14/2014 09:11:11.46, Original Level: Verbose] No data was found on the incoming client request 
    02/14/2014 09:11:11.94  OWSTIMER.EXE (0x1968)                    0x2EC8 SharePoint Foundation          Monitoring                   
     nasq Medium   Entering monitored scope (Timer Job job-timer-locks). Parent No 78936543-e4ec-46d1-9fa4-eb2e7f0314d7
    02/14/2014 09:11:11.94  OWSTIMER.EXE (0x1968)                    0x2EC8 SharePoint Foundation          Logging
    Correlation Data       xmnv Medium   Name=Timer Job job-timer-locks 6c1d749c-98f4-c091-4b50-af9d33019692
    02/14/2014 09:11:11.94  OWSTIMER.EXE (0x1968)                    0x31BC SharePoint Foundation          Monitoring                   
     nasq Medium   Entering monitored scope (Timer Job MySite-Instantiation-Interactive-Request-Queue). Parent No f6d5da03-0759-484f-8dbf-35e450f84783
    02/14/2014 09:11:11.94  OWSTIMER.EXE (0x1968)                    0x31BC SharePoint Foundation          Logging
    Correlation Data       xmnv Medium   Name=Timer Job MySite-Instantiation-Interactive-Request-Queue 6c1d749c-98f4-c091-4b50-a1097818c997
    02/14/2014 09:11:11.94  OWSTIMER.EXE (0x1968)                    0x31BC SharePoint Portal Server       Personal Site Instantiation  
     aj58q Medium   <LogTimerJobInstance> Starting timer My Site Instantiation Interactive Request Queue (e94a6caa-b0f5-4897-b489-585ca50c7803) for web application: SP-MySite.hosting.scottwilson.com. Function: MySiteInstantiationJob:Execute 6c1d749c-98f4-c091-4b50-a1097818c997
    02/14/2014 09:11:11.94  OWSTIMER.EXE (0x1968)                    0x31BC SharePoint Portal Server       Personal Site Instantiation  
     aj58r Medium   <LogTimerJobInstance> Finishing on timer My Site Instantiation Interactive Request Queue (e94a6caa-b0f5-4897-b489-585ca50c7803) for web application: SP-MySite.hosting.scottwilson.com.  Function: MySiteInstantiationJob:Execute 6c1d749c-98f4-c091-4b50-a1097818c997
    02/14/2014 09:11:11.94  OWSTIMER.EXE (0x1968)                    0x31BC SharePoint Foundation          Monitoring                   
     b4ly Medium   Leaving Monitored Scope (Timer Job MySite-Instantiation-Interactive-Request-Queue). Execution Time=5.7581 6c1d749c-98f4-c091-4b50-a1097818c997
    02/14/2014 09:11:11.96  w3wp.exe (0x3860)                        0x45E8 SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Render Ribbon.). Parent SharePointForm Control Render 6c1d749c-48d6-c091-4b50-a738b7f35b33
    02/14/2014 09:11:11.96  w3wp.exe (0x3860)                        0x45E8 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (Render Ribbon.). Execution Time=3.7351 6c1d749c-48d6-c091-4b50-a738b7f35b33
    02/14/2014 09:11:11.96  w3wp.exe (0x3860)                        0x45E8 SharePoint Server Search       Query                        
     dn4s High     FetchDataFromURL start at(outside if): 1 param: start 6c1d749c-48d6-c091-4b50-a738b7f35b33
    02/14/2014 09:11:12.00  w3wp.exe (0x3860)                        0x45E8 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (Request (GET:http:///SitePages/Home.aspx?AjaxDelta=1&isStartPlt1=1392369075368)).
    Execution Time=545.3983 6c1d749c-48d6-c091-4b50-a738b7f35b33
    02/14/2014 09:11:12.02  w3wp.exe (0x3860)                        0x1B68 SharePoint Foundation        
     Request Management             aeboc High     [Forced due to logging gap, cached @ 02/14/2014 09:11:11.46, Original Level: Verbose] No data was found on the incoming
    client request 6c1d749c-48d6-c091-4b50-a738b7f35b33
    02/14/2014 09:11:12.02  w3wp.exe (0x3860)                        0x1B68 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (SPRoutingReverseProxy Get Response). Execution Time=554.6085 6c1d749c-48d6-c091-4b50-a738b7f35b33
    02/14/2014 09:11:12.02  w3wp.exe (0x3860)                        0x2090 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (Request (GET:http:///SitePages/Home.aspx?AjaxDelta=1&isStartPlt1=1392369075368)).
    Execution Time=561.8352 6c1d749c-48d6-c091-4b50-a738b7f35b33
    02/14/2014 09:11:12.05  OWSTIMER.EXE (0x1968)                    0x2EC8 SharePoint Foundation          Monitoring                   
     b4ly Medium   Leaving Monitored Scope (Timer Job job-timer-locks). Execution Time=106.8584 6c1d749c-98f4-c091-4b50-af9d33019692
    02/14/2014 09:11:12.14  w3wp.exe (0x31D8)                        0x3928 SharePoint Server Search       Query                        
     ac3iq High     Ims::EndPoints: old: net.tcp://BA-SHA-001/EA323E/QueryProcessingComponent1/ImsQueryInternal;, new: net.tcp://BA-SHA-001/EA323E/QueryProcessingComponent1/ImsQueryInternal; 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Projects - SharePointServerSearch(SP-SearchService-PRD_0_Portal_Content)\Transactions
    Completed. instanceHandle: 3. 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Projects - SharePointServerSearch(SP-SearchService-PRD_0_Portal_Content)\Transactions
    In Progress. instanceHandle: 3. 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Projects - SharePointServerSearch(SP-SearchService-PRD_0_Portal_Content)\Transactions
    in filters. instanceHandle: 3. 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Projects - SharePointServerSearch(SP-SearchService-PRD_0_Portal_Content)\Transactions
    Started. instanceHandle: 3. 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Projects - SharePointServerSearch(SP-SearchService-PRD_0_Portal_Content)\Transactions
    Delayed. instanceHandle: 3. 
    02/14/2014 09:11:13.06  w3wp.exe (0x3860)                        0x3FDC SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Request (POST:http://_layouts/15/inplview.aspx?List={52D82E91-4033-4877-B596-83F8711AC2ED}&View={91DA3981-73EA-4FB8-A4A2-A8231E6F1AB1}&ViewCount=15&IsXslView=TRUE&IsCSR=TRUE&IsRibbon=TRUE&Cmd=EcbView)).
    Parent No 
    02/14/2014 09:11:13.06  w3wp.exe (0x3860)                        0x3FDC SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (POST:http:///_layouts/15/inplview.aspx?List={52D82E91-4033-4877-B596-83F8711AC2ED}&View={91DA3981-73EA-4FB8-A4A2-A8231E6F1AB1}&ViewCount=15&IsXslView=TRUE&IsCSR=TRUE&IsRibbon=TRUE&Cmd=EcbView) 6d1d749c-d83a-c091-4b50-ad3a9739452b
    02/14/2014 09:11:13.06  w3wp.exe (0x3860)                        0x3FDC SharePoint Foundation        
     Request Management             ai2q3 High     Reached maximum number of failed machines based on ping results for this routing group 6d1d749c-d83a-c091-4b50-ad3a9739452b
    02/14/2014 09:11:13.06  w3wp.exe (0x3860)                        0x3FDC SharePoint Foundation        
     Request Management             adc7u Medium   Mapping URI from 'http:///_layouts/15/inplview.aspx?List={52D82E91-4033-4877-B596-83F8711AC2ED}&View={91DA3981-73EA-4FB8-A4A2-A8231E6F1AB1}&ViewCount=15&IsXslView=TRUE&IsCSR=TRUE&IsRibbon=TRUE&Cmd=EcbView'
    to 'http://BA-SHA-001/Projects/Spain/Bilbao/SP-BIL-13002/_layouts/15/inplview.aspx?List=%7B52D82E91-4033-4877-B596-83F8711AC2ED%7D&View=%7B91DA3981-73EA-4FB8-A4A2-A8231E6F1AB1%7D&ViewCount=15&IsXslView=TRUE&IsCSR=TRUE&IsRibbon=TRUE&Cmd=EcbView' 6d1d749c-d83a-c091-4b50-ad3a9739452b
    02/14/2014 09:11:13.06  w3wp.exe (0x3860)                        0x26B4 SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Request (POST:http:///_layouts/15/inplview.aspx?List=%7B52D82E91-4033-4877-B596-83F8711AC2ED%7D&View=%7B91DA3981-73EA-4FB8-A4A2-A8231E6F1AB1%7D&ViewCount=15&IsXslView=TRUE&IsCSR=TRUE&IsRibbon=TRUE&Cmd=EcbView)).
    Parent No 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Content Plugin - SharePointServerSearch(a37d97d0-48e7-4b6f-a8aa-7c342d7f1f9c-crawl-0
    -Regular Crawl)\Items Ready. instanceHandle: 4. 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Content Plugin - SharePointServerSearch(a37d97d0-48e7-4b6f-a8aa-7c342d7f1f9c-crawl-0
    -Continuous Crawl)\Items Ready. instanceHandle: 5. 
    02/14/2014 09:11:13.06  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Content Plugin - SharePointServerSearch(a37d97d0-48e7-4b6f-a8aa-7c342d7f1f9c-crawl-0
    -Regular Crawl)\Items Submitted. instanceHandle: 4. 
    02/14/2014 09:11:13.08  mssearch.exe (0x0BEC)                    0x1F4C SharePoint Server            
     Unified Logging Service        9saa Unexpected OpenQuery Failed with status ID: 0x800007d0. QueryPath: \Search Gatherer Content Plugin - SharePointServerSearch(a37d97d0-48e7-4b6f-a8aa-7c342d7f1f9c-crawl-0
    -Continuous Crawl)\Items Submitted. instanceHandle: 5. 
    02/14/2014 09:11:13.08  w3wp.exe (0x3860)                        0x26B4 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (POST:http:///_layouts/15/inplview.aspx?List=%7B52D82E91-4033-4877-B596-83F8711AC2ED%7D&View=%7B91DA3981-73EA-4FB8-A4A2-A8231E6F1AB1%7D&ViewCount=15&IsXslView=TRUE&IsCSR=TRUE&IsRibbon=TRUE&Cmd=EcbView) 6d1d749c-d83a-c091-4b50-ad3a9739452b
    02/14/2014 09:11:13.08  w3wp.exe (0x3860)                        0x26B4 SharePoint Foundation        
     Authentication Authorization   agb9s Medium   Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|domain\user, ClaimsCount=52 6d1d749c-d83a-c091-4b50-ad3a9739452b

    Hi CliveWightman,
    i checked the logs, and seems from the logs it is not when upload happens, but when create new folder. please let me know if it is true.
    based from the log: "list doesn't exist", this should be indicate a server side error, but from you previous testing, it looks like a client side issue (IE8). please help to clarify if should this is a server side or client side.
    if should this is a client side, then only at specific client machine or specific application that run in the client machine only that able to reproduce the issue, you can try also to install higher IE, such as IE 9 or 10 to try if should this is client
    issue.
    Please use below command to export the schema of good library and problematic one. Make a comparison between 2 schemas
    $site=get-spsite URL
    $web=$site.openweb(“sitename”)
    $list=$web.lists[“ListName”]
    $list.SchemaXml >>C:\1.xml
    and please check IE add-ons, verify if "STSUPLD.UPLOADCTL" is enabled.
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • File upload java errors...HEEELPPP!

    All was working fine for months, now getting java errors in my ADDT. Mostly related to file uploads, or image uploads. I found that I don't get these errors in older sites that I've worked with, but I've created a new site and started from scratch and I'm still getting them.
    Here are the errors and what I'm doing:
    *I go insert record form wizard (in ADDT)
    *One field is a date, others are text, one is an integer, one is a file field
    That works ok up to here.
    *Then I choose ADDT > File upload. I get the following error immediately: "While executing canApplyserverBehavior in kb_FileUpload.htm, a javascript error occured."
    *I click ok, the wizard box attempts to load and it give me the error: "While executing onLoad in kb_FileUpload.htm, the following javascript errors occured:
    At line 354 of the file "Macintosh HD:Applications:Adobe Dreamweaver CS3:Configuration:Shared:DeveloperToolbox:classes:triggerUtil.js":
    TypeError: hash[transactionColumn[k]].push is not a fuction.
    I'm totally tearing my hair out, not to mention not hitting deadlines with this... can anyone help. I've tried removing the fileCache, rebuilding the site cache, removing and rebuilding the includes folder, removing and reinstalling ADDT. HEEEEEELLLLLPPP.

    Hi
    Please look into this about the destination
    Pathname of directory in which to upload the file. If not an
    absolute path (starting a with a drive letter and a colon, or a
    forward or backward slash), it is relative to the ColdFusion
    temporary directory, which is returned by the GetTempDirectory
    function.

Maybe you are looking for