Jump to content

php chmod and ftp problem


mr666

Recommended Posts

im using mkdir and chmod to create dir, copy files into the created dir and to chmod it (anything but 777).. like:

[code]    if(!is_dir("$ausername")) {
        mkdir("$ausername", 0755);
        @chmod("$ausername", 0755);
        copy("stu_index.html", "$ausername/index.html");
        @chmod("$ausername/index.html", 0755);
    }[/code]


*the problem is i cant add files via ftp to the created folder or even delete it..

[code]    if(!is_dir("$ausername")) {
        mkdir("$ausername", 0777);
        @chmod("$ausername", 0777);
        copy("stu_index.html", "$ausername/index.html");
        @chmod("$ausername/index.html", 0777);
    }[/code]


*only when i use php to mkdir and chmod it to 777, then i am able to add files and or del the folder via ftp..

i wonder how can i not chmod the file and folder 777 yet able to edit things via ftp ? im using a shared unix host..

thanks in advance!
Link to comment
https://forums.phpfreaks.com/topic/13709-php-chmod-and-ftp-problem/
Share on other sites

mkdir and chmod are only effective for the PHP script. It wont set the permission for the folder/file forever

If you want to ftp stuff to the folder you can do by logging in to your FTP client, going to the folder, right click it and select properties or change permissions. You sholud be able to change the permissions for the file/folder. If not your host may have disabled this or the server is a Windows server and doesnt support CHMOD permissions.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.