Closed seanm closed 3 years ago
I'll need to look into this a bit more, I have never run into that error.
What version of raspbian are you using so I can try and replicate the issue.
Affects version lighttpd on Raspbian Buster only. They renamed they file create-mime.assign.pl to create-mime.conf.pl
A temporary workaround is to create a symlink as follows. I will look at a more permanent solution that does not kill the functionality for users on Stretch and Jessie.
cd /usr/share/lighttpd
sudo ln -s create-mime.conf.pl create-mime.assign.pl
sudo /etc/init.d/lighttpd stop
sudo /etc/init.d/lighttpd start
This simply creates a soft link to the renamed file with the old name for now.
Thanks for the fix!
A little bit more info for anyone curious, this occurred to me after an upgrade from DietPi-managed Debian 9 Stretch to Debian 10 Buster, following instructions at https://dietpi.com/docs/usage/#how-to-upgrade-to-buster
I create a PR for the dietpi docs. https://github.com/MichaIng/DietPi-Docs/pull/778
lighttpd was not starting for me. Manually starting revealed:
Looking at the file system:
Seems the file got renamed. I'll submit a patch.