Drupal is up and running but how do I ...?

Nodewords Module 5.x - Not Using Teaser as Meta Description

Hello,

I have a site we upgraded from 4.6 to 4.7 and then to 5.0. We were using the nodewords module for 4.6 of course, but I have upgraded everything properly and using the 5.0 nodewords module now. The module works fine except for the showing of teasers as meta descriptions. If I go in and specify the meta description for any node, it shows up fine. But it will not pull the teaser. I have about 1400 nodes, so I'd really rather not go type it in for each one. Does anyone know a fix for this? Thanks in advance.

ambition13

Bilingual header image in multlilingual blocks - Empty H2 tags

I want the header images on my site to change when the language is changed. I created a bilingual block for the images. I did not enter a heading for the block but the empty H2 tags are still generated. How do I stop these H2 tags with no content inside from being generated?

Thanks for your help.

Need some help with "forum module (flatforum)"

Hello,

forum module works fine for me, flatforum too as long as there is no comment. But if there are any comments (so post answers to the thread) all comments are shown, but the thread topic (first post in that thread) isn't !

It seems like there is something wrong with my function _phptemplate_variables($hook, $vars).

this there was original (garland, drupal 5) - I commented this out

function _phptemplate_variables($hook, $vars) {
  if ($hook == 'page') {

    if ($secondary = menu_secondary_local_tasks()) {
      $output = '<span class="clear"></span>';
      $output .= "<ul class=\"tabs secondary\">\n". $secondary ."</ul>\n";
      $vars['tabs2'] = $output;
    }

    // Hook into color.module
    if (module_exists('color')) {
      _color_page_alter($vars);
    }
    return $vars;
  }
  return array();
}

and just added than this from flatforum (like their install.txt says)


function _phptemplate_variables($hook, $vars) {
if ($hook == 'page') {
static $is_forum;
$variables = array();
if (!isset($is_forum)) {
if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == '') {
$nid = arg(1);
}
if (arg(0) == 'comment' && arg(1) == 'reply' && is_numeric(arg(2))) {
$nid = arg(2);
}
if ($nid) {
$node = node_load(array('nid' => $nid));
}

Importing terms

Just installed Drupal 5. I want to import some terms to a category called 'Countries'. I have the in an xml file. With version 4.7.x you could do it using the 'taxonomy import/export' module, but there is not yet a version for Drupal 5.

I don't know if this module will be updated. Meanwhile is there a way to do it?

Thanks

syndicate icon links to check_url

Hello.

The syndicate icons on my site link to ...includes/'.check_url($url).'

This is with the icon in the syndicate box and on taxo terms.

Does anyone know how I can fix this so that it does what it is intended to do? I am probably overlooking something obvious, but after searching and looking at my settings I haven't found a solution.

how to drop "/drupal" from URL of Drupal site

I have installed Drupal on my localhost using the XAMPP setup. I now have the admin site running, but have a question regarding the root URL. Currently it is http://localhost/drupal. I want it to be simply http://localhost/. How do I drop the /drupal subdirectory and make http://localhost/ be the URL to access? Eventually when I launch the live site that I'm building, the same should apply.

Pages

Subscribe with RSS Subscribe to RSS - Post installation