http://www.perlmonks.org?node_id=1005891


in reply to Re: Strawberry and IIS not playing well
in thread Strawberry and IIS not playing well

Actually the article you gave me, does not help with IIS 6 as 7 is different.
  • Comment on Re^2: Strawberry and IIS not playing well

Replies are listed 'Best First'.
Re^3: Strawberry and IIS not playing well
by NetWallah (Canon) on Nov 28, 2012 at 04:13 UTC
    A little Googling delivers these bitmap-enhanced instructions for IIS6.

                 "By three methods we may learn wisdom: First, by reflection, which is noblest; Second, by imitation, which is easiest; and third by experience, which is the bitterest."           -Confucius

      Thank you I had seen these but went ahead and followed them. Note these are for active perl and not strawberry so I may adj for that, but nothing else. I am now getting the following when trying to run script from browser. CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers.
        In your code, do you have a reason to set
        (-type=>'image/html')
        I expect that after that, CGI expects to see some kind of Image data, although I cannot imaging what.

        The "normal" thing is to set the type to text/html, or let it default to that.

                     "By three methods we may learn wisdom: First, by reflection, which is noblest; Second, by imitation, which is easiest; and third by experience, which is the bitterest."           -Confucius

      I made the change to 'text/html' and have the same error.
        See this helpful MS KB article.

        Run your program from a command-line, and make sure the first few lines are identical to the ones generated by the MS sample.

        Is is also possible that your program does not compile, or run properly in the deployed CGI environment.

        Look for errors in the IIS logs.

        There is also a potential IIS6 bug.

        FYI - All this info was obtained by googling the error message. (Encouraging self-help).

                     "By three methods we may learn wisdom: First, by reflection, which is noblest; Second, by imitation, which is easiest; and third by experience, which is the bitterest."           -Confucius