php and cgi not working on suse9.1
Hello,I have Suse9.1 with Apache 2.0, php 4.3, If i access my php page, it asks for download, my php page is not executing ?? i have download the tar file -> ./configure, make & make install. do i have to add any entry in httpd.conf file ?
If i try to execute my cgi program, this is what i get
#!/usr/local/bin/perl
print ("Content-type: text/html\n\n");
print ("<HTML>");
print ("<HEAD>");
print ("<TITLE>");
print ("Hello World");
print ("</TITLE>");
print ("</HEAD>");
print ("<BODY>");
print ("<H2>Hello World</H2>");
print ("</BODY>");
print ("</HTML>");
#print "Content-type: text/plain\n\n";
#print 'Hello World!';
cgi is not executing as well. Apache is running. can anyone advise me to get my php and cgi to work ??
any help would be highly appricated ?