Title: jiangle2021's Replies | WordPress.org

---

# jiangle2021

  [  ](https://wordpress.org/support/users/jiangle2021/)

 *   [Profile](https://wordpress.org/support/users/jiangle2021/)
 *   [Topics Started](https://wordpress.org/support/users/jiangle2021/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jiangle2021/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jiangle2021/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jiangle2021/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jiangle2021/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jiangle2021/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Delete Post with Attachments] Invalid for post types of images and videos](https://wordpress.org/support/topic/invalid-for-post-types-of-images-and-videos/)
 *  Thread Starter [jiangle2021](https://wordpress.org/support/users/jiangle2021/)
 * (@jiangle2021)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/invalid-for-post-types-of-images-and-videos/#post-17725166)
 * Ah~ Sorry, after I tested it, it seems to be related to the theme I used. It 
   failed to work with this theme (King – Viral Magazine WordPress Theme).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cachify] Only the first page is cached in Memcached mode](https://wordpress.org/support/topic/only-the-first-page-is-cached-in-memcached-mode/)
 *  Thread Starter [jiangle2021](https://wordpress.org/support/users/jiangle2021/)
 * (@jiangle2021)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/only-the-first-page-is-cached-in-memcached-mode/#post-15771012)
 * My server configuration is as follows：
 *     ```
       server {
           listen                     80;
           listen                     443 ssl http2;
           server_name                hd1080.pro;
           ssl_prefer_server_ciphers  on;
           ssl_ciphers                ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
           ssl_protocols              TLSv1 TLSv1.1 TLSv1.2;
           ssl_session_cache          shared:SSL:5m;
           ssl_session_timeout        5m;
           keepalive_timeout          75s;
           keepalive_requests         100;
   
           if ($scheme = http) {
               return  301 https://$host$request_uri;
           }
   
           gzip                       on;
           gzip_comp_level            6;
           gzip_min_length            1k;
           gzip_types                 text/plain text/css text/xml text/javascript text/x-component application/json application/javascript application/x-javascript application/xml application/xhtml+xml application/rss+xml application/atom+xml application/x-font-ttf application/vnd.ms-fontobject image/svg+xml image/x-icon font/opentype;
           brotli                     on;
           brotli_comp_level          6;
           brotli_min_length          1k;
           brotli_types               text/plain text/css text/xml text/javascript text/x-component application/json application/javascript application/x-javascript application/xml application/xhtml+xml application/rss+xml application/atom+xml application/x-font-ttf application/vnd.ms-fontobject image/svg+xml image/x-icon font/opentype;
           client_max_body_size       10M;
   
       ## GZIP
       gzip_static on;
   
       ## CHARSET
       charset utf-8;
   
       ## INDEX LOCATION
       location / {
         error_page 404 405 = @nocache;
   
         if ( $query_string ) {
       	return 405;
         }
         if ( $request_method = POST ) {
       	return 405;
         }
         if ( $request_uri ~ "/wp-" ) {
       	return 405;
         }
         if ( $http_cookie ~ (wp-postpass|wordpress_logged_in|comment_author)_ ) {
       	return 405;
         }
   
         default_type text/html;
         add_header X-Powered-By Cachify;
         set $memcached_key $host$uri;
         memcached_pass localhost:11211;
       }
   
       ## NOCACHE LOCATION
       location @nocache {
         index      index.html index.htm index.php;
         try_files $uri $uri/ /index.php?$args;
       }
   
           location ~ ^/.+\.php(/|$) {
               include                  conf.sitemgr.d/global/conf/fastcgi_params;
               fastcgi_index            index.php;
               fastcgi_param            SCRIPT_FILENAME 
               fastcgi_split_path_info  ^(.+\.php)(/.*)$;
               fastcgi_param            PATH_INFO $fastcgi_path_info;
               fastcgi_param            PATH_TRANSLATED $document_root$fastcgi_path_info;
               fastcgi_read_timeout     60s;
           }
       }
       ```
   
    -  This reply was modified 3 years, 11 months ago by [jiangle2021](https://wordpress.org/support/users/jiangle2021/).

Viewing 2 replies - 1 through 2 (of 2 total)