Clean Urls in Snow Leopard Server 10.6.5

Hi, I'm currently trying to get clean urls to work on Snow Leopard Server 10.6.5. I've tried all the things in the support documents but it seems like it only works up to 10.6.2 I've enabled all overrides in server admin but that doesn't seem to get it to work. With wordpress that's all I needed to do, but with drupal, it's not working. When I say it's not working I mean the option to enable it is still grayed out.

Graham

Error message: "The file was not deleted, because it does not exist"

I'm getting this notice frequently (about every 8 hours) in dblog:
The file was not deleted, because it does not exist.
Any thoughts?

Need hints - Building a set of widgets which all contribute to one actual textfield

Hello,

in an already existing D6 site, i've got to process complex date and recurrence rules. Therefor, i developed a module which is able to do so (output a schedule etc.), and which takes its input from one single text field within certain nodes that are scheduled. This text field follows a certain syntax like [$DAY|$STARTTIME|$ENDTIME|$WEEKS] or similar, depending on the desired recurrence (think of the $values as placeholders, normally there are actual values).

Now, what i want to achieve is, that also people without any knowledge about this syntax can input new nodes or alter existing ones. This means, i'll have to build some kind of new widget set, that handles all the possible options. I've developed simple input widgets and of course many custom node types before on D6, but I have two simple requirements that i don't know how to satisy:

- How can I map multiple widgets (say, a drop-down and some checkboxes) to one text field in the node (and vice-versa)? Naturally, there has to go on some transformation somewhere, but where? Is AJAX the way to go? Or should I use something like the "computed field" module (which would force me into handling and storing the "source" widgets as fields in the DB, too, AFAIK)?

Programmatically adding a file field with the Fields API

hey,

I'm building a module that makes a custom content type - an audio upload to be precise. I have it already so that it adds the content type with a file upload box, but i cannot find how to change the allowed file extensions value.

I've read through every doc page on hook_field_info and field_create_field twice - as well as all the field_create_instance stuff but none of the methods suggested there seem to work. Below is my code:

<?php //Add Fields
//MP3 Field
$field = array(
'field_name' => 'field_sermon_audio', //Machine Name
'type' => 'file', //type, e.g. file, taxonomy_term_reference, text...
'cardinality'=> 1, //how many of these can there be in one field.
'settings' => array(
'instance_settings' => array(
'file_extensions' => 'mp3', //file extensions (seperated by a comma?)
'file_directory' => 'sermons/audio'), //directory (withing files/ ?)
'label' => t('Audio'), //Label
'description' => t('Store the Audio File'),
'file_extensions' => 'mp3'
),
);
field_create_field($field); //create field

$instance = array(
'field_name' => 'field_sermon_audio',
'entity_type' => 'node',
'label' => 'Audio',
'bundle' => 'sermon', //bundle is a posh name for the content type.
'description' => 'The audio recording of the sermon.',

How to add a webform to forum topic or new?

I want to a poll or form to my forums topics and news. Is it possible with any module?

Anonymous User Not Able To Vote On Polls

What permissions should be set to allow an anonymous user to VOTE on polls in Drupal 7? I have tried adding all the POLL permissions such as Add poll, Edit poll, etc. to the anonymous user account. However, an anonymous user just sees the RESULT of the voting but is unable to VOTE. Thanks Much!

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x