ThaiSEOBoard.com

พัฒนาเว็บไซต์ => Programming => ข้อความที่เริ่มโดย: tae861 ที่ 21 พฤษภาคม 2017, 17:00:21



หัวข้อ: ใช้ curl ขึ้น Moved Permanently The document has moved here.
เริ่มหัวข้อโดย: tae861 ที่ 21 พฤษภาคม 2017, 17:00:21
มันขึ้นว่า Moved Permanently The document has moved here. ครับ
เกิดจากอะไรหรอครับ


หัวข้อ: Re: ใช้ curl ขึ้น Moved Permanently The document has moved here.
เริ่มหัวข้อโดย: IGENETIVE ที่ 21 พฤษภาคม 2017, 17:17:37
HOST ได้ปิดคำสั่ง curl หรือเปล่าครับ


หัวข้อ: Re: ใช้ curl ขึ้น Moved Permanently The document has moved here.
เริ่มหัวข้อโดย: @Roverpost ที่ 21 พฤษภาคม 2017, 17:26:50
เนื่องจาก ULR ที่คุณเรียกนั้น มัน Redirect ไปอีกเส้นทางนึง ทำให้เมื่อคุณใช้ curl เรียก URL นั้น มันไม่ redirect ตามไปเหมือนกับเราเปิดบนเบราเซ่อ มันจึงแสดงแบบนั้นครับ
วิธีแก้ไข
เปิด Follow Location โดยใช้คำสั่งนี้

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);


หัวข้อ: Re: ใช้ curl ขึ้น Moved Permanently The document has moved here.
เริ่มหัวข้อโดย: redzanakub ที่ 24 พฤษภาคม 2017, 18:25:07
เพิ่มใน PHP ดูครับ

curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_POSTREDIR, 3);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);