πŸ‡ΊπŸ‡ΈUnited States @rjustin

Account created on 23 June 2022, over 2 years ago
#

Recent comments

πŸ‡ΊπŸ‡ΈUnited States rjustin

+1 to the resolution by @andriic.

I will add that there was a table in the db I was working on that required more work. For this table, I had to manually resize some columns from the default `varchar(255)`.

I used this command to return a integer for each row found in a column that exceeded a specific limit:
`SELECT COUNT(*) AS count_exceeding_XX FROM your_table WHERE LENGTH(your_column) > 50;`
Note: `count_exceeding_XX` is an arbitrary value. It can be named anything.

Then once I noted the lowest reasonable size I could set a column, I set it to the desired value by:
`ALTER TABLE your_table MODIFY COLUMN your_column VARCHAR(50);`

πŸ‡ΊπŸ‡ΈUnited States rjustin

This is still an issue for a site I'm working on. I've ran a handful of tests, and nothing seems to resolve this other than to disable the "Enable RSS feed links" feature for all "Vocabulary" items selected.

I'm curious if anyone else is having this same issue, even on the latest build of this module.

Drupal: 9.5.11
Sitemap: 2.0.0-beta6

Production build 0.71.5 2024