[PHP-DEV] PHP 4.0 Bug #8973: In php3 it works, in php4 goes on file permission denied..installation problem? From: scratched <email protected>
Date: 01/28/01

From: scratched <email protected>
Operating system: UNIX/Linux
PHP version: 4.0.4pl1
PHP Bug Type: Filesystem function related
Bug description: In php3 it works, in php4 goes on file permission denied..installation problem?

HTML>
 
<HEAD><TITLE>Senhas</TITLE></HEAD>
<BODY>

<?php
if (!$submit) {
?><form method="post" action="random.php">
  <p><font face="Arial" size="2" color="#006666">RA:
    <input type="text" name="ra" size="5" maxlength="5">
    </font><font color="#006868"><br>
    hs</p>
  <p><font face="Arial" size="2">
    <input type="submit" value="Enviar">
    <input type="reset" value="Limpar">
    </font></p>
</form>
<?php
}

if ($submit = "Enviar") {
$dir = "/home/httpd/html/testes";
$allow = "abcdefgh2ijkm3npqr4stuv5wxyz6789";
srand((double)microtime()*1000000);
for($i=0; $i<6; $i++) {
   $password .= $allow[rand()%strlen($allow)];
}
print "Sua Senha: $password<br>";
$fo = fopen("$dir/senhas", "a");
$fw = fputs($fo, "#$ra#$password");
$fc = fclose($fo);
$teste = exec("echo \"\" >> /$dir/senhas");
copy("$dir/senhas", "$dir/senhas.bkp");
chmod("$dir/senhas.bkp", "0644");
}
?>
</BODY>
</HTML>

-- 
Edit Bug report at: http://bugs.php.net/?id=8973&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>