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

Remove  from emails?

How do I remove  from drupal emails?

This shows up in hotmail but not in Microsoft Outlook.

Any ideas?

I use notify module and simple news module...

 appears in all those emails, including html set emails -

It also appears on registration emails.

EXAMPLES:

MySql snippet

Someone might be able to help

I'm using a php snippet to display a set of web links on my front page including title and the teaser

$result1 = pager_query(db_rewrite_sql("SELECT n.nid, n.created FROM {node} n INNER JOIN term_node ON n.nid = term_node.nid WHERE n.type = 'weblink' AND n.status = 1 ORDER BY n.created DESC"), 7);
while ($node = db_fetch_object($result1)) {
$output .= node_view(node_load(array('nid' => $node->nid)), 1);

Forum permissions

Is there a way to give different access configurations for different forum containers?
What I want is one forum with news, where you need administrator approval to publish a topic there, and several forums with free access. ¿How can I do that?

Thanks

PD Sorry for my lousy english

taxonomy vs content types for events?

What do people think are the pros and cons for using content types vs taxonomy terms for events in 4.6.3?

I am not talking about passing content types through taxonomy terms (done easily enough), but the wisdom of creating flexinode content types only for the purpose of creating events.

After hours of trial and error, I am beginning to dislike flexinode event types for the following reasons:

  • For one thing, it is an incredible hassle to create them. For a site I am working on, I have identified at least 15 distinct types of events (and there will be more!) and I can't imagine creating all those content types (adding those fields individually for each type, setting weights to order the fields etc. gives me a nightmare) one by one.
  • Configuring all of them at administer>>content>>configure>>content types>>configure to make them appear or not in the event calendar, promoted to front page etc.
  • Enabling the flexinode event types in one or all of the vocabularies so that they can be associated with taxonomy terms
  • Most importantly, the talk of flexinode being discontinued after 4.7 or later

Admittedly, there is great power with flexinode event types, but also great complexity. Can't the same be accomplished by just creating taxonomy terms for these event types? In other words, create events without necessarily having to create flexinode event types?

How do I modify user_mail in user.module to allow a PEAR function to send my emails from my Drupal website?

To cut a long story short, I was told by host support that I needed to use a PEAR function to send my mail, as my host has prevented nobody@localhost from sending mail, and I have no access to php.ini.

Perhaps it may well be that there's a simpler way around this (and I suspect it has something to do with smtp_library), but I'm not a programmer, and I eventually hacked and slashed my way through the Internet wilderness to a pear function... which *succeeds* in sending test messages when I access it from the browser... the feeling of joy!!! The SMTP server is on my host.

I hope to enquire - how do I now include this function into user.module so that my password creation mails, new account mails and feedback work fine? specifically this script is now sitting in webroot as Mail.php. what should I change in user_mail (which from what I can see is being accessed by feedback.module?) For e.g. for feedback, how do I make sure the feedback goes to $body below? Thanks!!

<?
include("Mail.php");

$recipients = "y@z.com";

$headers["From"] = "x@y.com";
$headers["To"] = "y@z.com";
$headers["Subject"] = "Feedback";

$body = "TEST MESSAGE!!!";

$params["host"] = "mail.y.com";
$params["port"] = "25";
$params["auth"] = true;
$params["username"] = "x@y.com";
$params["password"] = "abcdefgh";

// Create the mail object using the Mail::factory method
$mail_object =& Mail::factory("smtp", $params);

My frontpage is showing forum posts

Hi,

can someone please show me how to not show forum posts on my front page.
I am not sure why, but by default, if you post anything in the forum, it shows up on the front page as well.

Pages

Subscribe with RSS Subscribe to RSS - Post installation