Foros del Web » Creando para Internet » Sistemas de gestión de contenidos » Drupal »

Problema con página de inicio en Drupal 6

Estas en el tema de Problema con página de inicio en Drupal 6 en el foro de Drupal en Foros del Web. Hola a todos. Tengo el siguiente problema con una web creada a raiz de drupal (version 6). La web ( www.udciudadtorredonjimeno.com ), lista articulos de ...
  #1 (permalink)  
Antiguo 22/05/2012, 13:19
 
Fecha de Ingreso: diciembre-2003
Ubicación: Universidad de la Vida
Mensajes: 136
Antigüedad: 20 años, 4 meses
Puntos: 1
Problema con página de inicio en Drupal 6

Hola a todos.

Tengo el siguiente problema con una web creada a raiz de drupal (version 6). La web (www.udciudadtorredonjimeno.com), lista articulos de 10 en 10, pero en su primera página lista solo cuatro y los otros (seis restantes) no lo muestra ni en la siguiente página. He intentado de todo: actualizar módulo, remirar views..

Espero que me digan por que sucede esto, por que la verdad me esta volviendo loco...

Gracias de antemano!!
__________________
GardBeat
  #2 (permalink)  
Antiguo 22/05/2012, 13:41
Avatar de NUCKLEAR
Moderador radioactivo
 
Fecha de Ingreso: octubre-2005
Ubicación: Cordoba-Argentina
Mensajes: 5.688
Antigüedad: 18 años, 6 meses
Puntos: 890
Respuesta: Problema con página de inicio en Drupal 6

Todos estan publicados siguiendo la misma estructura?

Published ?
Promoted to front page ?
Sticky at top of lists ?

Solo se me ocurre de que esten publicados de alguna manera, y que el node.tpl o su heredero, este filtrando esos datos. Pon lo que tienes en el tu node.tpl.
__________________
Drupal Argentina
  #3 (permalink)  
Antiguo 23/05/2012, 03:04
 
Fecha de Ingreso: diciembre-2003
Ubicación: Universidad de la Vida
Mensajes: 136
Antigüedad: 20 años, 4 meses
Puntos: 1
Respuesta: Problema con página de inicio en Drupal 6

Si si, todo esta publicado de el mismo método que me indicas.

Gracias por tu ayuda..

Código codigo node:
Ver original
  1. <?php
  2.  
  3. /**
  4.  * @file node.tpl.php
  5.  *
  6.  * Theme implementation to display a node.
  7.  *
  8.  * Available variables:
  9.  * - $title: the (sanitized) title of the node.
  10.  * - $content: Node body or teaser depending on $teaser flag.
  11.  * - $picture: The authors picture of the node output from
  12.  *   theme_user_picture().
  13.  * - $date: Formatted creation date (use $created to reformat with
  14.  *   format_date()).
  15.  * - $links: Themed links like "Read more", "Add new comment", etc. output
  16.  *   from theme_links().
  17.  * - $name: Themed username of node author output from theme_username().
  18.  * - $node_url: Direct url of the current node.
  19.  * - $terms: the themed list of taxonomy term links output from theme_links().
  20.  * - $submitted: themed submission information output from
  21.  *   theme_node_submitted().
  22.  *
  23.  * Other variables:
  24.  * - $node: Full node object. Contains data that may not be safe.
  25.  * - $type: Node type, i.e. story, page, blog, etc.
  26.  * - $comment_count: Number of comments attached to the node.
  27.  * - $uid: User ID of the node author.
  28.  * - $created: Time the node was published formatted in Unix timestamp.
  29.  * - $zebra: Outputs either "even" or "odd". Useful for zebra striping in
  30.  *   teaser listings.
  31.  * - $id: Position of the node. Increments each time it's output.
  32.  *
  33.  * Node status variables:
  34.  * - $teaser: Flag for the teaser state.
  35.  * - $page: Flag for the full page state.
  36.  * - $promote: Flag for front page promotion state.
  37.  * - $sticky: Flags for sticky post setting.
  38.  * - $status: Flag for published status.
  39.  * - $comment: State of comment settings for the node.
  40.  * - $readmore: Flags true if the teaser content of the node cannot hold the
  41.  *   main body content.
  42.  * - $is_front: Flags true when presented in the front page.
  43.  * - $logged_in: Flags true when the current user is a logged-in member.
  44.  * - $is_admin: Flags true when the current user is an administrator.
  45.  *
  46.  * @see template_preprocess()
  47.  * @see template_preprocess_node()
  48.  */
  49. ?>
  50. <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">
  51.  
  52. <?php print $picture ?>
  53.  
  54. <?php if (!$page): ?>
  55.   <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  56. <?php endif; ?>
  57.  
  58.   <div class="meta">
  59.   <?php if ($submitted): ?>
  60.     <span class="submitted"><?php print $submitted ?></span>
  61.   <?php endif; ?>
  62.  
  63.   <?php if ($terms): ?>
  64.     <div class="terms terms-inline"><?php print $terms ?></div>
  65.   <?php endif;?>
  66.   </div>
  67.  
  68.   <div class="content">
  69.     <?php print $content ?>
  70.   </div>
  71.  
  72.   <?php print $links; ?>
  73. </div>
__________________
GardBeat

Última edición por GardBeat; 23/05/2012 a las 03:22
  #4 (permalink)  
Antiguo 23/05/2012, 03:27
 
Fecha de Ingreso: diciembre-2003
Ubicación: Universidad de la Vida
Mensajes: 136
Antigüedad: 20 años, 4 meses
Puntos: 1
Respuesta: Problema con página de inicio en Drupal 6

Por si te sirve de datos cuando voy a modificar algo de: Predeterminado Nodo view: frontpage

No me guarda nada de lo modificado. Por ejemplo, si cambio a 9 articulos en vez de 10 por página, no me hace dicho cambio, al igual que para cualquier otra configiración nueva.

Última edición por GardBeat; 23/05/2012 a las 03:32 Razón: añadir mas datos

Etiquetas: inicio, página
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 04:27.