Forum Replies Created

Viewing 15 replies - 1 through 15 (of 44 total)
  • popac

    (@popac)

    Can you do something about it? On mobile devices, the message covers the entire screen, which is very bad.

    Thread Starter popac

    (@popac)

    Sorry, 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 !

    Thread Starter popac

    (@popac)

    in Lazy Load for Comments ver. 1.0.9 Genesis not working…

    Thread Starter popac

    (@popac)

    in Lazy Load for Comments ver. 1.0.8 Genesis also not working…

    Thread Starter popac

    (@popac)

    I finally came up with a solution that works:

    Page Cache settings:

    View post on imgur.com

    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:

    View post on imgur.com

    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: 139

    Memcached:

    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
    Thread Starter popac

    (@popac)

    I forgot to add, I use Memcached (1.2.2) Page Cache Method

    Thread Starter popac

    (@popac)

    Hi 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
    =============================

    Thread Starter popac

    (@popac)

    the 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.

    Thread Starter popac

    (@popac)

    update:
    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.

    Thread Starter popac

    (@popac)

    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.
    popac

    (@popac)

    Thank you LiveComposer,

    I think it will be a very good addition to the already excellent website builder. Thank you in advance!

    popac

    (@popac)

    Hi,

    do you now is there possibility to use TAG as filter?

    Category is OK but tags…. I need that ??

    Clearing browser cash solve the problem.

    I 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 Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.
    ……
    ================
    Error #2

    no content (Header, footer and side bar are displayed but there is no content (list of tags)

Viewing 15 replies - 1 through 15 (of 44 total)