I'm getting this error on my install.
Warning: fread(): Length parameter must be greater than 0 in /home/site/public_html/system/library/cache/file.php on line 32
The lines mentioned read -
Code: Select all
}
public function set($key, $value) {
$this->delete($key);
$file = DIR_CACHE . 'cache.' . preg_replace('/[^A-Z0-9\._-]/i', '', $key) . '.' . (time() + $this->expire);
$handle = fopen($file, 'w');
flock($handle, LOCK_EX);
fwrite($handle, serialize($value));
fflush($handle);
flock($handle, LOCK_UN);
fclose($handle);
}