Folder permission and submit button
        Posted  
        
            by bob
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by bob
        
        
        
        Published on 2010-05-09T01:43:23Z
        Indexed on 
            2010/05/09
            1:48 UTC
        
        
        Read the original article
        Hit count: 311
        
I want to create a simple installation script. Below are simple code.
<ul>
<?php 
function check_perms($path,$perm)
{
    clearstatcache();
    $configmod = substr(sprintf('%o', fileperms($path)), -4); 
    $css = (($configmod != $perm) ? " class='error r2'" : " class='none'");
    echo "<li".$css.">\n"; 
    echo '<span style="float:left; padding-right:20px;">'.$path.'</span>'; 
    echo '<span style="float:right; width:100px; text-align:right;">  <strong>'.$perm.'</strong></span>'; 
    echo '<span style="float:right; padding-right:100px;"><strong>'.$configmod.'</strong></span>'; 
    echo '<div class="clear"></div>'; 
    echo "</li>";
}  
    check_perms("config.php","0777");
    check_perms("themes","0777");
    check_perms("themes/images","0777");
    check_perms("useruploads","0777");
?>
</ul>
How to make if all file and folder is valid permission to 777 will appear Submit button.
<input type='submit' name='submit' value='Submit' />
If there still have incorrect permission do not show the Submit button
Let me know.
© Stack Overflow or respective owner