What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

using 376.45 firmware lighttpd issue with modules symbols

benoitm974

New Around Here
Hi,

I've just bought and flash my AC-RT68 vith merlin asuswrt .45. I firs tlike to say this is great firmawre and good approach for me. I'm trying to run the lighttpd dameon that is part of the firmware. I've created a basic lighttpd conf file in /jffs but I'm facing 2 issues:

The first one seems to be with the library/mofule which seems to be hard coded to the /home/merlin path:
lighttpd: symbol 'smbc_list_directory': can't resolve symbol
2014-09-15 15:32:10: (plugin.c.169) dlopen() failed for: /home/merlin/asuswrt.ac68/release/src/router/lighttpd-1.4.29/_inst/lib/mod_dirlisting.so
2014-09-15 15:32:10: (server.c.771) loading plugins finally failed

But After I found that lib are in /usr/lib and that you can override the module path with -m optionI get similar error:
lighttpd: symbol 'smbc_list_directory': can't resolve symbol
2014-09-15 15:33:27: (plugin.c.169) dlopen() failed for: /usr/lib/mod_dirlisting.so
2014-09-15 15:33:27: (server.c.771) loading plugins finally failed
æ

Any idea what is happenning to the lighttpd modules ?
Thanks
 
Last edited:
I'll reply to myself, you need to add a minimum list of module to satisfy mod listing dependancies:
server.modules = (
"mod_access",
"mod_auth",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_webdav",
"mod_usertrack",
"mod_smbdav",
"mod_rewrite",
)

Then it works
 
That lighttpd binary was modified by Asus for AiCloud's specific needs. I don't think it's a good idea to use it for anything else, not knowing the extent of Asus's customizations to the code.
 

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top