Search results for "ezrealty blank screen"

Apache config for Worker MPM vs Prefork MPM

Some installations of Apache will have been compiled to work with either Prefork or Worker MPM, but most by default are compiled only to work with Prefork. Changing to Worker MPM may allow your server to handle much higher traffic, more user sessions, with less RAM use. Your site or server will not scale well if it is running Prefork MPM. Worker is a bit more difficult to set up properly, and has some restrictions regarding functionality of PHP… 1, 0, 0, 0 and 143.41

Continue Reading Comments { 4 }

Screen Shot 2013-01-16 at 4.19.03 PM

Continue Reading Comments { 0 }

Screen Shot 2013-04-19 at 6.32.51 PM

Continue Reading Comments { 0 }

Screen Shot 2012-09-24 at 8.51.27 PM

Continue Reading Comments { 0 }

Screen Shot 2011-12-24 at 2.13.41 PM

Joe Natural’s website

Continue Reading Comments { 0 }

Screen Shot 2012-09-07 at 11.09.50 AM

Continue Reading Comments { 0 }

Screen shot 2011-07-15 at 1.40.53 PM

Light Sport & Ultralight Flying Magazine website

Continue Reading Comments { 0 }

Varnish VCL and Config for WordPress with W3 Total Cache

…t beresp.http.Set-Cookie; } # # don’t cache response to posted requests or those with basic auth if ( req.request == “POST” || req.http.Authorization ) { return (hit_for_pass); } # # only cache status ok if ( beresp.status != 200 ) { return (hit_for_pass); } # # don’t cache search results if( req.url ~ “\?s=” ){ return (hit_for_pass); } # # else ok to cache the response set beresp.ttl = 24h; return (deliver); } # sub vcl_deliver { # add debugging… 1, 0, 0, 0 and 47.8

Continue Reading Comments { 17 }