Hi,

I have problems with the output page, because no data will be displayed. I tried Teaser and Full node view type. Both the same problem.

I use views-4.7.x-1.5 with Drupal 4.7.6

Look at the attached screenshot.

CommentFileSizeAuthor
output_page.jpg21.2 KBalexandermeindl

Comments

douggreen’s picture

The error you are reporting has occured before. Please checkout the latest dev version and look through the issue queue. If you still have problems, please export your view and paste it here between <code> and </code> tags. Thanks!

alexandermeindl’s picture

Hi,

with the latest dev version, I got this message:

warning: strpos() [function.strpos]: Empty delimiter. in /srv/www/vhosts/..../httpdocs/modules/views_alpha_pager/views_alpha_pager.module on line 135.

Here is an export of my view:

 $view = new stdClass();
  $view->name = 'Lexikon';
  $view->description = 'Autohifi Lexikon';
  $view->access = array (
  0 => '3',
  1 => '6',
  2 => '4',
  3 => '5',
);
  $view->view_args_php = '';
  $view->page = TRUE;
  $view->page_title = 'Autohifi Lexikon';
  $view->page_header = 'Hier finden steht Ihnen das Autohifi-World Carhifi Lexikon zur Verfügung.<br><br>';
  $view->page_header_format = '1';
  $view->page_footer = '';
  $view->page_footer_format = '4';
  $view->page_empty = 'Nein kein Begriff vorhanden.';
  $view->page_empty_format = '4';
  $view->page_type = 'node';
  $view->url = 'autohifi-lexikon';
  $view->use_pager = TRUE;
  $view->nodes_per_page = '25';
  $view->menu = TRUE;
  $view->menu_title = 'Lexikon';
  $view->menu_tab = FALSE;
  $view->menu_tab_default = FALSE;
  $view->menu_tab_weight = '0';
  $view->sort = array (
    array (
      'tablename' => 'node',
      'field' => 'title',
      'sortorder' => 'ASC',
      'options' => '',
    ),
  );
  $view->argument = array (
  );
  $view->field = array (
    array (
      'tablename' => 'node',
      'field' => 'title',
      'label' => 'Begriff',
      'handler' => 'views_handler_field_nodelink',
      'sortable' => '1',
      'defaultsort' => 'ASC',
      'options' => 'link',
    ),
    array (
      'tablename' => 'users',
      'field' => 'name',
      'label' => 'Ersteller',
      'sortable' => '1',
    ),
    array (
      'tablename' => 'node',
      'field' => 'created',
      'label' => 'Erstellt am',
      'handler' => 'views_handler_field_date_small',
      'sortable' => '1',
    ),
    array (
      'tablename' => 'node_counter',
      'field' => 'totalcount',
      'label' => 'Aufrufe',
      'sortable' => '1',
    ),
  );
  $view->filter = array (
    array (
      'tablename' => 'node',
      'field' => 'status',
      'operator' => '=',
      'options' => '',
      'value' => '1',
    ),
    array (
      'tablename' => 'node',
      'field' => 'type',
      'operator' => 'OR',
      'options' => '',
      'value' => array (
  0 => 'content_lexikon',
),
    ),
  );
  $view->exposed_filter = array (
  );
  $view->requires = array(node, users, node_counter);
  $views[$view->name] = $view;
douggreen’s picture

I backported the Drupal 5 version to Drupal 4.7. Please check-out the latest development release and try again. The project release system only guarantees to package these files twice daily, so please make sure that you have version 1.4.2.12 (look at the $Id$ string in views_alpha_pager.module).

Thanks!

alexandermeindl’s picture

Hi,

ok, I got the newest version from CVS. If I enter the page, I have the same problem as before (no letter is selected, therefore no results are listed). But if I select a letter, now it works. I think, it is a problem with selecting a starting letter.

Ciao Alex...

douggreen’s picture

Status: Active » Fixed

Thanks for catching this! I thought this was working, but obviously it wasn't. I think I've fixed it now (in both D4.7 and D5). Please check-out and try again. For D4.7, you should have version 1.4.2.13 (or higher).

alexandermeindl’s picture

Hi douggreen,

now it works, how it should work ;) Thanks for fixing the problem!

Ciao Alex...

douggreen’s picture

Status: Fixed » Closed (fixed)