Bad referrer!

2003-12-06 Thread Sara
There was a script which people were using remotely, so I have to add this simple subroutine to check referrers. Currently, the site is getting approx. 20,000 hits per day. NO one, not even a single person claimed that they have experienced any problem after implementing this change, except for

Re: Bad referrer!

2003-12-06 Thread Andrew Gaffney
Sara wrote: There was a script which people were using remotely, so I have to add this simple subroutine to check referrers. Currently, the site is getting approx. 20,000 hits per day. NO one, not even a single person claimed that they have experienced any problem after implementing this change,

Re: Bad referrer!

2003-12-06 Thread Wiggins d'Anconia
Sara wrote: There was a script which people were using remotely, so I have to add this simple subroutine to check referrers. Currently, the site is getting approx. 20,000 hits per day. I don't think you are using the correct ENV variable. The referer tells you what page the user was linking from

free site hosting that supports CGI

2003-12-06 Thread karibvirtual
Old Does anybody knows where I can find free site hosting that supports CGI? JP, from Brazil. New you must search meny time in this place: http://www.clickherefree.com/ I am not shuare: Me be must pay 2 $ on mount. If you have made cgi hosting. success ): -- To unsubscribe, e-mail:

How to verify whether a directory exists

2003-12-06 Thread B. Fongo
I want to use mkdir(blah blah, o777), but want to first find out whether the directory blah blah exists. I'm not if the -e option will bw right here. Let's say: unless (-e blah_blah) mkdir(blah_blah, 0777); # Is this okay? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: How to verify whether a directory exists

2003-12-06 Thread Wiggins d'Anconia
Please don't cross post, if your question is CGI based then use that list, otherwise use the other... B. Fongo wrote: I want to use mkdir(blah blah, o777), but want to first find out whether the directory blah blah exists. I'm not if the -e option will bw right here. Let's say: unless