Learn about Centmin Mod LEMP Stack today
Register Now

Showcase wordpress7.centminmod.com

Tags:
  1. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,671
    Local Time:
    5:02 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    eva2000 submitted a new Showcase Item:

    wordpress7.centminmod.com


    Read more about this showcase item here...
     
  2. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    3:02 AM
    Mainline
    10.2
    Can you show your current vhost config for this site?
     
  3. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    3:02 AM
    Mainline
    10.2
    Permalink Settings is set to Post name?
     
  4. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,671
    Local Time:
    5:02 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    pretty much same as the centmin.sh menu option 22 generated wp vhost at Wordpress Nginx Auto Installer (WP Super Cache)

    and step 1 of post install steps = permalink = /%post_id%/%postname%/
    i use same permalinks for years on all wordpress installs :)
     
  5. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    3:02 AM
    Mainline
    10.2
    Ah ok, then your Cache Contents is stored on WP-Cache right? not on Wp-Super-Cache?
    [​IMG]
     
    Last edited: Sep 21, 2015
  6. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,671
    Local Time:
    5:02 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  7. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    3:02 AM
    Mainline
    10.2
    But not using this code right?
     
  8. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,671
    Local Time:
    5:02 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  9. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    3:02 AM
    Mainline
    10.2
    Your's different:
    That I posted on the other thread:
     
  10. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,671
    Local Time:
    5:02 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    well this is one i am using
    Code:
    try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php?q=$uri&$args;
     
  11. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    3:02 AM
    Mainline
    10.2
    When I use that config, cache is not stored on Wp-Super-Cache :/
     
  12. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,671
    Local Time:
    5:02 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    make sure php-wpsc.conf has the fix update inc/wpsetup.inc for php-wpsc.conf setup · centminmod/centminmod@0131ff0 · GitHub otherwise that won't work and ensure wordpress vhost uses that include file and not the default one
    Code:
    include /usr/local/nginx/conf/php-wpsc.conf;
    and fix in /usr/local/nginx/conf/php-wpsc.conf
    Code:
    fastcgi_param  SERVER_NAME        $http_host;