D7 Pathauto | Special characters problems

Hi,
I'm having problems with special characters on D7 URLs generated by Pathauto
I need to show america instead of am%C3%A9rica (américa).
I tried different settings but I couldn't fix that. Could you help me?

IIS6 - Uploaded logo image does not replace the default image

After successfully installing Drupal 7.4 on IIS6, I tried to change the default logo for my sub-theme (both the Global Settings and the settings for my sub-theme) . The upload occurred without an error and the filename appeared in the field "Path to Custom Logo". However, the default logo still displays. Clearing the cache had no effect. Curiously, the filename was saved with "_0" appended to the name. I hadn't seen that before, so perhaps it's a clue.

550 Access Denied: files folder controlled by Apache

Hello

First of all: Is it normal that the folder sites/default/files belonges to Apache (user and group)? I think not.

I cant even upload a image over ftp into the files folder, and I cant delete it.

taxonomy / view problem

site.parapsy.ro

when i click the taxonomy terms it doesn;t show the nodes from that term.

can anyone help me?

Examples of custom database implementations?

I've been working on trying to get Drupal to be a web version of Filemaker Pro and since I'm new to Drupal, I don't need to explain that I'm having lots of difficulty understanding the framework enough to adapt it to my needs.

I'm just curious if anyone can point me to completed, functioning examples of what an end result may look like...what others have done...so I may at least feel like I'm on the right track.

Remove custom form after submit

I have gotten the ajax submission down, now I need the form to fade out after submit with perhaps a message, "thank you for submitting".


<?php
/**
* FORM API
* Basic Contact form that inserts data into db and sends an email to both parties
*/

/*
* Implements hook_menu()
*/
function contact_menu() {
$items['contact'] = array(
'title' => 'View the sample form',
'page callback' => 'drupal_get_form',
'page arguments' => array('contact_nameform'),
'access callback' => TRUE,
'type' => MENU_NORMAL_ITEM
);
return $items;
}
/*
* Implements hook_theme
*/
function contact_theme() {
return array(
'contact_nameform' => array(
'render element' => 'form',
'template' => 'contact_nameform',
),
);
}

/*
* Assign the elements of the form to variables
*/
function template_preprocess_contact_nameform(&$variables) {
$variables['contact_nameform'] = array();
$hidden = array();
//Provides variables named after form keys
foreach (element_children($variables['form']) as $key) {
$type = $variables['form'][$key]['#type'];
if ($type == 'hidden' || $type == 'token') {
$hidden[] = drupal_render($variables['form'][$key]);
}
else {
$variables['contact_nameform'][$key] = drupal_render($variables['form'][$key]);
}
}
// Hidden form elements have no value to the theme

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x