Quote Originally Posted by freakazoid87 View Post
I know it's odd... i've used your and... (?) the other tutorial more than once...
and they worked! (not counting mysql, which i didn't need)

If you have a spare WL500-gp, you can try to install it from the start... i think it wont work.
oh I might know what's going on...

you've probably executed:
For some reason lighttpd doesn't always shut-down properly during a reboot, because it leaves behind some residue this way that stops it from starting again!
We have an easy fix for this tho:
Quote:
vi /opt/etc/init.d/S80lighttpd
Code:
Add after #!/bin/sh:

rm /opt/etc/lighttpd/conf.d/*
in the new version they fixed that, in fact when you remove everything in that folder something goes wrong

you should remove the line in the startupscript (the rm one).
then execute these commands
touch /opt/etc/lighttpd/conf.d/01-default.conf
chmod 700 /opt/etc/lighttpd/conf.d/01-default.conf
and then try to start lighttpd
/opt/etc/init.d/S80lighttpd start
I hope that worked