Hello,
about the warning I think it is due to the fact that when a post has been modified the Varnish Purger tries to purge all the tag pages where the post is present. But I didn't take the case where no tag is defined into account. I will correct that but it is not a real problem.
Also once admins have logged in on their site (which run's under the domain mapping plugin) and you view the site its still loading from varnish (no admin bar at the top)
I think you are using the vcl file provided in the plugins. As on our platform we use custom cookies I think that I understand the problem could you try to replace :
# ##################
# 98)Logged in used
# ##################
if ( req.http.Cookie ~ "wordpressuser=") {
set req.http.Domaine = regsub(req.http.Cookie,"wordpressuser=([^;]+)","\1");
if (req.http.Domaine == regsub(req.http.Host,"^([^\.]+)\.","\1")){
return (pass);
}
}
by
# ##################
# 98)Logged in used
# ##################
if ( req.http.Cookie ~ "wordpress_[^=]+=") {
return (pass);
}
}
Could you tell me if that solves your problem ?
Thanks
Olivier