Feed for each node

Hi all.
I using drupal 7 and have some task. I need to generate each node feed.
for exampe: I have node /?q=node/10 - for for this node should be available feed like /?q=node/10/feed
How to do this?

The best way to create a Client section?

Hello – I'm still a bit of a beginner in Drupal, but am learning. I'm hoping to create a Client section for all of my clients. Ideally, let's say John, Fred, and Mary all work for News Publishing. I'd like each of them to have an account with access to the News Publishing client page. If Amy works for Car Dealership, then I'd like Amy to have access to Car Dealership.

Here's what I have so far:

I have Organic Groups set up right now with two groups (one I use for public groups, and the other I have set up as Client, which are private groups). Obviously I can add John, Fred, and Mary to the News Publishing group and Amy to the Car Dealership group.

I also use Ubercart for my invoicing. I don't allow them to create orders, I just create an order in their account. I do this so that it can email the invoice, they can pay online, track order history, etc.

What I'd like to do is ultimately have John, Fred, Mary, or Amy log in and get redirected to their Client Dashboard (or something similar). It would show a table with their recent orders, recent posts to their group, and a files section with files available for them to download (e.g. PDFs).

Cannot show PDF from form submit handler

I have created a form using the form API to submit some values needed to generate a pdf. However, the submit handler does not view the pdf, but just displays the form again.

However, it does not work. What am I doing wrong in the submit handler, as it does not seem to return the pdf. It just repeats the form again? See it in action on http://vih.dk/kalender/pdf

/**
* Implements hook_menu()
*/
function vih_kalendersiden_menu() {
$items = array();
$items['kalender/pdf'] = array(
'title' => 'PDF',
'page callback' => 'vih_kalendersiden_view',
'page arguments' => array(),
'access callback' => 'vih_kalendersiden_access',
'access arguments' => array(),
'type' => MENU_LOCAL_ACTION,

);
return $items;
}

/**
* Checks permissions
*
* Everybody should be able to get the pdf
*/
function vih_kalendersiden_access() {
return true;
}

function vih_kalendersiden_view() {
return drupal_get_form('vih_kalendersiden_form');
}

function vih_kalendersiden_form($form_state) {
$form['vih_kalendersiden'] = array(
'#type' => 'fieldset',
'#title' => t('Settings for the PDF calendar'),
'#tree' => TRUE,
);

$months = array(
1 => t('January'),
2 => t('February'),
3 => t('March'),
4 => t('April'),
5 => t('May'),
6 => t('June'),
7 => t('July'),

PDOException: SQLSTATE[42S22]: Column not found error with Panels

I'm trying to edit the node template panel and every time I add new content to the layout and press the save I immediately get the error below and nothing saves.

I have no clue why it's trying to insert data into a "locks" column.

Any help would be much appreciated.

How to redirect the forum page to the index page ?

Hi !

My forum is accessible only on http://forum.mydomain.com/forum/ and I would like to access this URL : http://forum.mydomain.com/

Edit: I am using Advanced Forum which uses Forum

What can I do ?
Thank's !

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x