Sections module not working after implementing clean urls.

Ok the problem is that Ive had the sections module running smoothly for some time now but recently when we moved the site and cleaned the urls the sections module stopped working the website I am working on is http://www.alliedfarmers.net/ before I just had to put in "Node/7" for example and the node would work but no it is int working no matter how hard I try.

Forwarding form_state data to action?

Sorry- this seems like it should be such a simple thing to do, yet I haven't been able to find anything in the documentation that suggests how to do this.

I have a form that will typically sit in a menu on the right-hand block, which is used to perform a database search.
Clicking the submit button calls the _submit function, and then the jobsearcher_results() function. What I want to be able to do is access the form data from within jobsearcher_results().

Any help's appreciated. Am using Drupal 6.

<?php
function jobsearcher_form($form_state) {

$form= array(

'#action' => url('jobsearcher/results'), // jobsearcher_results()
'#id' => 'user_jobsearch_form',
'#validate' => user_jobsearch_default_validators(),
'#submit' => array('user_jobsearch_form_submit'),
);

// Other form controls here.

$form['form']['submit'] = array(
'#type' => 'submit',
'#value' => t('Search'),
);
return $form;
}

function jobsearcher_menu() {
$items = array();
$items['jobsearcher/results/'] = array(
'title' => 'Job Search Results',
'page callback' => 'jobsearcher_results',
'access arguments' => array('access jobsearcher content'),
'type' => MENU_CALLBACK
);

function user_jobsearch_form_submit($form, &$form_state) {

// Can access $form_state data here
}

function jobsearcher_results() {

Link to show only nodes of type story / blogs / pages.

I know I can create a link like http://mydomain.tld/?q=blog/7 to list all blogs from a spesific user..

But how can I create similar links to list all nodes of a certain type, regardless of author?
I primarily need blogs and stories, but pages would also be nice.

Regards
Alf Solli

Anyone had luck with Ezmlm in version 6?

I have it installed, but each time I try to create a mailing list, nothing shows up.

Center align for images

Hello, i have placed two images in the header and by default they appear on the left side of the header. I need to make them centered. As i understand, it is impossible to make it in the admin, so i went to css and php files of the theme, but can't find where to write the code align="center".

Could you please help me with that?

Fitlered HTML issue

I would like use xStandard module for, but unfortunately I can't make a table
using that WYSWIG editor. I can't do it beacuse for xStandard I have to
use Filtered HTML. Unfortunatelly I`m not able specify all needed HTML tags:

That is everything what I can do at the moment (in filtered HTML tag).

Pages

Subscribe with RSS Subscribe to RSS - Drupal 6.x