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

4 or 5 column layout in Drupal?

Hi everyone!

I would be utterly delighted if someone could point me to information on how to create / design etc a multi-column layout in Drupal 4.6/4.7 with blocks which can be edited etc.

Obviously a three column layout is the default on many Themes, (left block, content column, right block), but I would love to find a simple Theme which allows for "left block, content column, 1st right block, 2nd right block" or similar. Even a 5 col layout would be interesting.

Also I'd be interested in hearing about a content col/block/block format, a la Weblogs Inc and Gawker.

Is Drupal flexible with listing pages in the category page?

Hi guys,

Would you comment on the possibility of the Drupal to list pages in its category webpage?
Lets say I have a page structure like that:

Category page
|-page1
|-page2
|-...
|-pageX

I want to list page1, page2, ..., pageX in the "Category" page. Moreover, I want to display the list like this (table, like in e-commerce):

What the hec with .po and .pot files anyways?

I am gussing this files are used for the translation of Drupal. But what are they, how do they work? how can i open it? Can i modified it? Do i need to upload it together with the rest of the Drupal files?

This would be useful for newcomers to learn, and if relates to languages, then i need some more details, maybe i can help translate something!

thanks.

Access denied

Dear All,

Error message is as followings,

Access denied
You are not authorized to access this page.

When I login and try to access the administrator page, I see the message.
The strange thing is that I only see the message on IE6.0 recently. If I use Firefox, it is work without this message. In other words, IE6.0 (new updated by windows auto updated) can't login and access the administrator page, but Firefox(1.5.0.2) is working fine.

I even can't login to the drupal.org site with IE6.0(recently), so I use Firefox to login and leave the message.

Audio module creates tmp, tmp_1, tmp_2 files on mp3 upload

I recently migrated our drupal 4.6.6 site to a web host running Windows IIS and have had no end to the problems ...but anyways the one I'm currently trying to fix has to do with the audio module:

1) When users successfully upload their mp3's, they can click the 'Play' icon, but only hear 30-40 seconds of the audio before it stops. When they click the play icon again, the audio file restarts from the beginning and again won't play any longer than 30-40 seconds (I've tried it with many files, different sizes, etc).

An internal blogroll block where posts that are not accessible to the general public don't appear

I have used this peice of code http://drupal.org/node/7414 to make a block that shows a list of the blogs running on my site.

here;

http://womynsvoices.ca/en/blog

however I would like it if the most recent post for each user showed up. Sometimes users will post things only other regisetered users can see. I have arranged for that using the taxonomy access module.

What I would like to know is how exactly I can make it so that the snippet I am using is checking the taxo-access module to show the post titles according to the access level of the user browsing the site.

The user names can appear regardless.

this is the code I am using so far..

global $user;

if (user_access("access content")) {
$blogs = "";

$queryResult = db_query_range("SELECT n.uid, u.name, max(n.nid) FROM {node} n INNER JOIN {users} u ON u.uid = n.uid WHERE n.type = 'blog' AND n.status = 1 GROUP BY n.uid, u.name ORDER BY 3 DESC", 0, 20);

while ($node = db_fetch_object($queryResult)) {

$blogs .= l(t("%username", array("%username" => $node->name)), "blog/$node->uid", array("title" => t("Read %username's latest blog entries.", array("%username" => $node->name))));

$blogs .= node_title_list(db_query_range("SELECT n.title, n.nid FROM {node} n WHERE n.type = 'blog' AND n.status = 1 AND n.uid = " . $node->uid . " ORDER BY n.nid DESC", 0, 1));

}

return $blogs

Pages

Subscribe with RSS Subscribe to RSS - General discussion