Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/10/2012, 14:18
ferminako
 
Fecha de Ingreso: abril-2010
Mensajes: 298
Antigüedad: 14 años, 6 meses
Puntos: 1
Respuesta: Problema, no retorna todos los campos.

total y absolutamente seguro , entiendo que todo lo que cuento suena a estas mirando en otra db... soy consciente , pero lo he verificado.

He creado un php de prueba con el siguiente codigo que accede a la nueva tabla que he creado llamad videos:

Código PHP:
Ver original
  1. <?php
  2.  
  3.  
  4.     $conexion121 = mysql_connect("servidor", "user", "pass");
  5. mysql_select_db("db", $conexion121);
  6. $queEmp = "SELECT * FROM videos WHERE idContenido =".$subid;
  7. $resEmp = mysql_query($queEmp, $conexion) or die(mysql_error());
  8. $totEmp = mysql_num_rows($resEmp);
  9. if ($totEmp> 0) {
  10.    while ($rowEmp = mysql_fetch_assoc($resEmp)) {
  11.       echo "<strong>".$rowEmp['url']."</strong><br>";
  12.  
  13.    }
  14. }
  15. ?>

Y me devuelve:

mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or earlier you might need to remove the old-passwords flag from your my.cnf file

He buscado y se debe a lo siguiente:
http://marpada.net/blog/error-de-conexion-db-en-horde

Puede esto tener algo que ver con que todo lo que añado a la estructura de una tabla o una nueva tabla en si misma, sea inaccesible??