• greatabid

    (@greatabid)


    I am trying to upload the vector file the extension is “.ai”. I configured it properly but still it is not uploading file but giving error “File finsh-cup-cake.ai not uploaded”.

    Please fix the issue or guide me how i can fix if it is at my end.

    The page I need help with: [log in to see the link]

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author nickboss

    (@nickboss)

    Good morning, what error do you see?

    Best Regards

    Nickolas

    Thread Starter greatabid

    (@greatabid)

    Watch the video please

    Thread Starter greatabid

    (@greatabid)

    @nickboss

    Did you get a chance to review the issue.

    Plugin Author nickboss

    (@nickboss)

    Good afternoon,

    Try to upload the file as administrator. It will fail again, but you will get some more info about the error.

    Please share it with me.

    Best Regards

    Nickolas

    Thread Starter greatabid

    (@greatabid)

    I am doing using administrator, but same error no any extra messages, even i enable debug mode and also enabled “Show Detailed Admin Messages”

    did you try at your end, try to upload .ai extension

    Thread Starter greatabid

    (@greatabid)

    @nickboss ,

    Any update on the issue? did you get a chance to check. Please let me know if it is not able to fix i need to move to other solution.

    Thanks

    Plugin Author nickboss

    (@nickboss)

    Good morning, can you send me the shortcode of the upload form? I tried to upload .ai files in my environment and it works fine. I also tried to open your page, but I got a 403 Forbidden error.

    Nickolas

    Thread Starter greatabid

    (@greatabid)

    [wordpress_file_upload uploadpatterns=”., *.eps, *.pdf, *.ai, *.tiff, *.jpg, *.jpeg” notify=”true” notifyrecipients=”[email protected]” notifymessage=”This is an automatic delivery message to notify you that a new file has been uploaded.”]

    Thread Starter greatabid

    (@greatabid)

    [wordpress_file_upload uploadpatterns="*.*, *.eps, *.pdf, *.ai, *.tiff, *.jpg, *.jpeg" notify="true" notifyrecipients="[email protected]" notifymessage="This is an automatic delivery message to notify you that a new file has been uploaded."]

    i am also having an issue uploading .csv, even tho it’s in the list:

    uploadpatterns=”.jpg,.png,.jpeg,.tif,.gif,.csv,.pdf,.zip,.txt,.rtf,.xls,.xlsx,.doc,.docx,.ppt,.pptx,.ods,.odt,.ots,.ott,.odp,.odg”

    File 06-12-2023.csv not uploadedUpload failed!
    File not allowed.Failed upload path: /home3/bostonj2/public_html/2021site/wp-content/uploads/2024/10/06-12-2023.csv
    Error. This file was rejected because its MIME type is invalid. Its MIME type is: text/plain

    pls advise

    Plugin Author nickboss

    (@nickboss)

    Good morning, I suppose you have the free version of the plugin. So a hook is required to allow csv files that their mime type is text/plain (the plugin accepts csv files with mime type text/csv).

    Install Code Snippets plugin and then add a new snippet. In the snippet add the following code:

    if (!function_exists('wfu_extensions_mime_types_handler')) {
    function wfu_extensions_mime_types_handler($list) {
    $list['csv'] = array( 'text/csv', 'text/plain' );
    return $list;
    }
    add_filter('_wfu_extensions_mime_types', 'wfu_extensions_mime_types_handler', 10, 1);
    }

    In the next release of the plugin this will be fixed so you will not need the hook.

    Best Regards

    Nickolas

Viewing 11 replies - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.