CSV file not uploading on Wordpress

后端 未结 4 1683
再見小時候
再見小時候 2021-01-21 10:22

I\'m unable to upload CSV file on the WordPress website

error: Sorry, this file type is not permitted for security reasons

Check the following

4条回答
  •  北海茫月
    2021-01-21 10:48

    I believe, everything is clearly mentioned in the error and you highlighted that too : This file type is not permitted for security reasons

    To fix this, add this code in wp-config.php

    define('ALLOW_UNFILTERED_UPLOADS', true);
    

    Or you can also use a Plugin called "WP Add Mime Types", And add ONLY types which you want to be added

提交回复
热议问题