Tagged: W3 Total Cache Troubleshooting
- AuthorPosts
Andy Romanofsky
GuestHi,
Using W3 Total Cache and reCapture in Gravity Forms causes problems submitting forms. (W3 Total Cache goes into a infinite loop)We can eliminate the problem with a change to the file wp-content/plugins/w3-total-cache/ConfigDbStorage.php .
Line 498 in ConfigDbStorage.php is now:
while ( false !== $row ) {
Can you change it to:
while ( false !== $row && $row !== null ) {
The condition does not handle if the $row is null, witch it is. The condition will never change from null to false.
Thanks,
Andy Romanofsky
All Around CreativeMarko Vasiljevic
KeymasterHello Andy,
Thank you for reaching out, and I am happy to help!
I’ve replied to your topic regarding the W3 Total Cache problem you are having on wp.org
We are checking this, and thank you for your patienceThanks!
- AuthorPosts