From: Jan K. <jj...@gm...> - 2015-11-04 20:59:04
|
Am 04.11.2015 um 21:38 schrieb Abhishek Tiwari: > Hi Jan, > Thanks. It solved that particular error : > But, now I am facing this : > To be honest, I am just a beginner in tcl world. If you could help these > error, it would be super awesome and a hugh favour!! > Abhishek, you are taking the tough road to Tcl. Tclhttpd is a very old and mostly unattended piece of software. It's mostly like a soviet nuclear reactor. If it works, don't touch it, if you touch it, you may be in trouble. In any case, if it falls apart, the broken atoms are all yours. I've written some patches to tclhttpd myself (such as support for HTTP compression) but I never published it other than embedded into my own devices because Tclhttpd is so brittle anyone else would rather give up than implement my patches on her or his installation successfully. That said, is there a specific reason why you want to use Tclhttpd, specifically? There are other httpd implementations, for example WUB http://wiki.tcl.tk/15781 Or maybe you like Tänzer? http://tanzer.io/ Or you can cut+paste a simple httpd into your own program, my own example for Tcl 8.6 right below on this page: http://wiki.tcl.tk/15244 Or do you just want to use Tcl code on the server side of another HTTPD? In that case mod_tcl and webshell are for you. Kind regards Jan |