Very strange: forms/logins don't work outside of front page

This is a strange one that I can't figure out.

I have set up a new VPS server, running Ubuntu Mandrake. I have then moved my Drupal 7 site from Dreamhost to this VPS. Now that I've done this, however, the login form at http://nik.me/user doesn't work. I enter a login, and it just stays where it is... nothing happens. Stranger still, the search box in the sidebar works fine on the front page, but doesn't work at all when you click through to an interior page.

View shows no result except for user #1

I've setup a view to display a listing of events, with an exposed date filter. The view should allow for filtering events by date.

The exposed date filter only functions when the #1 admin is logged in. Otherwise (for all other authenticated and anonymous users, even if the user is made an additional admin) the view displays no result when the date filter is used. When the date filter is set to "any" for year, month and day the view will function and return events over all dates. However, if a user tries to use the date filter, no results display.

Upgrading from 6.22 to 7.4

So here is the story. I had a rather simple site that was a basic blog and photo gallery here at home. I created the site using O'Reilly's Using Drupal, specifically chapter 7.

I have tried to migrate the site from Drupal 6 to 7 twice. Once as soon as Drupal 7 was released by simply doing the basic remove old code, untar new code, move settings.php and files back in place. Of course this failed miserably so I simply restored my backup.

I need some tips on storing and displaying a custom map coordinates field

Hi there
I am trying to implement a new map coordinates field though I am having trouble getting the field values to save to the database as I cannot find the values I have entered through PHPmyadmin though I can see the table.
The map coordinate picker is working and fills the text area fine. However the field does not display when I view the node which is probably because the values are not saving to the DB. Also I am not sure if the hook_field_formatter functions are working. The code is an edited version of the field_example.module from 'examples' module.

my code:

in my .module file


<?php
function gmap_field_info() {
return array(
'gmap_coords' => array(
'label' => t('Map coords'),
'description' => t('A field composed of coords.'),
'default_widget' => 'gmap_coords_picker',
'default_formatter' => 'gmap_simple_text',
),
);
}

function gmap_field_validate($entity_type, $entity, $field, $instance, $langcode, $items, &$errors) {
foreach ($items as $delta => $item) {
if (!empty($item['coords'])) {
if (! preg_match('@^\:\.[0-9]{50}$@', $item['coords'])) {
$errors[$field['field_name']][$langcode][$delta][] = array(
'error' => 'field_example_invalid',
'message' => t('Coords must be in the format 128.45678:135.98764'),
);

}
}
}
}

jQuery Dialog won't open after close

Hey guys,

I've looking for a while on this issue. I can't get a jQuery UI dialog box to show again after it's been closed. I'm not sure if this is a Drupal issue or jQuery UI issue. But I'm copying and pasting code that does work on a site that doesn't have Drupal installed, so I figured this would be the best place to put it. My Javascript code is listed below, any hope is appreciated.

Thanks,

Zee

Alternatives to XML sitemap?

Hi,

I migrated the smallest website I manage, to Drupal 7. To make sure I identify issues and I am prepared for migrating other 2 much bigger websites. Now... one of the biggest problems I encountered is the fact that the XML Sitemap module does not work. If you install the latest version for Drupal 7, most likely you won't have it working properly.

I reported the issue, noticed lots of other people have similar problems to mine and... after quite a few days... no solution.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x