Subir videos a mi web

Y disculpa la molestia.
Estuve tratando con lo de subir los videos a mi web, y pues resulta que ahora no logro que el archivo sea subido. Lo extraño es que el mismo código lo probé en mi pc y funciona perfectamente. Me podrías decir que es lo que estoy haciendo mal.
Te dejo nuevamente el código de la página que valida y envía la información a la base de datos y también al servidor
<?php
//$tamano = $_FILES["archivo"]['size'];
//$tipo = $_FILES["archivo"]['type'];
$archivo = $_FILES["archivo"]['name'];
$destino =  "http://www.pesenlinea.tk/".$archivo;
copy($_FILES['archivo']['tmp_name'],$destino);
?>
<?php require_once('Connections/mysql.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
  $theValue = (!get_magic_quotes_gpc()) ? Addslashes($theValue) : $theValue;
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? Intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? "'" . Doubleval($theValue) . "'" : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . Htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  $insertSQL = sprintf("INSERT INTO videos (nombre, nombrevideo, comentarios) VALUES (%s, %s, %s)",
                       GetSQLValueString($_POST['nombre'], "text"),
                       GetSQLValueString($_POST['nombrevideo'], "text"),
                       GetSQLValueString($_POST['comentarios'], "text"));
  mysql_select_db($database_mysql, $mysql);
  $Result1 = mysql_query($insertSQL, $mysql) or die(mysql_error());
}
mysql_select_db($database_mysql, $mysql);
$query_Recordset1 = "SELECT * FROM videos";
$Recordset1 = mysql_query($query_Recordset1, $mysql) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
Lo que estoy logrando es que la información llegue a la base de datos pero el archivo no llega a mi servidor.

1 respuesta

Respuesta
1
Pues esto está mal a simple vista:
$destino =  "http://www.pesenlinea.tk/".$archivo;
El destino tiene que ser una carpeta dentro del servidor (en un servidor linux, por lo general es /var/www/) revisa eso, y te debería andar.
Hola amigo, mi carpeta se llama /public_html/ pero así como dices no me da.
Gracias
entonces debería ser $destino =  "/public_html/".$archivo; o podría intentar con $destino =  "./".$archivo;

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas