gcurtisdep
Forum Replies Created
-
Forum: Plugins
In reply to: [Email posts to subscribers] Warning on email-post pageThank you, the latest update to 5.4.2 corrected this issue
Same here. PHP 7.0.31.
WordPress 5.1.1 Multisite
Live site remains at 2.0.6, Dev site at 2.1.1Forum: Plugins
In reply to: [Enable Media Replace] Security Guidelines II@shortpixel
Hi Alex,Thank you for letting me know. However, EMR update version 3.2.8 did not fix my issue. I continue to get ‘File type does not meet security guidelines. Try another.’ when trying to replace a file that already exists with the same extension XLSM.
Forum: Plugins
In reply to: [Enable Media Replace] Security Guidelines II@shortpixel I agree that you should not add this kind of feature but I believe it is still an EMR issue. In my opinion, if I add a filter to upload a certain file type (xlsm), then I would believe the EMR should allow that file type to be replaced. By EMR using wp_check_filetype_and_ext, I hope this will be corrected in WordPress 5.2
Forum: Plugins
In reply to: [Enable Media Replace] Security Guidelines IIThank you for solutions.
I installed https://www.ads-software.com/plugins/disable-real-mime-check/ reluctantly and it solved my problem.
Hopefully, the next release of EMR has this corrected and I can remove this plugin.
Ok, thanks for the quick reply
Forum: Plugins
In reply to: [Make Paths Relative] View Attachment Page / MultisitesHi Sami,
Thank you, I would like to arrange a meeting.I tried below but still got redirect loop
function redirect_attachment_page() {
if ( is_attachment() ) {
global $post;
if ( $post && $post->post_parent ) {
wp_redirect( esc_url( get_permalink( $post->post_parent ) ) );
exit;
} else {
wp_redirect( esc_url( home_url( ‘/’ ) ), 301 );
exit;
}
}
}
add_action( ‘template_redirect’, ‘redirect_attachment_page’ );Forum: Plugins
In reply to: [Make Paths Relative] View Attachment Page / MultisitesHi Sami,
Thanks for your reply. Yes, when plugin is deactivated, the media attachment link works. When I activate the plugin, the error shows.
Problem occurs if the media is attached to a post. If the media is attached to a page, it works fine.
It shows up on any subsite that has posts.