Page 1 of 1

WordPress 4.7.1 Broke Uploads

Posted: Fri Jan 13, 2017 3:47 pm
by Hopki
Hi,
As you may be aware if you have updated to WordPress 4.7.1 this now gives a security error when uploading GGPKG files.
I am happy to say Chief Gnome has made a new plugin that fixes the problem.
Please visit the plugin download page, download and install version 1.4.3 of our WordPress plugin.
Regards,
Hopki

Re: WordPress 4.7.1 Broke Uploads

Posted: Thu Oct 26, 2017 3:40 pm
by ThomasK
I get the security error uploading GGPKG files with v1.4.4 of the plugin and WordPress 4.8.2

Tried to add this code to the function php:

Code: Select all

function my_myme_types($mime_types){
    $mime_types['ggpkg'] = 'pano/ggpkg'; //Adding ggpkg extension
    return $mime_types;
}
In the wp config file I added "define( 'ALLOW_UNFILTERED_UPLOADS', true );" but the error is still there.
Any hints?