php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #8973 In php3 it works, in php4 goes on file permission denied..installation problem?
Submitted: 2001-01-28 22:36 UTC Modified: 2001-03-16 16:51 UTC
From: scratched at ig dot com dot br Assigned:
Status: Closed Package: Filesystem function related
PHP Version: 4.0.4pl1 OS: UNIX/Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: scratched at ig dot com dot br
New email:
PHP Version: OS:

 

 [2001-01-28 22:36 UTC] scratched at ig dot com dot br
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>

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-01-29 05:10 UTC] sniper@php.net
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-03-16 16:51 UTC] sniper@php.net
No feedback and most likely user error.

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 01:01:30 2024 UTC