JsonException: Control character error, possibly incorrectly encoded #3981
Replies: 4 comments 7 replies
-
Did some more digging in Server.php, and it's not completely giving a correct array.
No, I did not cut this off. |
Beta Was this translation helpful? Give feedback.
-
Found the issue! And it looks like it's not me... |
Beta Was this translation helpful? Give feedback.
-
I encountered the same problem. On the Windows 10 platform, version 8.0.0-alpha. |
Beta Was this translation helpful? Give feedback.
-
I fixed this in a PR: #4032 I changed the private function readClientRequest($clientSocket)
{
$request = stream_get_contents($clientSocket);
if ($request === false) {
throw new Exception('Socket read failed');
}
return $request;
}
Then run |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hiya there, I'm trying to set up a new project with deployer 8, and I'm getting a JsonException the whole time, without any useful information.
Can anyone help me debug this, if I'm the problem or the script is?
It's a fresh laravel application.
Beta Was this translation helpful? Give feedback.
All reactions