Any Module Suggestions

Sorry my first post to the forum is a "begging" post, but I'm lost...

I'm wondering if anyone has any module suggestions that might suit the following needs (or any other suggestions)

What I need to do:

- Build a contributor list -- "contributors" will NOT be Drupal users

- For each "contributor" I need to be able to classify them (i.e. one contributor might be a "band", another might be an "author" etc.), add some text ( let's call it a biography ), a picture, and collect all Drupal nodes that are connected to a "contributor" ( maybe explained a little better in the next point )

- Then, in Content Types I need to add a field for "New Content" that will allow me to choose one (preferably: one or more) contributor(s) (preferable through a search function, since the list will likely be long -- but a drop down might be okay too.)

- Preferably, building of the "contributor" list should be controllable by fine-grain access so that I can restrict the ability to add new entries to specific Drupal users (assume this will be pretty-much a given, but might as well mention it)

Data Use:

If I get the system in place, I think I'll be fine with making use of the data in themes (which, compare to user and data structures, I've found quite straight-forward), but this might clarify what I'm trying to do (on the user / view side as opposed to "edit"):

Uploading Drupal on WinHost server

Hi there,

I'm trying to upload a Drupal Website created in Web Matrix. I used the "Site from Web Gallery" feature in Web Matrix and selected Drupal 7. I was able to use Web Deploy to upload Drupal on Winhost.

Now, I'm trying to hit my site "http://www.mdrfit.com/" but I'm getting the following error:

Warning: require_once(C:\Windows\SysWOW64\inetsrv/includes/bootstrap.inc) [function.require-once]: failed to open stream: No such file or directory in E:\web\mdrfitco\index.php on line 21

Fatal error: require_once() [function.require]: Failed opening required 'C:\Windows\SysWOW64\inetsrv/includes/bootstrap.inc' (include_path='.;C:\PHP\pear') in E:\web\mdrfitco\index.php on line 21

I think it has something to do with the DRUPAL_ROOT in the index.php file.
------------------------------------------------------------
define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
menu_execute_active_handler();
------------------------------------------------------------

I tried hardcoding the Path to root: E:\web\mdrfitco\ instead

------------------------------------------------------------
define('DRUPAL_ROOT', 'E:\web\mdrfitco');
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
menu_execute_active_handler();

Best solution to save my content type as PDF report for later printing?

Hi,

what would be the best way to implement PDF exporting from a content type?

idea is, that user fills out a node form, and then would be able to press "save as pdf", that would generate a pdf report out of that content type, using a premade pdf template, that could be then saved, printed, downloaded etc..

i've tried looking around for modules that enable this, closest i think is fillpdf but haven't found any way to make it work, or really documentation about pdf templates and tokens one is supposed to use..

Creating Field Type

Hi,

I need a list of items in my content type. That'd be easy with just the
text type, and accept multiple values.
But my single items have to contain 3 items: a text field, a text area
(multi line), and a boolean value.

So that means that I need a list of 'wrapper classes', or something.
Is this possible with the Field API?
When I search the internet for custom field types, I get field
formatters. But I don't have to change the field output, but create my
own field.

Other, maybe easier, suggestions are welcome too!

Notice: Undefined index: devel in DatabaseLog->get() (line 80 of C:\wamp\www\drupal-7.0\includes\database\log.inc).

Installed feeds module.
registered several feeds
imported 30+ feed items
when I click on the title or the readmore link, I get tossed out to the wamp default page and the above message gets put in the log

Are there any known module conflicts with Feeds, such as Devel, or RSS Aggregator?
Any config settings to be changed?
Could this be a WAMP related issue that wouldn't happen say in a LAMP stack?

Inserting code for only specific users

Hi,
I want to insert some javascript code only for anonymous user and authenticated user but not for admin users.

Wht ever I try the code still gets inserted for admin users. Please advice how I can change that ?

<?php  
if (in_array('authenticated user', array_values($user->roles))) {
?>

// my script 
 <?php
  }

 if (in_array('anonymous user', array_values($user->roles))) {
?>

// my script
 <?php
  }



?>  


Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x