I'm currently using taxonomy_access for permissions, which is great... but I don't think it has the functionality to make a node (flexinode, actually) accessable only to the person who created it.
I have one menu shown on the left side of my site with two levels: main categories and sub-categories.
Each of the sub-categories links to a certain "taxonomy-page"/category. On each of these taxonomy-pages,
a menu on the right side of the site appears showing category-specific links.
However, when clicking on the menu to the right - it seems that something happens with the taxonomy. The menu
on the left collapse, and instead of at the top of the page showing "Bands>> Bandname >> About the band" - only "About the band" is shown.
I am running Drupal 4.7rc1 and am using aggregator2. Everything seems to work well but when I want to edit one of the node that have been created by aggregator2, to promote it on the front page for exemple, it returns me the following errors:
Invalid feed selected
However I am sure that the correct feed is selected (and actually I try with all the feed that where available in the feed selector).
Is it a known problem (or shouldn't I use the cvs version of the module with drupal 4.7)?
I'm having trouble figuring this option out. First off, this is what I'm trying to do:
I have three newsletter types (newsletter is a flexinode), GG, N4C, PSA. I want one page, "www.example.com/newsletters" and three tabs. Clicking on each tab should display the view of that newsletter in table form.
Please I need help! I´ve paid a banner and my contact form at my site is not working!
I´ve tried this form, but it is not sending anything:
<?php
/* website feedback form */
function user_form() {
if (!isset($_POST['name'])) $_POST['name'] = '';
if (!isset($_POST['email'])) $_POST['email'] = '';
//if (!isset($_POST['age'])) $_POST['age'] = '';
if (!isset($_POST['location'])) $_POST['location'] = '';
if (!isset($_POST['comments'])) $_POST['comments'] = '';
echo '
ADHIERO AL MOVIMIENTO ARGENTINO DE DEFENSA DEL CONSORCISTA COMPLETANDO EL SIGUIENTE FORMULARIO.
';
// make this the URL to *this* script
echo '
';
echo '
';
echo '
Nombre Completo:
*
';
echo '
Tipo y Número de Documento:
*
';
echo '
Email:
*
';
echo '
Teléfono:
';
echo '
Domicilio:
';
echo '
Localidad / Provincia:
';
echo '
Profesión / Actividad:
';
echo '
Comentarios:
';
echo '
';
echo '
';
echo '
';
}
// has the form been submitted?
if (isset($_POST['submit'])) {
// the form has been submitted
// perform data checks.
$error_str = ''; // initialise $error_str as empty
if (empty($_POST['nombre'])) $error_str .= '
No ha ingresado su nombre.
';
if (!empty($_POST['email']) && !validate_email($_POST['email']))$error_str .= '
No ha ingresado una dirección de email válida.
';
if (empty($_POST['email'])) $error_str .= '
No ha ingresado su email.
';
// more checks
if (strlen($_POST['nombre']) < 2 && !empty($_POST['nombre'])) $error_str .= '
Su nombre debe tener más de una letra.
';
if (strlen($_POST['documento']) < 2 && !empty($_POST['documento'])) $error_str .= '
Su documento debe contener más de un número.
';
if (!empty($error_str)) {
// errors have occured, halt execution and show form again.
echo '
No se ha podido enviar aún su adhesión debido a los siguientes errores: