In pathauto we have an issue that raises the issue of path aliases longer than 128 characters.

I'm logging this as a feature request (support longer URLs) in path module. Because it is a feature AND because it involves new database updates AND because it could have an impact on performance it seems worthwhile to wait for 6.x so I am postponing and assigning to myself.

Comments

lilou’s picture

Title: support longer URLs in path.module » Support longer URLs in path.module
Version: x.y.z » 7.x-dev
Status: Postponed » Active

See also : #57046: Feed aliases fail when max length of URL is the same as the size of the dest column

In D7 :

  $schema['url_alias'] = array(
    'description' => t('A list of URL aliases for Drupal paths; a user may visit either the source or destination path.'),
    'fields' => array(
      'pid' => array(
        'description' => t('A unique path alias identifier.'),
        'type' => 'serial',
        'unsigned' => TRUE,
        'not null' => TRUE,
      ),
      'src' => array(
        'description' => t('The Drupal path this alias is for; e.g. node/12.'),
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
      ),
      'dst' => array(
        'description' => t('The alias for this path; e.g. title-of-the-story.'),
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
      ),
lilou’s picture

Status: Active » Closed (duplicate)
greggles’s picture

Ah, yes this is a duplicate of something created 2 years after it :p

But that has more discussion so I agree with which one is made duplicate.