2016-03-14 387 views
0

你好我正在測試端點,當我運行php testing.php時,我得到這個錯誤。任何幫助將不勝感激。curl(7):無法連接到本地端口8000:連接被拒絕

Fatal error: Uncaught exception 'Guzzle\Http\Exception\CurlException' with message '[curl] 7: Failed to connect to localhost port 8000: Connection refused [url] http://localhost:8000/api/programmers' guzzle\guzzle\src\Guzzle\Http\Curl\CurlMulti.php:359 ...

我試過127.0.0.1以及和它沒有工作

這裏是testing.php

<?php 

require __DIR__.'/vendor/autoload.php'; 

use Guzzle\Http\Client; 

// create our http client (Guzzle) 
$client = new Client('http://localhost:8000', array(
    'request.options' => array(
     'exceptions' => false, 
    ) 
)); 

$nickname = 'ObjectOrienter'.rand(0, 999); 
$data = array(
    'nickname' => $nickname, 
    'avatarNumber' => 5, 
    'tagLine' => 'a test dev!' 
); 

$request = $client->post('/api/programmers', null, json_encode($data)); 
$response = $request->send(); 

echo $response; 
echo "\n\n"; 
+1

而你認爲我們可以幫助連接拒絕錯誤?這是一個服務器問題,與編程無關。服務器顯然拒絕連接,你需要改變它。 –

回答

1

,如果你使用的是Linux,確保服務器運行使用

/etc/init.d/httpd status 
相關問題