to fix this error:
fseek() expects parameter 3 to be long os_lib_alerts.php SEEK_SET
Line 842 in os_lib_alerts.php Reads:
fseek($fp, $seek_place, “SEEK_SET”);
It should actually be:
fseek($fp, $seek_place, SEEK_SET);
to fix this error:
fseek() expects parameter 3 to be long os_lib_alerts.php SEEK_SET
Line 842 in os_lib_alerts.php Reads:
fseek($fp, $seek_place, “SEEK_SET”);
It should actually be:
fseek($fp, $seek_place, SEEK_SET);