Server OS: ubuntu 12.04 Server
Server Software: nginx + php-fpm

simpletest consistently fails with:

Found user A edit link on admin users page
Drupal\user\Tests\UserAdminTest->testUserAdmin()

I spotted the problem down to general issue, that Drupal includes ?q=.... fragment to urls with (at least) "?destination=..." fragment set - see the users admin page Under Test. It's also the same if you navigate "by hand", no need to run the test.
In a few commits back, this behaviour was critically breaking the site as the "?" was added without any characters escaping. With latest from git it is being escaped and results in:
/user/3/edit?destination=admin/people%3Fq%3Dadmin/people
which still is bad, but not *that* bad.

The problem doesn't exists for default Apache, but exists for various nginx configurations.

Comments

Version: 8.0.x-dev » 8.1.x-dev

Drupal 8.0.6 was released on April 6 and is the final bugfix release for the Drupal 8.0.x series. Drupal 8.0.x will not receive any further development aside from security fixes. Drupal 8.1.0-rc1 is now available and sites should prepare to update to 8.1.0.

Bug reports should be targeted against the 8.1.x-dev branch from now on, and new development or disruptive changes should be targeted against the 8.2.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

Version: 8.1.x-dev » 8.2.x-dev

Drupal 8.1.9 was released on September 7 and is the final bugfix release for the Drupal 8.1.x series. Drupal 8.1.x will not receive any further development aside from security fixes. Drupal 8.2.0-rc1 is now available and sites should prepare to upgrade to 8.2.0.

Bug reports should be targeted against the 8.2.x-dev branch from now on, and new development or disruptive changes should be targeted against the 8.3.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

dpi’s picture

Issue summary: View changes
Status: Active » Closed (cannot reproduce)

This issue is very outdated.

Re-open if it still applies.