I need to install composer on the server. To install it, follow the documentation on how to install composer on Debian 12, which says the following instructions:
curl -sS https://getcomposer.org/installer -o composer-setup.php
When running, it gives the following error: curl: (23) Failure writing output to destination
Investigating the error, I found the following:
After a very long research I found a useful hint.
Can’t write to a hidden path using Curl
Basically snap curl is useless. Uninstall it properly. Get the proper apt curl, and everything works like a charm.
The question is: Can I uninstall Curl in Hestia and reinstall it, as indicated there?