Recently upgraded to Drupal 7.18 with the same Path Auto version (7.x-1.2) but unless I do a bulk update, the aliases are no longer automatically generated.

Taxonomoy is not affected as it respects the alias from the pattern settings. Only for the content type pattern.

Please help.

Comments

osysltd’s picture

acknowledge bug!! please fix it as soon as possible

scottcheek’s picture

Similar issue.

Upgraded 2 weeks ago from D7.15 to D7.19. In the process of migrating content from old D6 site.
When I went to migrate latest content the new nodes and users that were migrated were not aliased.

The pathauto setting on each migrated node was disabled. Bulk Update fixed the aliases on the all migrated nodes and users.

I tested creating a new node and aliases work fine.

Not sure what the issue is. I had migrated content without any issue before updating Drupal core.

osysltd’s picture

Still any workaround to get pathauto work again? the aliases are no longer automatically generated. Field for an alias is blank in node add form. Using latest dev.

Vojta’s picture

Priority: Normal » Major

I upgraded site from D6 to D7, now Pathauto doesn't generate any URLs. Bulk update also doesn't work. I checked Pathauto settings and it seems to be fine, no error anywhere.

osysltd’s picture

If it will help, I noticed that when I disable action redirect to page after node add, everything works again.

Anonymous’s picture

This issue still persists in 7.2x and as osysltd mentioned, happens only when a redirect is set, such as 'drupal_goto('admin/content');' at the end of hook_node_insert().

Dave Reid’s picture

@Scott: Having drupal_goto() in hook_node_insert() literally means that no other code can execute after that call. You should avoid that if at all possible.