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

Webform woes on Drupal 7

Hello forum

I am failing at webform module installation.

I have installed and can 'create' a form, but the view once saved just shows the title and one elongated field that is non writable.

The error is :
"user warning: Unknown column 'cid' in 'where clause' query: SELECT data FROM webform_submitted_data WHERE nid = 6 AND cid = 1147288719 in
$SITE_PATH/database.mysql.inc on line 120."

I have checked the webform.mysql file and indeed it cointains the nid and cid columns within the webform_submitted_data table.

All advice will be appreciated.

Free brownies! How can I add most recent posts of displayed user? See Code Here

I have a block that shows the info for the blogger when on a node or blog associated with that blogger(see code below). What I would like to do is add recent posts (just titles)to the bottom of it. I've tried to use the code listed here:

Display the (x) most recent weblog entries from a specific user
http://drupal.org/node/23230

but i can't get it to display the recent posts. The above snippet is for 4.6 and I am on 4.7. How can I get this to work? I'll bake you brownies for your insight...


<?php

$uid = arg(1);
$user = user_load(array((is_numeric($uid) ? 'uid' : 'name') => $uid, 'status' => 1));
profile_load_profile($user);
if (arg(0) == 'node' && is_numeric(arg(1))) {
// This line works for Drupal 4.7; if using 4.6 uncomment the line below it and comment this one.
$node = node_load(arg(1));
// $node = node_load(array('nid' => arg(1)));
if ($node->type != 'blog') {
return;
}
$user = user_load(array('uid' => $node->uid));

}
if (arg(0) == 'blog' && is_numeric(arg(1))) {
$user = user_load(array('uid' => arg(1)));
}
if (arg(0) == 'forum' && is_numeric(arg(1))) {
$user = user_load(array('uid' => arg(1)));
}
if (!$user) {
return;
}

// ... insert your snippet here. $user is loaded; if it's a blog node, $node is also loaded.

if ($user->picture){print "uid\">Only local images are allowed.picture\">";}
if ($user->profile_blog_title){
print l($user->profile_blog_title, "blog/$user->uid");}

if ($user->profile_blog_description){print "

Length of items in taxonomy term

I've a number of story items belonging to a taxonomy term. If I view the taxonomy term I see all the story items, but I only see part of each item followed by a Read More link - how do I get this particular term show the whole of each story item?

really/long/long/long/long/long/long/long/long/long/paths

Server log shows requests for such URLs as
/forum/misc/misc/misc/misc/misc/misc/misc/modules/event/themes/pushbutton/misc/drupal.css /forum/misc/misc/misc/misc/misc/misc/misc/modules/event/themes/pushbutton/misc/misc/drupal.css /forum/misc/misc/misc/misc/misc/misc/misc/modules/event/themes/pushbutton/misc/modules/event/event.css /forum/misc/misc/misc/misc/misc/misc/misc/modules/event/themes/pushbutton/misc/themes/pushbutton/style.css

and
/forum/taxonomy/term/12/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/taxonomy/term/taxonomy/0/feed

Recent Blog Posts / Comments

I love Drupal thus far- But I am a noob

In my pushbutton theme, in the left column, why do "recent comments" only show when someone is logged in? And the "recent blog posts" from users are not listed at all?

How can I have the recent comments and the recent blog posts always listed- regardless of if someone is logged in or not?

Thanks!

Jeff

flexinode table view not working.

I want to view a flexinode type (which has an ID of 1) in a table view....i'd like to sort it by a field called category...so this is the URL I go to:

www.mysite.com/flexinode/table/1?sort=asc&order=category

I get a page not found error....I know that the URL is correct...so what is wrong?

Pages

Subscribe with RSS Subscribe to RSS - Post installation