PHP Warning GZWrite
-
Was tailing some error logs on a new installation of Hyper-Cache, and started to see a similar error to the one described here. Except instead of .dat files, it was giving me the error on plugin.php. Here’s the full error:
PHP Warning: gzwrite() expects parameter 1 to be resource, boolean given in /path/to/wordpress/wp-content/plugins/hyper-cache/plugin.php on line 682 PHP Warning: gzclose() expects parameter 1 to be resource, boolean given in /path/to/wordpress/wp-content/plugins/hyper-cache/plugin.php on line 683
From what I can tell, the error seems to occur when it fails to find the file set in the variable $lc_file, which is then passed to the variable $gzf. Since it can’t find the file, it returns a boolean of “false” and spits the error back.
This seems to only happen when I clear the cache and doesn’t seem to affect the functionality of the plugin at all, so its a pretty trivial issue. But wanted to put it here in case others were looking.
- The topic ‘PHP Warning GZWrite’ is closed to new replies.