Esto fue el año pasado... vean el post dice 2011
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúInternal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, warzone@elhacker.net and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
<?php
$file = "path.txt";
if(file_exists($file)){
echo("el archivo existe");
}
if(@chmod($file, 0777) == 0){
echo(" tiene permisos");
}
if((is_writable($file) && is_readable($file)) == 0){
echo(" escritura y lectura");
}
if(($fp = fopen($file, "a+")) == 0){
echo("archivo abierto");
}
$txt = "hola\n";
if((fwrite($fp, $txt)) == 0){
echo("archivo escrito");
}
fclose($fp);
?>