|
|
|
ขอถามเรื่อง chmod ครับ คือผมไปเอาสคริปท์ของคนอื่นมาลง แต่ในขั้นตอนการติดตั้งเขาให้ทำแบบนี้ครับ |
|
|
|
|
|
|
|
ให้คุณใช้โปรแกรมจัดการ FTP นะครับ แนะนำ โปรแกรม WS-FTP Pro นะครับ
โดยให้คลิกขวาที่ Folder ที่ต้องการแก้... แล้วก็เลือก Operation >> CHMOD นะครับ... แต่ถ้าเกิดหา CHMOD ให้ลองกดที่ Properties แทน..
ไม่เข้าใจถามมาได้ที่ msn นะครับ..
|
|
|
|
|
Date :
7 พ.ค. 2548 14:21:05 |
By :
kanmanus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้เหมือน คุณ kanmanus นะฮะ ผมขยายความให้นิดหนึ่ง chmod เป็นการกำหนดสิทธืการใช้งานของ folder หรือ ไฟล์ นั้นนะฮะ เช่น สามารถเขียนได้ ไหม หรือ สามารถอ่านได้อย่างเดียว นะฮะ
<?php
// Read and write for owner, nothing for everybody else
chmod("/somedir/somefile", 0600);
// Read and write for owner, read for everybody else
chmod("/somedir/somefile", 0644);
// Everything for owner, read and execute for others
chmod("/somedir/somefile", 0755);
// Everything for owner, read and execute for owner's group
chmod("/somedir/somefile", 0750);
?>
|
|
|
|
|
Date :
9 พ.ค. 2548 18:57:19 |
By :
mairu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|