Live Support, Chat, Upload Control and Rich Text Editor
Welcome to Support forums Sign in | Join | Help |Client Center
in Search

Failed to load resource: the server responded with a status of 500(Internal Server error)

Last post 08-07-2012, 8:21 AM by Kenneth. 25 replies.
Page 2 of 2 (26 items)   < Previous 1 2
Sort Posts: Previous Next
  •  07-25-2012, 9:57 AM 74248 in reply to 74246

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Thanks kenneth.,
     
     Problem solved....
     
    But while uploading a small image file with 5 to 10 kb getting delay to upload.
    The progress bar showing 1 to 2 minutes for uploading with small image file.
     
    Otherwise its working good.
     
    Can i know why its getting very late to upload, Is that issue on server side or mine? 
     
    Thanks 1 sec for ur valuable reply to solve this issue. 
  •  07-25-2012, 9:58 AM 74249 in reply to 74246

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Thanks kenneth.,
     
     Problem solved....
     
    But while uploading a small image file with 5 to 10 kb getting delay to upload.
    The progress bar showing 1 to 2 minutes for uploading with small image file.
     
    Otherwise its working good.
     
    Can i know why its getting very late to upload, Is that issue on server side or mine? 
     
    Thanks 1 sec for ur valuable reply to solve this issue. 
  •  07-26-2012, 8:49 AM 74266 in reply to 74249

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Hi ssjganesh,
     
    Do you get the same delay problem on demo http://www.ajaxuploader.com/Demo/select-multiple-files-upload.aspx? If yes, then should be your firewall or the Antivirus prevent the upload. Maybe you can disable that and try again.
     
    Regards,
     
    Ken 
  •  07-26-2012, 9:00 AM 74270 in reply to 74266

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Hi Kenneth.,
     
         Now the delay problem solved, but i tested the my application in various scenario, that time i was met that same error again. 
    Failed to load resource: the server responded with a status of 500(Internal Server error) .
    Is there any code to flush or clear the ajax uploder after uploading a file?
     
    because i am getting this error when i trying to upload a file at 2nd time.
    For example,
     
    I have uploading some files for a article 1st time, it uploading successfully....
    again i am trying to upload another file for the same article without go back or refresh the page ... at this time it gives me that error.
     
    1.First upload a file and then type something in the ckEditor and click SaveArticle button and then again upload a file u will get that error. 
     
    2.Hover on Welcome menu at the top, click EditNews and edit any article, click SaveArticle button it redirect to upload page,
       then try to upload a file, u wil get error. 
     
    Why?
     

    I give u access details.
     
    Username: ganesh
    password:  gans
     
    goto this url
     
     
    after login u just paste this url.
     
     
     
     
  •  07-26-2012, 2:15 PM 74279 in reply to 74270

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Hi ssjganesh,
     
    Can you try the example page below on your site? Does it get the same problem? Do not test it with ckeditor please, just try it separate.
     
    1. <%@ Page Language="C#" %>  
    2.   
    3. <%@ Register Namespace="CuteWebUI" TagPrefix="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>  
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head id="Head1" runat="server">  
    7.     <title>example</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.         <CuteWebUI:UploadAttachments ID="uploader1" runat="server">  
    12.         </CuteWebUI:UploadAttachments>  
    13.     </form>  
    14. </body>  
    15. </html>  
    Regards,
     
    Ken 
  •  07-26-2012, 3:21 PM 74280 in reply to 74279

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Hi Kenn...
     
       I used the Ajaxuploader  with separate  page without ckeditor, its woking pretty good.
    I tested that in all scenario it working good. And then i used the ckeditor on that page and checked as expected it does not work,
    the same error coming.
     
    So the problem is ckeditor. but i need to use the ckeditor and Ajazuploder on the same page.
    How can i manage this?
     
     
      
     
           
  •  07-27-2012, 7:48 AM 74288 in reply to 74280

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Hi ssjganesh,
     
    I just tested the uploader with ckeditro latest version. It works fine for me. Please try the example page below, does it get the same problem on your end?
     
    1. <%@ Page Language="C#" AutoEventWireup="true" %>  
    2.   
    3. <%@ Register Namespace="CuteWebUI" TagPrefix="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>  
    4. <%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>  
    5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    6. <html xmlns="http://www.w3.org/1999/xhtml">  
    7. <head runat="server">  
    8.     <title>Sample</title>  
    9. </head>  
    10. <body>  
    11.     <form id="form1" runat="server">  
    12.         <div>  
    13.             <CuteWebUI:UploadAttachments ID="uploader1" runat="server">  
    14.             </CuteWebUI:UploadAttachments>  
    15.             <CKEditor:CKEditorControl ID="CKEditor1" runat="server" Height="200">  
    16.             </CKEditor:CKEditorControl>  
    17.         </div>  
    18.     </form>  
    19. </body>  
    20. </html>  
    Regards,
     
    Ken 
     
     
  •  07-27-2012, 10:21 AM 74290 in reply to 74288

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Yes kenneth i met the same error.
     
     
    visit the url, u can directly access the url.
     
    try to upload a file and the typr something in the editor aand then make postback by pressing the save button.
    and then again upload a file u will get that error. 
  •  07-27-2012, 11:07 AM 74292 in reply to 74290

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Hi ssiganesh,
     
    Please try the setting below in your web.config
     
    <httpRuntime requestValidationMode=″2.0″ />
     
    Regards,
     
    Ken 
  •  08-07-2012, 6:00 AM 74353 in reply to 74292

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    If we add this <httpRuntime requestValidationMode=″2.0″ /> its working.
    thanks man., but is there any other problem will may occur in future for this validationmode?
  •  08-07-2012, 8:21 AM 74357 in reply to 74353

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Will not occurs other problems with this setting.
     
    Regards,
     
    Ken 
Page 2 of 2 (26 items)   < Previous 1 2
View as RSS news feed in XML
Powered by Community Server (Commercial Edition), by Telligent Systems