WSOD on user profile page

Created on 15 August 2024, 8 months ago

Problem/Motivation

Drupal 10.3
php8.2

I goto user/1/edit works
I goto user/1 anything else and I get a WSOD

I get the following:

|Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[42000]: Syntax error or access violation: 1103 Incorrect table name '': SELECT COUNT(*) AS "expression"
FROM
(SELECT 1 AS "expression"
FROM
"" "revision_table"
WHERE "revision_table"."uid" = :db_condition_placeholder_0) "subquery"; Array
(
[:db_condition_placeholder_0] => 1
)
in user_revision_count() (line 524 of drupal-10.3.x/html/modules/contrib/user_revision/user_revision.module).

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

πŸ› Bug report
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @SocialNicheGuru
  • πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru
  • Status changed to Needs review 8 months ago
  • πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru

    Fix the config/schema/user_revision.schema
    create an update hook that ensure that the revision table is created

  • πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru
  • Status changed to Needs work 6 months ago
  • πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru
  • πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru

    This is an update hook that will check for revision tables within the user object and update. It is based on the great work done in the .install file already

  • πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru

    Use this patch.
    Last patch was malformed

  • πŸ‡ΊπŸ‡ΈUnited States SocialNicheGuru

    I update the patch.

    I can confirm the table included with the latest patch:

    SHOW TABLES LIKE 'user_revision';
    +--------------------------------------------+
    | Tables_in_dev4devyearsyo_0 (user_revision) |
    +--------------------------------------------+
    | user_revision |
    +--------------------------------------------+
    1 row in set (0.007 sec)

    > DESCRIBE user_revision;
    +--------------------+------------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +--------------------+------------------+------+-----+---------+----------------+
    | id | int(10) unsigned | NO | MUL | 0 | |
    | revision_id | int(11) | NO | PRI | NULL | auto_increment |
    | revision_user | int(10) unsigned | YES | | NULL | |
    | revision_timestamp | int(10) unsigned | YES | | NULL | |
    +--------------------+------------------+------+-----+---------+----------------+
    4 rows in set (0.002 sec)

Production build 0.71.5 2024