aelsharawi
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] bug after upload (glue)I think u need to implement the new google code update in the plugin
Forum: Plugins
In reply to: [WP Offload SES Lite] php 7.1 supportthanks a lot
it worked
just warningFOUND 0 ERRORS AND 4 WARNINGS AFFECTING 4 LINES
———————————————————————————————————————————————————————————–
350 | WARNING | Method name “SimpleEmailService::__triggerError” is discouraged; PHP has reserved all method names with a double underscore prefix for future use
532 | WARNING | Method name “SimpleEmailServiceRequest::__responseWriteCallback” is discouraged; PHP has reserved all method names with a double underscore prefix for future use
546 | WARNING | Method name “SimpleEmailServiceRequest::__customUrlEncode” is discouraged; PHP has reserved all method names with a double underscore prefix for future use
557 | WARNING | Method name “SimpleEmailServiceRequest::__getSignature” is discouraged; PHP has reserved all method names with a double underscore prefix for future use
———————————————————————————————————————————————————————————–Forum: Plugins
In reply to: [Google Webfont Optimizer] any way to cache google fonts to local server?Forum: Plugins
In reply to: [Proxy Cache Purge] still showing a cache for logged in usersWe did not find Varnish active for this domain. Your sever IP setup looks good. If you are using a proxy (like Sucuri or Cloudflare or Fastly) please double check that configuration and make sure to add a custom Varnish IP if necessary. Your site is compressing content and making the internet faster. Something is setting the header Cache-Control to "no-cache" which means visitors will never get cached pages. Something is setting the header Pragma to "no-cache" which means visitors will never get cached pages.
this is the debug
Forum: Plugins
In reply to: [Proxy Cache Purge] VCL for version 5.X of varnish?did u find a good one?
I found this
https://github.com/razvanstanga/varnish-caching-wordpress-plugin/tree/master/varnish-conf/v5
Forum: Plugins
In reply to: [Varnish/Nginx Proxy Caching] cache missthis is the curl command
Set-Cookie: learn_press_user_guest_id=1494088783; expires=Sat, 06-May-2017 18:39:43 GMT; Max-Age=7200; path=/ Set-Cookie: learn_press_user_guest_id=1494088783; expires=Sat, 06-May-2017 18:39:43 GMT; Max-Age=7200; path=/
is that because of Set-Cookie: learn_press_user_guest_id=
but my whole website is based on learnpress
how to solve this?
Forum: Reviews
In reply to: [Varnish/Nginx Proxy Caching] Age 0 problem in header solved by this pluginthe only thing I did over is enabling hhtp2 on varnish (which still experimental)
Forum: Reviews
In reply to: [Varnish/Nginx Proxy Caching] Age 0 problem in header solved by this pluginI have the same error (Age 0) described in another post with woocomerce and varnish 5, can u please share ur woocomerce and WordPress vcl??? , and cant purge the cache with too
Forum: Plugins
In reply to: [Varnish/Nginx Proxy Caching] cache missThis is my basic modifications for woocomerce:
#### woocomerce cookie
# Unset Cookies except for WordPress admin and WooCommerce pages
if (!(req.url ~ “(wp-login|wp-admin|cart|my-account/*|wc-api*|checkout|addons|logout|lost-password|product/*|courses/*)”)) {
# set req.http.X-VC-Cacheable = “NO:dynamic logged in cookie”;
unset req.http.cookie;
}
# don’t cache these special pages. Not needed, left here as example
if (req.url ~ “courses/*|cart|my-account|checkout|addons|nocache|wp-admin|wp-(comments-post|login|activate|mail)\.php|bb-admin|server-status|control\.php|bb-login\.php|bb-reset-password\.php|register\.php”) {
set req.http.X-VC-Cacheable = “NO:Special page: ” + req.url;
return(pass);
}### another skip pages
if ( req.url ~ “\?add-to-cart=” ) {
set req.http.X-VC-Cacheable = “NO:Special page: ” + req.url;
return (pass);
}Forum: Plugins
In reply to: [WP Offload SES Lite] php 7.1 supporthello,
is there any near fix for that?Forum: Plugins
In reply to: [Varnish/Nginx Proxy Caching] varnish 5.1and by the way the varnish_v5_conf.zip most of its files are zero size
Forum: Plugins
In reply to: [Varnish/Nginx Proxy Caching] varnish 5.1I mean u as “Razvan Stanga” setup varnish on my VPS.
Forum: Plugins
In reply to: [Varnish/Nginx Proxy Caching] varnish 5.1thanks a lot, do u provide a custom setup?
Forum: Plugins
In reply to: [WP LCache] flush the cachI found that I need to install the backend fluser
Forum: Plugins
In reply to: [Proxy Cache Purge] VCL for version 5.X of varnish?is the plugin working for the version 5.1 already?