calvares
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordfence Security - Firewall, Malware Scan, and Login Security] 502worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main ‘[$time_local] $remote_addr – $remote_user – $server_name to: $upstream_addr: $request upstream_response_time $upstream_response_time msec $msec request_time $request_time status $status bytes $body_bytes_sent’;
#Uncomment to debug rewrite rules
#rewrite_log on;
server {
listen 80;
server_name test1.com;
access_log logs/test1.access.log main;
#Uncomment to debug rewrite rules
#error_log logs/rewrite.log notice;
root /usr/local/test1;
index index.php;# WORDFENCE FALCON ENGINE CODE
#Match on gzip first because ordering matters.
location ~ “/site/wp-content/wfcache/.*gzip$” {
gzip off;
types {}
default_type text/html;
add_header Vary “Accept-Encoding, Cookie”;
add_header Content-Encoding gzip;
}
#If the previous matched, the following location won’t be executed.
location ~ /site/wp-content/wfcache/.* {
add_header Vary “Accept-Encoding, Cookie”;
}
set $wordfenceCacheOn 1;#Don’t cache form submissions.
if ($request_method = POST) {
set $wordfenceCacheOn 0;
}#Allow caching of /?123=123 because this is a common DDoS to override caches.
if ($query_string !~ “^(?:d+=d+)?$”) {
set $wordfenceCacheOn 0;
}#Only cache URL’s ending in /
if ($request_uri !~ /$) {
set $wordfenceCacheOn 0;
}
#Don’t cache any cookies with this in their names e.g. users who are logged in.
if ($http_cookie ~* “(comment_author|wp-postpass|wf_logout|wordpress_logged_in|wptouch_switch_toggle|wpmp_switcher)”) {
set $wordfenceCacheOn 0;
}
set $wordfenceEncoding “”;
#Oh, you want gzipped content?
if ($http_accept_encoding ~ gzip) {
set $wordfenceEncoding _gzip;
}
set $wordfenceHTTPS “”;
if ($scheme = ‘https’){
#If you want to ENABLE HTTPS caching, comment out the next line.
set $wordfenceCacheOn 0; #Comment this line out to enable HTTPS caching.set $wordfenceHTTPS ‘_https’; #Uncomment this line to enable HTTPS caching.
}
#The main purpose of this line is to capture the URL components into variables.
if ($request_uri !~ “^/*(?<wfone>[^/]*)/*(?<wftwo>[^/]*)/*(?<wfthree>[^/]*)/*(?<wffour>[^/]*)/*(?<wffive>[^/]*)(?<wfsix>.*)$”){
set $wordfenceCacheOn 0;
}
#If the file doesn’t exist then don’t serve from cache.
if (!-f “$document_root/site/wp-content/wfcache/${http_host}_${wfone}/${wftwo}~${wfthree}~${wffour}~${wffive}~${wfsix}_wfcache${wordfenceHTTPS}.html${wordfenceEncoding}”) {
set $wordfenceCacheOn 0;
}if ($wordfenceCacheOn = 1) {
rewrite .* “/site/wp-content/wfcache/${http_host}_${wfone}/${wftwo}~${wfthree}~${wffour}~${wffive}~${wfsix}_wfcache${wordfenceHTTPS}.html${wordfenceEncoding}” last;
}
# END Wordfence Ruleslocation / {
try_files $uri $uri/ /index.php?$args ;
}
location ~ .php$ {
try_files $uri /index.php;
include fastcgi_params;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
}
}Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Remove RedirectPerfect ??
Thanks for your time, five stars!Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Remove RedirectHi,
Thanks for your reply and the code that works very well ??
Now i only need to remove the redirection, for example, in product list page if i add one product to wishlist without how can i do without leaving this product list page, is it possible?Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Remove RedirectHi, thanks for your reply.
I’m using cheope theme and I’m trying to implement it manualy.. so i create an icon with similar following link:
https://www.nnn.pt/wp-content/themes/cheope/theme/plugins/yith_wishlist/yith-wcwl-ajax.php?action=add_to_wishlist&add_to_wishlist=128099And if i click it he redirects to product page.
Forum: Plugins
In reply to: [Theme Check] HELP – My site not loadingI understand that.
Forum: Plugins
In reply to: [Theme Check] HELP – My site not loadingHi, it to normal now, i ask my host provider and they said they didn’t do anything.
Hi suppose this plugin start some process that start looping and breaks my site.
I need to review my theme deeply ??Forum: Plugins
In reply to: [Theme Check] HELP – My site not loadingHi, thanks for your reply.
Hi desactivate by changing plugin folder and nothing happens ??
Any other idea?I get the same error even if i do it to a singular product (Smush.it now!)
What ca i do?WP 3.7.1
I am the user 56452
What kind of permissions?Forum: Plugins
In reply to: [Woocommerce CSV importer] Tax class not affecting products prices?? thanks for you honest answer.
In fact i already solve it, only need to change the name because is case sensitive ??Hi there,
In WP Dashboard on the pages reference to E-goi like “List”, “Settings” and “Widgets Settings” i’ve got a red box with the following message: “Missing API key or no permission to perform this action”.
What i need to do?
Bom dia,
No painel referente ao egoi, qualquer uma das páginas dos items do menu (List, Settings, Wi) apresenta-me uma caixa a vermelho com a mensagem “Missing API key or no permission to perform this action”
Ainda n?o percebi o que tenho de fazer. Alguma sugest?o?
Forum: Reviews
In reply to: [Woocommerce CSV importer] Very Simple!Solved!
Boas tardes,
Depois de instalar e introduzir a API Key, dá-me o seguinte erro nos “Sttings”:
Missing API key or no permission to perform this actionQual será o problema?