From manuelalberto.gorrin at gmail.com Tue Apr 22 13:09:47 2025 From: manuelalberto.gorrin at gmail.com (Manuel G) Date: Tue, 22 Apr 2025 09:09:47 -0400 Subject: [squid-dev] Related Software Form 404 Message-ID: I have created a software for analyzing Squid logs ( https://github.com/kaelthasmanu/SquidStats) among other details. I would like to publish it in the list of related software, but the form returns a 404 and is no longer accessible ( http://master.squid-cache.org/cgi-bin/related-writings-submit.pl) . -------------- next part -------------- An HTML attachment was scrubbed... URL: From squid3 at treenet.co.nz Wed Apr 23 17:46:47 2025 From: squid3 at treenet.co.nz (Amos Jeffries) Date: Thu, 24 Apr 2025 05:46:47 +1200 Subject: [squid-dev] Related Software Form 404 In-Reply-To: References: Message-ID: <9c37159d-946f-4417-913d-20c8b6555afb@treenet.co.nz> On 23/04/25 01:09, Manuel G wrote: > I have created a software for analyzing Squid logs () > among other details. I would like to publish it in the list of related > software, but the form returns a 404 and is no longer accessible > () . > Thank you for the report of this broken form. I will look into fixing it shortly. Please be aware that form is for "writings" - as in books or technical articles written about Squid. For log analysis software you should use the form at I took a look at the tools documentation and noticed that it says "squidclient installed on the server". The squidclient tool is deprecated and will not be available in upcoming Squid releases. There are also uses of the "cache_object://" URL scheme to retrieve data from Squid. That scheme will be rejected by all current Squid versions. It needs to use the "well-known" URL prefix "/squid-internal-mgr/" instead. Like this: GET http://localhost:3128/squid-internal-mgr/active_requests HTTP/1.0 (consider updating that code to support HTTP/1.1) HTH Amos