• Hi, i would add .eps in media file uploadable
    I add this code in functions.php

    function my_myme_types($mime_types){
    $mime_types['eps'] = 'application/postscript';
    $mime_types['ai'] = 'application/postscript';
    $mime_types['psd'] = 'image/vnd.adobe.photoshop'; 
    return $mime_types;
    }
    add_filter('upload_mimes', 'my_myme_types', 1, 1);

    But after that, if I upload an .eps, Worppress retieve the message “.eps could not upload for security reasons”, yet.

    Why?
    How can I do?

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘.eps not uploadable’ is closed to new replies.