-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sitemap filename can't exceed 32 characters #13937
Comments
I just tested changing the VARCHAR length limit on the sitemap field. After running the query below, I was able to create a sitemap name that was up to 255 characters in length.
|
@erikhansen, thank you for your report. |
Hi @erikhansen , We can adjust the column length and add validation in the form. I think 255 chars should be enough to store a filename, following Limits of filename What do you think? |
@osrecio I agree that 255 characters should be sufficient. |
Hi @irajneeshgupta. Thank you for working on this issue.
|
Hi @erikhansen. Thank you for your report.
The fix will be available with the upcoming 2.3.2 release. |
Does a new backport need to be created? |
Issue: Sitemap filenames can't exceed 32 characters.
Preconditions
Steps to reproduce
thisisareallylongsitemapnamethatexceeds32characters.xml
)Expected result
thisisareallylongsitemapnamethatexceeds32characters.xml
file should get created in the/pub/
directory.Actual result
Additional Details
The
sitemap_filename
field is aVARCHAR(32)
, which explains why this issue is happening:The text was updated successfully, but these errors were encountered: