Zee
Forum Replies Created
-
Marking as resolved
After disabling those functions it looks to be a general memory exhaustion error and nothing to do with Autoptimize.
Thanks for the response.
I think I found a better solution. I have created an image called stolencontent.jpg that I redirect every image that Photon/1.0 bot tries to scrape. This way it announces the offending site is stealing content and where the original content is located.
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Photon/1.0 [NC]
RewriteRule (.jpg|.gif|.png) /stolencontent.jpg [L]I have blocked Photon/1.0 and the offending site IP weeks ago and it still there. i0.wp.com is/was scraping thousands of pictures off our site and we don’t have Jetpack or use any other CDN. Do you not have any verification that the site using your CDN is authorized to do so?
All the content uses our domain in the URL, is there a way to block it on your end?
https://i0.wp.com/<ourwebsite>/wp-content/uploads/2020/03/—-Forum: Plugins
In reply to: [Site Reviews] Request: Post title in Notification EmailThanks!!!
Forum: Plugins
In reply to: [Site Reviews] Request: Post title in Notification EmailI should clarify, is is possible to put the “Assigned Post” in the Notification Email?
Forum: Plugins
In reply to: [Site Reviews] PHPMailer ErrorI saw the extra “PHPMailer” but you got to it before I had a chance to try fixing it. Thanks!
Forum: Plugins
In reply to: [Site Reviews] PHPMailer ErrorSame Issue here
[2020-08-14 17:25:29] ERROR [Application.php:92] Uncaught TypeError: Argument 1 passed to GeminiLabs\SiteReviews\Modules\Email::buildPlainTextMessage() must be an instance of PHPMailer, instance of PHPMailer\PHPMailer\PHPMailer given, called in /public_html/wp-includes/class-wp-hook.php on line 287 and defined in /public_html/wp-content/plugins/site-reviews/plugin/Modules/Email.php:95 Stack trace: #0 /public_html/wp-includes/class-wp-hook.php(287): GeminiLabs\SiteReviews\Modules\Email->buildPlainTextMessage() #1 /public_html/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters() #2 /public_html/wp-includes/plugin.php(544): WP_Hook->do_action() #3 /public_html/wp-includes/pluggable.php(494): do_action_ref_array() #4 /public_html/wp-content/plugins/site-reviews/plugin/Mod
Forum: Fixing WordPress
In reply to: ID3 Error on WordPress 5.4This has been going on awhile, not sure why it has not been fixed.
Just installed the plugin and I am getting the same message
“Couldn’t process image due to bad headers. Try re-saving the image in an image editor, then upload it again.”I was also getting the error “No file content sent.” intermittently
Forum: Plugins
In reply to: [Site Reviews] IP back showing as 127.0.0.1 from version 4.1.1 to 4.2.0Great, the last piece of code works. Thank you.
Forum: Plugins
In reply to: [Site Reviews] IP back showing as 127.0.0.1 from version 4.1.1 to 4.2.0Added the code to child theme functions file and it came up with the IP as “unknown”. Changed it in the plugin from ALL_METHODS to REMOTE_ADDR and it works again. Strange since both methods should do the same thing.
/** * Changes the header method used for IP detection * @return int * @see https://github.com/pryley/site-reviews/blob/master/vendors/vectorface/whip/Whip.php#L41-L59 */ add_filter('site-reviews/whip/methods', function () { $methods = [ 'remote' => 1, // Indicates the REMOTE_ADDR method will be used 'proxy' => 2, // Indicates a set of possible proxy headers will be used 'cloudflare' => 4, // Indicates any CloudFlare specific headers will be used 'incapsula' => 8, // Indicates any Incapsula specific headers will be used 'custom' => 128, // Indicates custom listed headers will be used 'all' => 255, // Indicates all header methods will be used ]; return $method['remote']; });
Forum: Plugins
In reply to: [Site Reviews] IP back showing as 127.0.0.1 from version 4.1.1 to 4.2.0Where should that be added?
Forum: Plugins
In reply to: [Site Reviews] IP back showing as 127.0.0.1 from version 4.1.1 to 4.2.0Line 122 in helper.php:
$methods = apply_filters('site-reviews/whip/methods', Whip::ALL_METHODS);
Works for me when changed to:
$methods = apply_filters('site-reviews/whip/methods', Whip::REMOTE_ADDR);
Thanks again.
Forum: Plugins
In reply to: [Site Reviews] IP back showing as 127.0.0.1 from version 4.1.1 to 4.2.0You are correct, sorry I did not see that. Thanks for all the help.