Project

General

Profile

Actions

Defect #39758

open

Some pages on https://www.redmine.org/plugins are returning 500 Internal Server Error

Added by Leonardo Colman 5 months ago. Updated 3 months ago.

Status:
Confirmed
Priority:
Normal
Category:
Website (redmine.org)
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Affected version:

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

Actions #2

Updated by Go MAEDA 5 months ago

  • Status changed from New to Confirmed
Actions

Also available in: Atom PDF