• I use the webbie theme with EDD plugin.
    I try to upload ebooks in few formats- epub, mobi and fb2 (popular in Russia). The uploading of fb2 files failes and I got a message that it’s because security issuses.
    Can I change this? I realy need the fb2 files.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add this, preferably in a functionality plugin, if not your theme’s functions.php file:

    add_filter('upload_mimes','custom_mime_types');
    
    function custom_mime_types($mimes){
        return array_merge($mimes,array (
          'fb2' => 'application/x-fictionbook+xml'
        ));
    }

    Untested but I think it will work. Make sure you have FTP or better access to your site in case of typos or bad copy/paste, otherwise the sky may fall on your head.

    Thread Starter risrison

    (@risrison)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Failure to upload fb2 files’ is closed to new replies.