ID: 8973 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Filesystem function related Assigned To: Comments: No feedback and most likely user error. --Jani Previous Comments: --------------------------------------------------------------------------- [2001-01-29 05:10:58] [EMAIL PROTECTED] So where does the error occur? I bet this is caused by not having the directory/file readable/writable by the user with which the webserver is running. --Jani --------------------------------------------------------------------------- [2001-01-28 22:36:58] [EMAIL PROTECTED] 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> --------------------------------------------------------------------------- ATTENTION! Do NOT reply to this email! To reply, use the web interface found at http://bugs.php.net/?id=8973&edit=2 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]