> Dear Friends.
>
> I wrote a very simple C program (hello
world) and compiled it with
> cross compiler.
>
> I transfered
it to the cgi-bin diþrectory on the TS 7250
>
> I chanced the
permitions to 777
>
> I tried to run it from command prompt like
./deneme it worked great.
>
> But when I try to run it with in
apache x.x.x.x/cgi-bin/deneme it
> gives me "internal server
error"
>
> What do I have to do to make my program run
correctly.
>
> Best regards.
> ugurtan
>
Your
program is not conforming to output expected of something run as a
cgi-bin.
Try changing your hello world statement to this and see how
it works:
printf("Content-type:text/plain\n\nHello,
world!\n");
--Michael