brau0153
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
You need to include more info. about your site, hosting, etc.
Oops, sorry about that. Thanks for the correction.
For those of you who need this in the future…
Kimberly pointed me in the right direction and here is how to fix this issue:
Find this folder in your Cpanel
public_html/wp-content/plugins/w3-total-cache/lib/W3/Plugin
Then find this function
function ob_callback(&$buffer) {
For me it was on line 512 and was coded as such
* @param string $buffer * @return string */ function ob_callback(&$buffer) { global $wpdb; if ($buffer != '') {All you need to do is delete the ampersand (&)
When finished it looks like this* @param string $buffer * @return string */ function ob_callback($buffer) { global $wpdb; if ($buffer != '') {Now you’re all set 🙂
PS Don’t forgot to backup just in case
Thanks for responding. I’m using php 5.5.31, do you think the same fix will work? Also, if possible can you include a link for your previous post?
Viewing 4 replies - 1 through 4 (of 4 total)