• joycem

    (@joycem)


    I am getting an error.
    Warning: fread() [function.fread]: Length parameter must be greater than 0 in …/plugins/maja-envato/maja-envato-output.php on line 85

    line 85 reads:
    $jsonData = fread( $theFile, filesize( $fileName ));

    help please 🙁

    http://ww.wp.xz.cn/extend/plugins/maja-envato/

Viewing 1 replies (of 1 total)
  • You can hide the error on by adding an @ infront of the fread() so that the error is hidden when it is not working and displays the widget when it is.

    $jsonData = @fread( $theFile, filesize( $fileName ));

    This is not the best solution. Perhaps the author may look at why this error is occuring.

Viewing 1 replies (of 1 total)

The topic ‘Cache’ is closed to new replies.