davidwhthomas

Results 5 comments of davidwhthomas

Not too sure on the suggested patch for this one, would need some way to check the currently applied validation rules. I used a workaround by removing the validation plugins...

OK, I think I may have found a solution. I added to drupal.conf, near the end ``` ## Authcache Support. location ~* ^.+/authcache\.php { ## FCGI backend like php-cgi or...

@cthshabel adding the handler for authcache.php as above (calling fastcgi_drupal_authcache.conf) was all I needed to change for authcache to work. Currently authcache reports ESI is working from the admin test...

@cthshabel make sure the authcache.php path is correct in fastcgi_drupal_authcache.conf here: `fastcgi_param SCRIPT_FILENAME $document_root/sites/all/modules/contrib/authcache/modules/authcache_p13n/frontcontroller/authcache.php;` e.g: perhaps you're not using the "contrib" subfolder or have authcache.php in a different folder there....

Yes, /authcache.php will 404 as the nginx conf is set to the original location in the module folder i.e: `fastcgi_param SCRIPT_FILENAME $document_root/sites/all/modules/authcache/modules/authcache_p13n/frontcontroller/authcache.php;` Sounds like progress though, good luck with the...