Hello Community
I have added the Plupload plugin (File Uploader with Plupload) and cannot upload files. The upload attachments button is there but getting Errors on all img, docs, etc:
“flag.jpg: Error 102 – You do not have permission to upload images”
“v4.pdf: Error 104 – You do not have permission to upload files”
“music.mp3: Error 103 – You do not have permission to upload media”
My Install:
WordPress: 5.2.1
Theme: Enfold 4.5.7
SimplePress: Version: 6.2.1 Build: 15862
Plupload: Version 5.1.0
Server: wpengine
Environment: Staging (no cached CSS or JS)
Browser: Chrome in Incognito
SimplePress Member (with Permissions) = yes
My Settings:
Forum > Components > File Uploads:
- All boxes checked to insert into post content
- All upload limits set to unlimited
- All available file formats added for images,videos,docs(you name it-I added it-yes comma separated)
- Max width and Height restrictions – images = 5000×5000
Forum > Permissions > Manage Permission Sets
Set for all Available access: (Members / Guests / Moderators, etc)
When I was logged in as a member I even looked at Profile > Permissions – all are checked as expected for uploads
Uploading
- Can upload avatars
- Can upload images in posts
- Can upload media in posts
- Can upload files in posts
- Can upload signature images
- Can manage their uploaded attachments in profile
Forum > Integration > Storage Location
- All left to default
- All found by wordpress / simplepress
- All Write = OK
- Even chatted with the server (wpengine) yes – write and read is OK
Forum > Toolbox > Housekeeping
- Flushed all environments – before and after disabling plugins and themes
Plugins
- all deactivated except for SimplePress and the Plupload = no luck
Themes
- Went to 2019 default theme – no luck
Community Support:
- https://simple-press.com/support-forum/community-support-theme-and-plugin-topics/pupload-conflict/
- tried the code (below) (from the above article) using my page id = no luck
// added to fix conflict between Themify Themes and Simple Press Upload plugin
add_action(‘wp_print_scripts’, ‘themify_dequeue_plupload’, 100000);
add_action(‘wp_print_footer_scripts’, ‘themify_dequeue_plupload’, 100000);
function themify_dequeue_plupload(){
if (is_page(2658)) {
wp_deregister_script( ‘plupload’ );
wp_dequeue_script( ‘plupload’ );
}
}
————————-
Can anyone help or have you come across the errors?


