We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I am getting data from Teltonika FMB120.
PHP Fatal error: Uncaught OutOfBoundsException: Cannot read 32-bit int, it exceeds the boundary of the file
Please help me why this not decode.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi @manishjesani912,
Got the same error, it was due to the length of the data read. In the main page example of the project, this is 1024 :
// Read Data $payload = fread($conn, 1024); $packet = $parser->decodeData($payload);
But the frame from my FMM230 was bigger (1232 bytes). I increased to 1500, it works now!
Sorry, something went wrong.
No branches or pull requests
Hello,
I am getting data from Teltonika FMB120.
PHP Fatal error: Uncaught OutOfBoundsException: Cannot read 32-bit int, it exceeds the boundary of the file
Please help me why this not decode.
Thanks.
The text was updated successfully, but these errors were encountered: