ต้องการอัพโหลดรูปภาพขึ้น server ค่ะ ก็สามารถเลือกรูปที่เราต้องการอัพโหลดได้นะค่ะแต่พอกด อัพโหลดขึ้น Server กลับขึ้น เออเรอค่ะ
It was not possible to complete the request due to authorization restrictions
ส่วนเรื่องกำหนด permission ให้ internet user สามารถเขียน file ลงใน server ของเราได้นั้น ถ้าเป็น windows server 2003 ให้คลิกขวาที่ folder นั้นแล้ว share โดยเลือก user นั้นจาก list (สำหรับ asp.net user นั้นคือ ASP.NET แต่ php เป็นอะไรผมไม่รู้จริงๆ) แล้วกำหนด permission ให้สามารถเขียนข้อมูลลงไปได้
function CheckAuthentication()
{
// WARNING : DO NOT simply return "true". By doing so, you are allowing
// "anyone" to upload and list the files in your server. You must implement
// some kind of session validation here. Even something very simple as...
// ... where $_SESSION['IsAuthorized'] is set to "true" as soon as the
// user logs in your system. To be able to use session variables don't
// forget to add session_start() at the top of this file.