This forum is for less technical discussions about the Drupal project, not for support questions.

uploaded files not showing in blocks

upload file easily but it's not showing in blocks as filesstore.
Any idea
Thanks in advance

Static Page Protection

Is there a way to protect sttatic pages with the user module???

Reason:
I have an extensive site with a lot of static pages but I would like to use Drupal as the main page for the sotry capability and be able to use the User Module in order to protect the rest of my site. Is this possible??

Would it be difficult for the feature to be implemented???

User Friendly URLS?

While Drupal is obviously robust, it would be nice to see user friendly urls.

Tip: News feed block based on keywords

I put together a simple block which I'm finding extremely useful and I think others might benefit as well. As opposed to having an agreggate news feed block based on a "bundle" I wanted one filtered on keywords:

 $result = db_query("SELECT * FROM item WHERE 
      lower(title) like '%microsoft%'
   or lower(title) like '%windows%'
   or lower(attributes) like '%microsoft%'
   ORDER BY iid DESC LIMIT ". variable_get("import_block_limit", 15));

  while ($item = db_fetch_object($result)) {
    $output .= import_format_item($item);
  }

  return $output;

This way if I have a feed marked as "Microsoft" in the attributes or a related word appears in the title of any feed it's in the block. I'm using this at MS Versus. Hope others find this useful.

How to determine what module called a block?

Is there any way to determine which module has called a block? Specifically, I'd like to make a change such that certain blocks, when called, get a different title background color. The only way I can think of doing this is testing who's calling the block, then use a condition statement to change a CSS class (or similar).

Plone like

May I suggest our developpers to have a detailed look at www.plone.org for very nice suggestions for Drupal v5, there is also a lot of good ideas for the interface, especially the help given during form input.

I'm working on a plone theme for drupal see in the theme forum.

Eric.

Pages

Subscribe with RSS Subscribe to RSS - General discussion