Help me! Can not support upload ai(adobe illustrator) files?

Last post 08-20-2013, 8:02 PM by Kenneth. 15 replies.
Sort Posts: Previous Next
  •  03-12-2013, 2:41 AM 77021

    Help me! Can not support upload ai(adobe illustrator) files?

    ajax-uploader can not support upload adobe illustrator files? Error message:"Invalid data for application/postscript"!

     

    Ms VS 2008   iis 7.0   .net 4.0

  •  03-12-2013, 12:09 PM 77028 in reply to 77021

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi niyunzao,

     

    Do you get the same problem on demo http://www.ajaxuploader.com/demo/Large-File-Upload.aspx with your file? If yes, can you send me your adobe illustrator file? So we can check it for you.

     

    Kenneth@CuteSoft.net

     

    Regards,

     

    Ken 

  •  03-12-2013, 8:13 PM 77033 in reply to 77028

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Yes, The same problem also appears in the DEMO program!

    How to deal with it? 

    MS vs2008 fileupload control they can upload? 

  •  03-13-2013, 12:04 PM 77035 in reply to 77033

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi niyunzao,

     

    Can you send me your test file(adobe illustrator)? So we can check it for you. Please send it to Kenneth@CuteSoft.net

     

    Regards,

     

    Ken 

  •  03-13-2013, 12:37 PM 77038 in reply to 77035

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    I have to send the test file to your mailbox!

    thanks!

     

  •  03-19-2013, 12:57 AM 77060 in reply to 77035

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi,Ken

     

    Can solve the problem of AI files can not upload it? I have purchased the software, but because the problem can not upload cause my site can not be on the line! 

     

    thanks!

    niyunzao

     

  •  03-19-2013, 11:58 AM 77062 in reply to 77060

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi niyunzao,

     

    I did not get any mail with the adobe ilustrator file. Can you show me your eamil address? do you mind send it to me again?

     

    Regards,

     

    Ken 

  •  03-19-2013, 3:08 PM 77064 in reply to 77062

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi Ken,

    My E-mail address: niyunzao@gmail.com

     I had send a test file to your mailbox again .

    thanks!


  •  03-25-2013, 2:38 PM 77100 in reply to 77062

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi,Ken

     

    Did you receive the message that I  have sent you ?
    Can you solve the problem of upload?I am eager to get your reply.

     

    Regards,

    niyunzao

  •  03-25-2013, 3:17 PM 77102 in reply to 77100

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi niyunzao,

     

    I did not get any mail from niyunzao@gmail.com, is it a very large file? I think I can not receive the attachment which large than 5 mb.

     

    Regards,

     

    Ken 

  •  03-26-2013, 3:53 PM 77109 in reply to 77102

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    /rte-uploads/members/246160/test_files.rar

     

    hi,Ken

     

     I have already sent  test file to your email twise, and the file is small. 
    The upload control which I have bought can not upload any type of  AI (Adobe Illustrator) file. 
     
     
     
     
    thanks
     
    niyunzao 

  •  03-27-2013, 12:05 PM 77111 in reply to 77109

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi niyunzao,

     

    Try disable the mime type checking function by the code below, it should work.

     

            <CuteWebUI:UploadAttachments ID="uploader1" runat="server">
                <ValidateOption EnableMimetypeChecking="false" />
            </CuteWebUI:UploadAttachments>

     

    Regards,

     

    Ken

  •  08-08-2013, 2:47 PM 77832 in reply to 77111

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Is this the only way to fix the issue?  I, too, get the same error when attempting to upload a .eps file.  I don't really want to turn off checking but at the same time I don't really want to list each and every extension that is supported just because I can't upload one legit file.  If this is the only way, can you provide a head start and provide me the list of extensions supported by default so I can just add the additional ones to it?

     

    Ed

  •  08-09-2013, 12:56 PM 77838 in reply to 77832

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    HI edlamprecht,

     

    For the "Invalid data for application/postscript" error, this is the only settings. We have not the full list for it now. Sorry for your inconvenience.

     

    Regards,

     

    Ken 

  •  08-20-2013, 7:53 PM 77871 in reply to 77111

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    I'm getting this error also, how do you disable MimeTypeChecking in a MVC app? I need this to support .AI files.

     

    This does not work:

     

    public override UploaderValidateOption GetValidateOption()
    {
            var option = new UploaderValidateOption
            {                            

              MaxSizeKB = Settings.Instance.MaxSizeKb,
              EnableMimetypeChecking = false
            };
            return option;
    }

  •  08-20-2013, 8:02 PM 77872 in reply to 77871

    Re: Help me! Can not support upload ai(adobe illustrator) files?

    Hi FusionImaging,

     

    For the mvc site, please set it in the handler file too.

     

    1. public override UploaderValidateOption GetValidateOption()  
    2.    {  
    3.        CuteWebUI.UploaderValidateOption option = new UploaderValidateOption();  
    4.        option.EnableMimetypeChecking = false;  
    5.        return option;  
    6.    }  
     

    Regards,

     

    ken 

View as RSS news feed in XML