Sounds like one computer can't see the other
Open a command prompt and try to ping it
ping blabla
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi,
I'm working with laravel 7, and i'm making an api call from another computer like this :
$client = new \GuzzleHttp\Client($options);
$client->request('POST', 'http://blabla/api/broadcasting', [
'form_params' => [
'paramter1' => $value,
'paramter2' => $value
]
]);
Everything was working correctly, but then suddenly when i called this api request (above) my browser was just loading without giving me any responses.
Note : this resquest was working fine. note 2 : i tried to use Http client but i had the same problem.
I don't know what's happening now, so if anybody ever faced that problem ...
Thanks.
Please or to participate in this conversation.