Hi @kippewit — so sorry your post slipped through the cracks!
If it's not too late, can you confirm whether this is regarding curl on the command line or within a PHP script? I'm assuming the latter, but am struggling to replicate the issue in a stand-alone test.
It looks like the URL in question is being provided to the code as a relative URL (import/clubs.xml?year=2025
) but Craft is expecting an absolute URL including the domain, eg https://mysite.test/import/clubs.xml?year=2025
. That would explain why cURL is trying to resolve the domain import
, and failing with "Could not resolve host: import".
Of course that doesn't explain at all how this worked previously, but to start I'd be checking how the code is getting the URL to provide to cURL.
Apologies again it took me so long to get back to you.