The fix is:
Open this file: /wp-content/plugins/w3-total-cache/Util_PageUrls.php
Change line 527 from:
$GLOBALS[‘post’] = new stdClass();
To this:
$GLOBALS[‘post’] = new \stdClass();
It has to deal with a namespacing issue. I hope the plugin developers see this.
-Tim