Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Open Source > Perl
|
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Perl section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 9th, 2006, 12:40 AM
Registered User
 
Join Date: Apr 2006
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to arunmohanmp
Default Problem with CGI Counter

Hi All,

I got a cgi script http://nss.nitc.ac.in/cgi-bin/counter.cgi
When i run this link directly it works. But if i try in one of my html pages (http://nss.nitc.ac.in/html/title.shtml or http://nss.nitc.ac.in/html/title.html) it is not showing the Counter. How can i show the counter in the webpage?

The CGI code am using is

#!/usr/bin/perl
#
# txcounter cgi
# © 2000 Jackie Hamilton - http://www.cgi101.com/
#
# this cgi increments a counter in a file, then prints out a line like
# "You are visitor number XXX."
# HTML code to call this:
#
#
#
# this requires server-side includes. You may need to rename your HTML
# file to a .shtml extension to make it work.
#
# note: be sure that the counter file is set WRITABLE by the httpd
# daemon owner or group. in Unix you'll need to 'chmod 775 countfile'
# or possibly 'chmod 777 countfile'.

$countfile = "/home/nss/web/html/counter";

$count = `cat $countfile`;
chop($count);
$count = $count + 1;
open(INF,">$countfile");
print INF "$count\n";
close(INF);

print "Content-type:text/html\n\n";
print "Visitor: $count.<p>\n";

# the end.

Please suggest a solution...


Thanks and Regards,
Arun Mohan M P





Similar Threads
Thread Thread Starter Forum Replies Last Post
Counter PHP problem its_jon Beginning PHP 5 June 23rd, 2006 07:08 AM
help! on CGI Error heerajee Pro PHP 0 February 2nd, 2006 05:17 AM
HELP: Perl CGI + Java marina Perl 1 January 23rd, 2006 07:41 AM
CGI Timeout EricS Beginning PHP 3 January 24th, 2005 01:50 AM
How to fix "CGI timeout" baoshenyi Pro PHP 1 October 1st, 2003 12:46 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.