how to conf. chmod 777

Discussion in 'PHP' started by <?erick?>, Jun 26, 2008.

  1. #1
    please help me to conf. chmod 777 bec. im always denied during uploading my files.
     
    <?erick?>, Jun 26, 2008 IP
  2. chubaka

    chubaka Greenhorn

    Messages:
    42
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    18
    #2
    login via ssh or ftp (total commander for example), and chmod your root directory. you also can do it recursive with -R flag

    chmod 777 directory
     
    chubaka, Jun 26, 2008 IP
  3. Oli3L

    Oli3L Active Member

    Messages:
    207
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    70
    #3
    you can do it with PHP code too:
    
    chmod('filename.php',0777);
    
    PHP:
     
    Oli3L, Jun 27, 2008 IP