popac
Forum Replies Created
-
Forum: Plugins
In reply to: [Quantcast Choice] Adjust the pop-up size on mobileCan you do something about it? On mobile devices, the message covers the entire screen, which is very bad.
Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Plugin is corrupted – Malware Pop-up addsSorry, false positive… if I can i will delete thread…
Problem is hacked database… just before searchIQ hook (in sourcecode) was injected malicious js… and when I removed plugin, i don’t know how, this js is stopped to work… about 24 hours. When I found the same problem again, downloaded sql database, search for malicious .js and found where is the problem… wp-options table is injected and this .js could not be deleted regularly but manually because wordpress (admin options etc) does not see that hook. Also phpmyadmin was useless.
Again, sorry… I already said, you have great plugin!
Good luck in further work i wish !Forum: Plugins
In reply to: [Lazy Load for Comments] Genesis/Studiopress & Plugin ver 1.06 not workingin Lazy Load for Comments ver. 1.0.9 Genesis not working…
Forum: Plugins
In reply to: [Lazy Load for Comments] Genesis/Studiopress & Plugin ver 1.06 not workingin Lazy Load for Comments ver. 1.0.8 Genesis also not working…
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache + Cache SSL (HTTPS) requests – not workingI finally came up with a solution that works:
Page Cache settings:
When I publish new post, it is important to have refreshed front page, category page, and single (post ) page. Everything works great.
Browser cache is ON and settings is:
the result is very little load on the server:
CPU load averages 1.23 (1 min) 1.31 (5 mins) 1.36 (15 mins)
Here’s nginx status:
Active connections: 165
server accepts handled requests
884864 884864 900788
Reading: 0 Writing: 2 Waiting: 139Memcached:
NAME SIZE %MEM TIME CONN %HIT REQ/s GET/s SET/s DEL/s EVI/s READ/s WRITE/s 127.0.0.1:11211 2.0 Gb 27.0 1 ms 206 72.4 567.6 360.2 207.4 0.0 0.0 415.8 Kb 359.7 Kb
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache + Cache SSL (HTTPS) requests – not workingI forgot to add, I use Memcached (1.2.2) Page Cache Method
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache + Cache SSL (HTTPS) requests – not workingHi Marko,
Tried hard reload with Ctrl+F5 without success.
Browser cache is ON: All default settings.
Nginx is updated – I have root access to server and I can restart whenever I need it (make changes).nginx.conf
=====================
# BEGIN W3TC Page Cache core
set $w3tc_rewrite 1;
if ($request_method = POST) {
set $w3tc_rewrite 0;
}
if ($query_string != “”) {
set $w3tc_rewrite 0;
}
if ($http_cookie ~* “(comment_author|wp\-postpass|wordpress_logged_in|wptouch_switch_toggle)”) {
set $w3tc_rewrite 0;
}
set $w3tc_preview “”;
if ($http_cookie ~* “(w3tc_preview)”) {
set $w3tc_preview _preview;
}
set $w3tc_ssl “”;
if ($scheme = https) {
set $w3tc_ssl _ssl;
}
if ($http_x_forwarded_proto = ‘https’) {
set $w3tc_ssl _ssl;
}
set $w3tc_enc “”;
if ($http_accept_encoding ~ gzip) {
set $w3tc_enc _gzip;
}
# END W3TC Page Cache core
# BEGIN W3TC Browser Cache
gzip on;
gzip_types text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/bmp application/java application/msword application/vnd.ms-fontobject application/x-msdownload image/x-icon image/webp application/json application/vnd.ms-access video/webm application/vnd.ms-project application/x-font-otf application/vnd.ms-opentype application/vnd.oasis.opendocument.database application/vnd.oasis.opendocument.chart application/vnd.oasis.opendocument.formula application/vnd.oasis.opendocument.graphics application/vnd.oasis.opendocument.spreadsheet application/vnd.oasis.opendocument.text audio/ogg application/pdf application/vnd.ms-powerpoint application/x-shockwave-flash image/tiff application/x-font-ttf audio/wav application/vnd.ms-write application/font-woff application/font-woff2 application/vnd.ms-excel;
location ~ \.(css|htc|less|js|js2|js3|js4)$ {
expires 31536000s;
etag on;
if_modified_since exact;
add_header Pragma “public”;
add_header Cache-Control “public”;
add_header X-Powered-By “W3 Total Cache/0.9.7.2”;
try_files $uri $uri/ $uri.html /index.php?$args;
}
location ~ \.(html|htm|rtf|rtx|svg|txt|xsd|xsl|xml)$ {
expires 10000s;
etag on;
if_modified_since exact;
add_header Pragma “public”;
add_header Cache-Control “public”;
add_header X-Powered-By “W3 Total Cache/0.9.7.2”;
try_files $uri $uri/ $uri.html /index.php?$args;
}
location ~ \.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|webp|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|webm|mpp|otf|_otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|_ttf|wav|wma|wri|woff|woff2|xla|xls|xlsx|xlt|xlw|zip)$ {
expires 31536000s;
etag on;
if_modified_since exact;
add_header Pragma “public”;
add_header Cache-Control “public”;
add_header X-Powered-By “W3 Total Cache/0.9.7.2”;
try_files $uri $uri/ $uri.html /index.php?$args;
}
add_header Referrer-Policy “”;
# END W3TC Browser Cache
=============================Forum: Plugins
In reply to: [Top 10 - WordPress Popular posts by WebberZone] Ver 2.6 overload serverthe web site I’m referring to have big database and getting a lot of traffic.
I’ll update the plugin later in the day so I’ll tell you what’s happening.Forum: Plugins
In reply to: [Top 10 - WordPress Popular posts by WebberZone] Ver 2.6 overload serverupdate:
after clear plugin cache, delete sql table wp_top_ten_daily content etc plugin start to work but occasionally there is a sudden overload of the server and interruption of the web site.
For now I went back to the previous version of the plugin.Forum: Plugins
In reply to: [Wp-Insert] Exceptions on Single posts – Post ID not working.Thank you for fast response!
Yes, not 20 but much more.
Still, the problem is when I need to remove ads from specific posts not from whole category or when the posts are from more then one category.
I hope you’re going to get the problem done because the plugin is fantastic!
Thank you Namith!same here… WP 4.7 and PHP 7
FastCGI sent in stderr: "PHP message: PHP Warning: ksort() expects parameter 1 to be array, object given in /var/www/xyz.com/wp-content/plugins/yet-another-related-posts-plugin/classes/YARPP_Cache.php on line 465" while reading response header from upstream, client: 173.222.1.1, server: xyz.com, request: "GET /some-link/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:"
- This reply was modified 7 years, 11 months ago by popac.
Thank you LiveComposer,
I think it will be a very good addition to the already excellent website builder. Thank you in advance!
Hi,
do you now is there possibility to use TAG as filter?
Category is OK but tags…. I need that ??
Forum: Fixing WordPress
In reply to: WordPress Text editor not working properlyClearing browser cash solve the problem.
Forum: Plugins
In reply to: [Multi-column Tag Map] Server errorI have same problem,
I think that the problem is because I have 4000+tags
Plugin is installed and running on dedicated server and this is not problem.Error #1:
=========================
Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.
……
================
Error #2no content (Header, footer and side bar are displayed but there is no content (list of tags)