Re: netscape problem !!!

2002-04-01 Thread Michael Kelly
On 4/1/02 9:13 AM, Aman Raheja <[EMAIL PROTECTED]> wrote: > Hi all > I have created a cgi-perl script for a web-site. I am using cookies and > mysql for database on a Linux box. > When my page is called in IE, it works great, but Netscape throws out the > whole HTML code. > Now, if I copy this co

Re: netscape problem !!!

2002-04-01 Thread Connie Chan
You may try this as header : print "Content-type: text/html\n\n"; - Original Message - From: "Aman Raheja" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 02, 2002 1:13 AM Subject: netscape problem !!! > Hi all > I have created

netscape problem !!!

2002-04-01 Thread Aman Raheja
Hi all I have created a cgi-perl script for a web-site. I am using cookies and mysql for database on a Linux box. When my page is called in IE, it works great, but Netscape throws out the whole HTML code. Now, if I copy this code and save it in a file as xyz.html, it works perfect in Netscape.

Re: Netscape problem

2001-05-31 Thread Mark Rowlands
So removal of an errant print statement and insertion of print $cgi->header ( "text/html" ); instead of $cgi->header (); fixed the problem. I think the above would have been ok once I had reconfigured apache's default to be html/text but for a print statement I had between my $cgi = new C

Re: Netscape problem

2001-05-30 Thread Curtis Poe
Your problem is the following line: > 'content-type' => 'text/plain', # interesting ? # You already noticed that (from the comment), so you know what the problem is. Here's something else you had noted earlier: > > Problem is all was fine and dandy (more or less) while tes

Re: Netscape problem

2001-05-30 Thread Mark Rowlands
On Wednesday 30 May 2001 20:54, Curtis Poe wrote: > > > Mark Rowlands wrote: > > > : ok..this is my first bash at a serious cgi script. it is using DBI > > > : and CGI to connect to a bunch of databases and edit various fields. > > > : Problem is all was fine and dandy (more or less) while testing

Re: Netscape problem

2001-05-30 Thread Curtis Poe
I hope you don't mind, but I am posting this back to the list so that others with a similar question can see this. I have blocked out your name and BCCd you on this. --- *** <***@***.com> wrote: > What are LWP and Data? LWP (Library for WWW access in Perl) is a suite of modules to handle Web a

Re: Netscape problem

2001-05-30 Thread Curtis Poe
> > Mark Rowlands wrote: > > : ok..this is my first bash at a serious cgi script. it is using DBI and > > : CGI to connect to a bunch of databases and edit various fields. Problem > > : is all was fine and dandy (more or less) while testing with IE5.5. Then I > > : checked with netscape 4.77 and

Re: Netscape problem

2001-05-30 Thread Mark Rowlands
e: <mailto:[EMAIL PROTECTED]> > : List-Subscribe: <mailto:[EMAIL PROTECTED]> > : Delivered-To: mailing list [EMAIL PROTECTED] > : From: Mark Rowlands <[EMAIL PROTECTED]> > : To: [EMAIL PROTECTED] > : Subject: Netscape problem > : X-Spam-Rating: onion.valueclick.com 1

Re: Netscape problem

2001-05-30 Thread Brett W. McCoy
On Wed, 30 May 2001, Mark Rowlands wrote: > AddType application/x-httpd-php .php .php3 > AddType application/x-httpd-php-source .phps > UseCanonicalName on > TypesConfig /usr/local/etc/apache/mime.types > DefaultType text/plain ^ Try changing this line to text/html. Are

Re: Netscape problem

2001-05-30 Thread Mark Rowlands
ServerType standalone ServerRoot "/usr/local" PidFile /var/run/httpd.pid ScoreBoardFile /var/run/httpd.scoreboard ResourceConfig /dev/null AccessConfig /dev/null Timeout 300 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 MinSpareServers 3 MaxSpareServers 5 StartServers 3 MaxClients 15

Re: Netscape problem

2001-05-29 Thread Timothy Kimball
CTED]> : Delivered-To: mailing list [EMAIL PROTECTED] : From: Mark Rowlands <[EMAIL PROTECTED]> : To: [EMAIL PROTECTED] : Subject: Netscape problem : X-Spam-Rating: onion.valueclick.com 1.6.2 0/1000/N : Mark Rowlands wrote: : ok..this is my first bash at a serious cgi script. it is using

Re: Netscape problem

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, Mark Rowlands wrote: > ok..this is my first bash at a serious cgi script. it is using DBI and CGI to > connect to a bunch of databases and edit various fields. Problem is all was > fine and dandy (more or less) while testing with IE5.5. Then I checked with > netscape 4.77 an

Netscape problem

2001-05-29 Thread Mark Rowlands
ok..this is my first bash at a serious cgi script. it is using DBI and CGI to connect to a bunch of databases and edit various fields. Problem is all was fine and dandy (more or less) while testing with IE5.5. Then I checked with netscape 4.77 and Konqueror 2.1.1 both of these just display th