Defect #39758
openSome pages on https://www.redmine.org/plugins are returning 500 Internal Server Error
0%
Description
When browsing through the [plugin list](https://www.redmine.org/plugins) I noticed that some pages were throwing a 500 error, for example pages 9 and 10:


Here I am, contacting my Redmine admins :)
I've written a small bash script to check all the pages that are returning 500:
#!/bin/bash
# Base URL
base_url="https://www.redmine.org/plugins?page="
# Loop from 1 to 112
for i in {1..112}
do
# Construct the full URL
full_url="${base_url}${i}"
# Perform the HTTP request and capture the status code
status_code=$(curl -o /dev/null -s -w "%{http_code}\n" "$full_url")
# Check if the status code is 500
if [ "$status_code" -eq 500 ]; then
echo "Page $i returned a 500 status code."
fi
done
When ran from my computer, these pages are returning 500:
Page 9 returned a 500 status code.
Page 10 returned a 500 status code.
Page 21 returned a 500 status code.
Page 25 returned a 500 status code.
Page 35 returned a 500 status code.
Page 65 returned a 500 status code.
Page 67 returned a 500 status code.
Page 87 returned a 500 status code.
Page 90 returned a 500 status code.
Page 98 returned a 500 status code.
Page 105 returned a 500 status code.
Page 112 returned a 500 status code.
Files
Updated by Leonardo Colman almost 2 years ago
Maybe related: https://www.redmine.org/issues/38370