aryribeiro
Member
- May 15, 2022
- 92
- 18
- 8
thanksFINAL VERSION v3.1.4 RELEASED JUST LAST HOURFASTEST UPDATE . . .
thanksFINAL VERSION v3.1.4 RELEASED JUST LAST HOURFASTEST UPDATE . . .
Thanks for the updateTomz updated WP Rocket - Best #1 WordPress Caching Plugin with a new update entry:
WP Rocket v3.11.4.2
Read the rest of this update entry...
thanks, my masterTomz updated WP Rocket - Best #1 WordPress Caching Plugin with a new update entry:
WP Rocket v3.11.4.2
Read the rest of this update entry...
Tomz updated WP Rocket - Best #1 WordPress Caching Plugin with a new update entry:
WP Rocket v3.11.4.2
Read the rest of this update entry...
Thanks, well done
"An innocent virus, named virus but not do like virus"pls. bro. Can you check again, it's showing me this in virus tool checking at virustotal.com
Appreciate your reply.
Thanks in advance.
This topic was discussed. Read the previous comments.pls. bro. Can you check again, it's showing me this in virus tool checking at virustotal.com
Appreciate your reply.
Thanks in advance.
thanks for your reply"An innocent virus, named virus but not do like virus"
thanks for your replyThis topic was discussed. Read the previous comments.
Thanks very much men!
Where do you put that filter? It's in theme functions.php?Code:// Add http requests to block add_filter('pre_http_request', function ($thisStatus, $requestParams, $ThisUrl) { if (strpos($ThisUrl, '//wp-rocket.me')) $thisStatus = null; elseif (strpos($ThisUrl, '//rocketcdn.me')) $thisStatus = null; return $thisStatus; }, PHP_INT_MAX, 3);
You can use CodeSnippets plugin to add this. Besides, @CyberDeviL do we also need to put https: in ThisURL? For eg:Where do you put that filter? It's in theme functions.php?
// Add http requests to block
add_filter('pre_http_request', function ($thisStatus, $requestParams, $ThisUrl) {
if (strpos($ThisUrl, 'https://wp-rocket.me')) $thisStatus = null;
elseif (strpos($ThisUrl, 'https://rocketcdn.me')) $thisStatus = null;
return $thisStatus;
}, PHP_INT_MAX, 3);
Can't be done without installing additional plugins? Doesn't it work by putting it into functions.php?You can use CodeSnippets plugin to add this. Besides, @CyberDeviL do we also need to put https: in ThisURL? For eg:
Code:// Add http requests to block add_filter('pre_http_request', function ($thisStatus, $requestParams, $ThisUrl) { if (strpos($ThisUrl, 'https://wp-rocket.me')) $thisStatus = null; elseif (strpos($ThisUrl, 'https://rocketcdn.me')) $thisStatus = null; return $thisStatus; }, PHP_INT_MAX, 3);
Thanks!
As much as I know, it CAN be done by adding the code to theme functions.php. Besides, Code Snippets is a light weight plugin and there should be no issue in using it!Can't be done without installing additional plugins? Doesn't it work by putting it into functions.php?
About your question, there is no need of adding the protocol to that string. Using "//domain.com/path" is enought.