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

FriendsElectric - lack of hover description on menu items

This feature seems to be disabled in the FriendsElectric theme - anyone know why and how to get the menu description to show up again as it does in the default drupal themes. This is an impotant useability/accessability feature - limits this theme without it - ta. Renaee.

CANNOT ADD LINK TO A FILE stored inside my drupalsite nor another nondrupal site!

I´ve added a folder inside my drupalsite named "download".
I´ve added files there and inside certain nodes I add a link manually to http://www.mysite.com/download/file.zip
It appears a Not Found page!!

(Naturally, I´ve checked the folder and file´s existance...)

So, I´ve another site (non drupal yet), and I´ve made the same thing, creating the folder THERE and adding inside it the files.
The same thing happens!!

Solution for a custom contact form with file attachment (use form API)

Hi,

for all of you who search for a custom contact form with the ability to attach files, here is my solution.
Hope you enjoy it and don't be shy, let me know your opinion and give me some feedback so I can improve this form.


<?php

$form['name'] = array(
'#type' => 'textfield',
'#title' => t('your name'),
'#default_value' => $object['name'],
'#size' => 30,
'#maxlength' => 128,
'#required' => TRUE,
);

$form['eMail'] = array(
'#type' => 'textfield',
'#title' => t('your email-adress'),
'#default_value' => $object['eMail'],
'#size' => 30,
'#maxlength' => 128,
'#required' => TRUE,
);

$form['subject'] = array(
'#type' => 'textfield',
'#title' => t('subject'),
'#default_value' => $object['subject'],
'#size' => 30,
'#maxlength' => 128,
'#required' => TRUE,
);

$form['message'] = array(
'#type' => 'textarea',
'#title' => t('your message'),
'#default_value' => $object['message'],
'#size' => 30,
'#maxlength' => 128,
'#rows' => 7,
'#required' => TRUE,
);

$form['file1'] = array(
'#type' => 'file',
'#title' => t('attach your files here'),
);
$form['file2'] = array(
'#type' => 'file',
);
$form['file3'] = array(
'#type' => 'file',
);

$form['submit'] = array(
'#type' => 'submit',
'#value' => t('send email'),
);

$form['#attributes']['enctype'] = 'multipart/form-data';

Where do I turn "Create Content" off for Anonymous Users?

Apologies for being myopic but this one has eluded me?

Anyone who logs onto my site has the "Create Content" menu option at the top of the Menu Block.
How do I turn it off?

With thanks,

Ed

How can I print a "custom field" value taken from the profile module inside a link?

I have a question regarding the custom fields of the profile module.

Is it possible to include a custom profile field inside a link.

I want to put some clickbank affiliate links on the nodes of my test website. I also need to customise the links with the clickbank username of the author of the node.

Example: I want to replace the value %clickbank_username% in this link with the clickbank username of the author and print the correct link in a block.

HELP SITE STOPPED

Ihave this message :

Pages

Subscribe with RSS Subscribe to RSS - Post installation