ผมมีคำสั่ง CURL ในสคริปแล้วเกิด Not Acceptable! แบบนี้คืออะไรหรอครับ
คือในเครื่องผมรันได้นะครับแต่พอเอาขึ้นโฮสแล้วเกิด
Error Not Acceptable!
An appropriate representation of the requested resource could not be found on this server. This error was generated by Mod_Security.
เออเร่อนี้ผมไปไม่เป็นเลยครับซึ่งถ้าผิดพลาดโค๊ดแล้วบอกบรรทัดก็ยังพอแก้กันได้แต่แบบนี้ช่วยแนะนำทีได้มั้ยคัรบ
Code (PHP)
function get_response($URL, $context) {
if(!function_exists('curl_init')) {
die ("Curl PHP package not installedn");
}
/*Initializing CURL*/
$curlHandle = curl_init();
/*The URL to be downloaded is set*/
curl_setopt($curlHandle, CURLOPT_URL, $URL);
curl_setopt($curlHandle, CURLOPT_HEADER, false);
curl_setopt($curlHandle, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, $context);
/*Now execute the CURL, download the URL specified*/
$response = curl_exec($curlHandle);
return $response;
}
นี่คือคำสั่ง curl ของผมอ่ะครับไม่ทราบว่ามันควรจะแก้ตรงไหนดีอ่ะครับTag : PHP
Date :
2014-06-08 23:57:54
By :
โจจิงหรือ
View :
1387
Reply :
1
Load balance : Server 04