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

Aggregator2 - updating the feed via cron is not working

I am using aggregator2 with drupal 4.6, I am running a few cronjobs to update the feeds periodically, hitting the url's
http://xxx.com/drupal_home/index.php?q=admin/aggregator2/refresh/251

the cron job returns a 403 and says:

Connecting to xxx.com[xx.yyy.zzz.aa]:80... connected.
HTTP request sent, awaiting response... 403 Forbidden
15:12:00 ERROR 403: Forbidden.

Problem with "Recent comments" block

Hi, I made this post here because I have a problem with my "Recent comments" block on my site, http://www.intothespirit.com

As you can see, some comments listed there have no names, so there is only "posted by ...". I noticed that this happens when a user edits a comment. Here is the code from the comment.module:

/** line 156
 * Implementation of hook_block().
 *
 * Generates a block with the most recent comments.
 */
function comment_block($op = 'list', $delta = 0) {
  if ($op == 'list') {
    $blocks[0]['info'] = t('Recent comments');
    return $blocks;
  }
  else if ($op == 'view' && user_access('access comments')) {
    $result = db_query_range(db_rewrite_sql('SELECT c.nid, c.* FROM {comments} c WHERE c.status = 0 ORDER BY c.timestamp DESC', 'c'), 0, 5);
    $items = array();
    while ($comment = db_fetch_object($result)) {
      $result2 = db_query('SELECT name FROM {comments} WHERE cid='.$comment->cid);
$comment_user = db_fetch_object($result2);
$items[] = l($comment->subject . '', 'node/'. $comment->nid, NULL, NULL, 'comment-'. $comment->cid) .'<br /> posted by <b>'. $comment_user->name . '</b><br />'. t('%time ago', array('%time' => format_interval(time() - $comment->timestamp)));
    }

    $block['subject'] = t('Recent comments');
    $block['content'] = theme('item_list', $items);
    return $block;
  }
}

Anyone got an ide

Sort Members by State

Hi

Using Drupal 4.6 with the location, profile and member modules installed. I'd like to have the option of sorting the site members by state. I've searched google and drupal.org, to no avail. Any help?

"How do I" use the CSS module

Is there an example of how to use the CSS module? I would paste my code here but the "protection filter" on drupal.org keeps telling me that I am trying to post "suspicious content".

In short I have tried specifing full CSS info with the appropriate tags and just the contant of the usual tags. I have tried applying it to TABLE, H1, TH, TR, TD tags without any sucess.

Aggregator2...not getting full articles in feed....

I think I might be missing something....

I have added the following feed to www.natoliracing.com

http://www.ozmotorsport.com.au/taxonomy/term/27/0/feed

and the it only seems to show trimmed versions of the articles....what am i missing....how do i get the full articles? can someone help please...... I am trying to get all articles in this taxonomy to feed across

Flexinode - how to add custom fields

This is driving me crazy ! According to the instruction:

The administration pages for this module are located at:
Administration -> Content Management -> Content Types
Click on "add content type" to make a new one. On this page you can set
the title of your new content type and some related information.

Once you save your new type, you can add new custom fields to it using
the links on the overview page. Currently you can add text fields, text
areas, and dropdown menus. The Title and Description fields are always
shown.

Pages

Subscribe with RSS Subscribe to RSS - Post installation