Adendum
Forum Replies Created
-
Forum: Plugins
In reply to: [EWWW Image Optimizer] corrupt JPEG dataHi,
It just got ‘odder’!
I deleted my error.log to replicate the issue – as it happens as soon as a browser gets the home page and the error is no longer happening. I think I may have fired one off prematurely here because I forgot that I also have my hosting engineers looking at an issue where I cannot update a theme translation file, and it transpires, I can’t install a plugin as both give “The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature”.
So I think I should hold off doing anything right now. I’ll send you the debug file next but I suspect the problem is not with EWWW.
Paul.
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] Share Buttons, Countdown, and Google MapHaving the same issue on my server…
Geocode was not successful for the following reason: REQUEST_DENIED
Forum: Plugins
In reply to: [EWWW Image Optimizer] Enabling EXEC() …. again!OK … I’ll put out a series of emails and see what they all have to say.
🙂
Forum: Plugins
In reply to: [AVH First Defense Against Spam] Update failedDeactivated, uninstalled 3.7.2 and installed 3.7.3
Forum: Plugins
In reply to: [AVH First Defense Against Spam] Update failedI also get “An error occurred while updating AVH First Defense Against Spam Plugin: Update package not available.”
Forum: Plugins
In reply to: [EWWW Image Optimizer] File permissionsShane,
Looks like you cracked it. As I write I am watching a manual optimisation and checking file permissions via an FTP connection and the resulting images are all 644 permissions.
While processing an image I see the file name is changed to xxxx.jpg.processing and has a permission of 600 and when it’s completed the permission is again 644, as it should be.
Superstar!
Forum: Plugins
In reply to: [EWWW Image Optimizer] File permissionsShane,
Once again you prove to be, by far, the most responsive and open plugin developer I’ve come across! My hat off to you sir!
Forum: Plugins
In reply to: [EWWW Image Optimizer] File permissionsShane,
I don’t have that capability but my very patient hosting engineers will … but I’m not sure I want to bend their arms on this. I did give them some grief during my investigations and swore blind it wasn’t a plugin!
More than happy to let you loose as Admin in the site (it is a live client site however!). I can also let you have access to a sister site (same client, same theme, same plugins mostly) that doesn’t have the issue … and both on the same server.
Let me know if you want to pursue, and how to contact you. 🙂
Forum: Plugins
In reply to: [EWWW Image Optimizer] File permissionsYES there are conditions….but I can’t work them out … yet.
EWWW active and upload via Media Library results in images with a 600 file permission. Deactivate EWWW and upload the same image the same way and you get 666.
I can’t see anything different I have done with EWWW settings so I guess it is a plugin conflict. Might need some help on this one Shane!
Forum: Plugins
In reply to: [EWWW Image Optimizer] Wordfence BlockingThanks Shane.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Wordfence BlockingAh, OK. I thought for a second I was going mad.
This will have significant implications for EWWW then. I have WF and EWWW running on all client sites now – and it’s the same on all of them.
Looking forward to the updates on this 🙂 and appreciate the support.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Wordfence BlockingI am guessing a setting in Wordfence because if I disable the firewall EWWW is back to normal.
But what setting in Wordfence I wonder …. can’t see anything in Options so it must be under the Firewall settings and all I can see is to add a URL.
Yup, total confusion here 🙁
Forum: Plugins
In reply to: [EWWW Image Optimizer] Wordfence BlockingHi again,
Yes gotfusion is my server.
I’m confused…have I missed a setting in EWWW or are you saying I need to adjust something in Wordfence?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] TinyMCE shortcode buttonChad,
This works… I am hiding WP-Members, Rev Slider and the Yoast SEO elements from the Publish meta box.
// Hide elements from all but Admins
function uyf_custom_admin() {
global $user_level;
if ($user_level != ’10’ ) {
echo ‘<style type=”text/css”>
.score-text, .yoast-logo.svg.na, div#mceu_15, div#mceu_16 {display:none;}
</style>’;
}
}add_action(‘admin_head’, ‘uyf_custom_admin’);
Forum: Plugins
In reply to: [WP-Members Membership Plugin] TinyMCE shortcode buttonChad,
I found this for someone who had a similar need for a different plugin, could I adapt this in someway?
/**
* Hide the shortcode generator from any user below administrator level
* http://gndev.info/kb/how-to-restrict-access-to-shortcode-generator/
*/
update_option( ‘su_generator_access’, ‘administrator’ );