Advertisement
Guest User

multi-form problem with fastcgi

a guest
Aug 29th, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. ################## fastcgi.conf ###############################
  2. ##
  3. ## FastCGI Module
  4. ## ---------------
  5. ##
  6. ## See http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModFastCGI
  7. ##
  8. server.modules += ( "mod_fastcgi" )
  9.  
  10. ##
  11. fastcgi.debug = 1
  12. #
  13. ## "formsHandler" application program
  14. fastcgi.server = (
  15. "/formsHandler" => (
  16. "formsHandler.fcgi.handler" => (
  17. "socket" => server_root + "/var/tmp/formsHandler.fcgi.socket",
  18. "bin-path" => server_root + "/cgi-bin/formsHandler.fcgi",
  19. "max-procs" => 1,
  20. "check-local" => "disable"
  21. ),
  22. ),
  23. )
  24.  
  25.  
  26.  
  27.  
  28. <!-- choose.htm --!>
  29. <HTML>
  30. <TITLE>Choose weekly or monthly program</TITLE>
  31. <H1> Do want to water on particular <br/> days of the week or on <br /> days of the month? <br /> <br />
  32. <BODY>
  33. <form action=formsHandler method="post">
  34. <input type="radio" name="when" value="week.htm"> Days of the week. <br /> <br /> <br />
  35. <input type="radio" name="when" value="month.htm"> Days of the month <br /> <br /> <br />
  36. <input type="submit" name= "submit" value="Next"> <br /> <br /> <br />
  37. <input type="submit" name="index.htm" value="Back"> <br />
  38. </form>
  39. </BODY>
  40. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement