Tengo un problema con un uploader de archivos, quizás es con la función copy().
Si pudieran decirme si hay algún fallo...
Es un script modificado por mi.
Saludos.
Código PHP:
Ver original
<?php include('../conectar.php'); if($_COOKIE['rol'] != "1" && $_COOKIE['user']) {?> <?php $status = ""; if ($_POST["action"] == "upload") { // obtenemos los datos del archivo $tamano = $_FILES["archivo"]['size']; $tipo = $_FILES["archivo"]['type']; $archivo = $_FILES["archivo"]['name']; if ($archivo != "") { // guardamos el archivo a la carpeta files $destino = "/subir/files/".$prefijo."_".$archivo; $status = "Archivo subido: <b>".$archivo."</b>"; $nombre = $prefijo."_".$archivo; VALUES ('$nombre')") } else { $status = "Error al subir el archivo"; } } else { $status = "Error al subir archivo"; } } ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>PDF Upload</title> <link href="estilo.css" rel="stylesheet" type="text/css" /> </head> <body> <table width="413" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="413" height="40" class="titulo">PDF upload</td> </tr> <tr> <td class="text">Por favor seleccione el archivo a subir:</td> </tr> <tr> <form action="upload.php" method="post" enctype="multipart/form-data"> <td class="text"> <input name="archivo" type="file" class="casilla" id="archivo" size="35" /> <input name="enviar" type="submit" class="boton" id="enviar" value="Upload File" /> <input name="action" type="hidden" value="upload" /> </td> </form> </tr> <tr> <td class="text" style="color:#990000"><?php echo $status; ?></td> </tr> <tr> <td height="30" class="subtitulo">Listado de Archivos Subidos </td> </tr> <tr> <td class="infsub"> <?php echo "<ul>"; if ($arch != "." && $arch != "..") { echo "<li><a href=\"/subir/files/".$arch."\" class=\"linkli\">".$arch."</a></li>\n"; } } echo "</ul>"; } ?> </td> </tr> </table> <?php } ?> </body> </html>
EDITO:
El error que me marca es el siguiente:
Warning: copy(nombre_del_archivo) [function.copy]: failed to open stream: No such file or directory in /home/ampaciam/domains/ampaciamaria.es/public_html/subir/upload.php on line 18