Wednesday, December 1, 2010

Error in /home/xxxx/public_html/system/library/cache.php on line 27

Error:

Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/xxxx/public_html/system/library/cache.php on line 27Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/xxxx/public_html/system/library/cache.php on line 27Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/xxxx/public_html/system/library/cache.php on line 27Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/gudangd/public_html/system/library/cache.php on line 27Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/xxxx/public_html/system/library/cache.php on line 27

Solution:
1. Login to your CPanel Hosting. Go to File Manager. Find this code at public_html/system/cache.php

public function get($key) {
$files = glob(DIR_CACHE . 'cache.' . $key . '.*');

if ($files) {
foreach ($files as $file) {
$handle = fopen($file, 'r');
$cache = fread($handle, filesize($file));

fclose($handle);

return unserialize($cache);
}
}
}

3. Replace with this code:

public function get($key) {
$files = glob(DIR_CACHE . 'cache.' . $key . '.*');

if ($files) {
foreach ($files as $file) {
$cache = file_get_contents($file);
return unserialize($cache);
}
}
}

Error Handling

2 comments:

Unknown on May 16, 2011 at 4:49 AM said...

not working , its just remove the error but i am not able to access mail function under sales menu adminside.

Unknown on October 8, 2012 at 10:04 PM said...

i'm try! and not working! please help me :(

Post a Comment

 

© 2011 Tutorial Opencart - Designed by Mukund | Sitemap

About Us | Contact Us | Write For Us