with drupal 4.5 clean install, MySQL version 3.23.56 , PHP Version 4.2.2
webserver_auth call's user_external_load which check's for a user in the authmap table , the problem at least for me is that authmap is empty , i'm not sure if it's supposed to be but it is? adding a new user via drupal does not affect the authmap.
so webserver_auth fails as it can't find a valid user in authmap when that user exists in the users table.
I am testing the webform module and so far it looks great.
I have a working form up, but I would like to make the actual target email user selectable. In other words, does the existing webform only read one email address in or can I build additional email addresses in the form of a list on the form and have the submitted email go to this user selected email address.?
I have made some simple changes to the node module to allow you to mass/select/delete nodes from the admin/content page. I know its pretty basic, but I needed it...so here it is.
First and most importantantly, I'm running Drupal 4.5 stable.
I'm in the process of qritting a quickie module (I did a copy of the recipe module and hacked it to fit my needs).
I've gotten what I thought to be everything, however some issues have risen.
I don't seem capable of associating my module to the taxonomoy tree.
In a module I originally wrote for Drupal 4.4.x, I used some custom profile fields through the old profile module. In my new 4.5 systtem, I defined equivalents through the capabilities of the new profile module to extend the user profile. But I've been unable to locate the function/api calls to retrieve the value of one of these fields in 4.5?
I'm implementing a module with several custom nodes. I'm dispatching as much as possible to the node module's code.
I happily implemented mymodule_form() and my extra form elements are appearing just fine when adding/editing a mymodule node.
Two problems though.
1. When adding/editing, the 'title' field is manditory, which is fine. Except that its label is hardcoded to 'title'. A custom node modelling, say, a 'Company' would much rather this field be presented to the user as 'Company Name'. Could you introduce a hook for this?