Adding email address text field to node form to notify author

I tried several notification modules. However I am unable to find a way to add a text field for email address to node edit form, so that when the node is published, an email will go to the addressee. My purpose is to inform the addressee (not a registered user) that the node is pubished along with title and URL. Any help will be greatly appreciated.

Problem with Drupal 6.28 Upgrade

Hi All,

My hosting provider updated the server with PHP version 5.3 where our Drupal 6.4 website is installed. This caused all the themes to break and images were not displayed on the site. After some research found that I needed to update the Drupal core to support the newer version of PHP.

So updated the Drupal core to 6.28 (and other modules to match), and after a few hassles, I have most of it working now, but still have one issue I cannot resolve.

The problem is that the themes do not skin the website. The site has no colours etc being displayed, everything is shown as plain text on a white background. The layout looks about right though, so things are in the right place, but no colours, or theme graphics. I am using the Pixture theme, but have tried all the "out of the box" themes, and they are not working either.

I have trawled the forums, and google, and tried some things that looked to be related, but have not seen quite the same thing, or have found people with similar issues but no resolution to them.

This site was set up about 4 years ago for our photography club, and it has been working fine up until the PHP upgrade occurred.

My setup looks ok in the status report and all modules and themes are up to date…

Drupal 6.28
Access to update.php Protected
CAPTCHA Already 21 blocked form submissions
CKEditor 4.1.2
Configuration file Protected

Duplicating WebForms

Is there a way to duplicate webforms on Drupal 6?
I see that there is a way to clone individual questions but it didn't appear that that particular function would copy an entire form. Solutions and ideas are appreciated. Thanks!

drupal 6 - now working with remote oracle database

I am new to drupal but running drupal 6.16 on a redhat linux server. I have php 5.3.3 loaded and also have PDO installed as well.

my settings.php:
$db_url = 'oracle://dbuser:password@tardis.qwest.net/sad';

I have Oracle Instant Client working and can connect to database that sits on the tardis server, so I know I can get to the oracle server.

The fix:
You need to have oci8 and pdo_oci working in order to connect to a remote database.

PDOException: in system_update_files_database() Upgrading from D6.28 to 7.22

I'm trying hard to upgrade my Drupal 6.28 to 7.22 with no success.

I have followed all the steps, but when I try update.php this error happens.

PDOException: in system_update_files_database() (line 2268 of /home/.../modules/system/system.module).
The website encountered an unexpected error. Please try again later.

The function referred is this one, but I don't even know what to do with that. Any idea will be appreciated, I have searched thoroughly but I haven't found much on this error and certainly not a solution.

Multiple modules causing theme conflicts?

I've been using this method of setting up templates and throwing variables into them for quite a while. This site in particular has a few modules like that. But there seems to be some sort of conflict or something going on. I can't get the form variable to print in my template. Instead I have to call drupal_get_form() from my template file.

Am I making some sort of rookie mistake I'm not aware of? Can anyone help me on this? Below is my full code in the .module file and the subsequent call in the template. I'll put my included forms file at the bottom too just in case that offers some signal.

<?php
// $Id$

/*
* Implementation of hook_perm()
*/
function homedepot_perm() {
return array('access homedepot');
}

/**
* Implements hook_views_api().
*/
function homedepot_views_api() {
$path = drupal_get_path('module', 'homedepot');
return array(
'api' => 3.0,
'path' => $path,
'template path' => $path . '/templates',
);
}

/**
* Implementation of hook_menu()
*
* Hook menu registers page callbacks with Drupal's central menu system
*/
function homedepot_menu() {
$items = array();

$items['june2013'] = array(
'title' => 'Dealer Search',
'description' => 'Landing page for Home Depot link.',
'page callback' => 'homedepot_landing_page',
'access callback' => 'user_access',

Pages

Subscribe with RSS Subscribe to RSS - Drupal 6.x