I have an Asus WL500gP with Kamikaze 7.09 installed. Everything works just fine: x-wrt, usb storage, wifi, etc. ( many thanks to OpenWrt team smile )
But now i want to install lighttpd with php on it.  These are the versions of my lighttpd, php and openssl:

root@granny:~# ipkg list_installed
....
kernel - 2.4.34-brcm-1 -
libopenssl - 0.9.8e-1 -
lighttpd - 1.4.11-1 -
lighttpd-mod-fastcgi - 1.4.11-1 -
php5-cgi - 5.0.5-1 -
php5-fastcgi - 5.0.5-1 -

This is what i get when trying to run lighttpd. It seems that it requires an older libssl version.

root@granny:/usr/lib# lighttpd
lighttpd: can't load library 'libssl.so.0.9.7'
root@granny:/usr/lib# ldd lighttpd
        libpcre.so.0 => /usr/lib/libpcre.so.0 (0x2aaed000)
        libdl.so.0 => /lib/libdl.so.0 (0x2ab4b000)
        libssl.so.0.9.7 => not found
        libcrypto.so.0.9.7 => not found
        libc.so.0 => /lib/libc.so.0 (0x2ab8d000)
        libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x2ac34000)
        ld-uClibc.so.0 => /lib/ld-uClibc.so.0 (0x2aaa8000)

But in /usr/lib i have a libssl.so.0.9.8 version. So i did this:

ln -s /usr/lib/libssl.so.0.9.8 /usr/lib/libssl.so.0.9.7

And the same for libcrypto. But still fails miserably:

root@granny:/usr/lib# lighttpd
Aborted

Nothing new in logread and such. Any ideas ? I just want a php webserver so if you know better methods than lighttpd please shout it loud smile