You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 14, 2022. It is now read-only.
As stated in rialto-php/puphpeteer#2, there are some issues if the payload transfered from Node to PHP is too large. It seems to happen when the payload exceeds ~10000 bytes. A first part of it is received by PHP, and the second part is received on the next socket read, which messes everything.
The text was updated successfully, but these errors were encountered:
Fixed with b66241a. The issue was not only about payload length, it occured when the payload exceeded the socket packet size and contained non-ASCII characters.
As stated in rialto-php/puphpeteer#2, there are some issues if the payload transfered from Node to PHP is too large. It seems to happen when the payload exceeds ~10000 bytes. A first part of it is received by PHP, and the second part is received on the next socket read, which messes everything.
The text was updated successfully, but these errors were encountered: