Author |
Message |
Swampy
| Posted on Thursday, May 17, 2007 - 05:52 pm: |
|
Here is the problem: I am using AOL, I know, but where I live its the only dialup that gives any kind of service, so I'm stuck. Now the problemOther than above) I cannot get past the front page while using AOL. I was fine up until two days ago but now I get the following message: #!/usr/bin/perl # #------------------------------------------------- ------------------------------ # DISCUS COPYRIGHT NOTICE # # Discus is copyright (c) 2002 by DiscusWare, LLC, all rights reserved. # The use of Discus is governed by the Discus License Agreement which is # available from the Discus WWW site at: # http://www.discusware.com/discus/license # # Pursuant to the Discus License Agreement, this copyright notice may not be # removed or altered in any way. #------------------------------------------------- ------------------------------ use strict; use vars qw($GLOBAL_OPTIONS $PARAMS $DCONF); $DCONF->{script_dir = "/home/sites/www.badweatherbikers.com/web/cgibin/discus"; my $e = get_cgi_extension($0); if (-e "$DCONF->{script_dir}/config.$e") { require "$DCONF->{script_dir}/config.$e"; } elsif (-e "./config.$e") { require "./config.$e"; } else { print "Content-type: text/html\n\n"; print "Script Execution Error: config.*** location error [1].\n"; exit(0); } discus("discus"); sub get_cgi_extension { my ($zero) = @_; if ($zero =~ m|\.(\w+)$|) { return $1; } foreach my $try ('cgi', 'pl') { return $try if -e "./config.$try"; } opendir(DIR, "."); while (my $i = readdir(DIR)) { return $1 if $i =~ m|^config\.(\w+)$|; } closedir(DIR); print "Content-type: text/html\n\n"; print "Script Execution Error: config.*** location error [2].\n"; exit(0); } 1; } What do I need to do to fix this? Thanks |
Sleez
| Posted on Thursday, May 17, 2007 - 06:28 pm: |
|
i get the same thing from a DSL connection, i have to sneak in. |
Midknyte
| Posted on Thursday, May 17, 2007 - 06:30 pm: |
|
I was getting the same thing over the LAN at work, one time when I got it I just clicked on Refresh in the browser & all was better. Go figger. |
Doon
| Posted on Thursday, May 17, 2007 - 07:24 pm: |
|
with AOL it could that it is stuck like that in their webcaches. but try hitting refresh on that page while holding down shift. It should go and grab a new copy. (same thing happened to me, and it was cause the headers haven't changed, so your computer thinks the copy it has is current) -Patrick |
Froggy
| Posted on Thursday, May 17, 2007 - 08:36 pm: |
|
Not sure how to do it in AOL, but delete your web cache and history and junk, then try again. |
Firebolteric_ma
| Posted on Thursday, May 17, 2007 - 09:02 pm: |
|
Yup I got AOl also and the same thing. Had to enter by the back door and safe the NEW adress to the favorites or it happens again. |
Swampy
| Posted on Thursday, May 17, 2007 - 09:53 pm: |
|
Thanks guys! I cleared my footprints and I' good again! |
Staindus
| Posted on Friday, May 18, 2007 - 10:21 am: |
|
Holding the ctrl key and clicking on refresh would have done it too. |
Barker
| Posted on Friday, May 18, 2007 - 02:20 pm: |
|
The past week I have been getting that off and on with firefox on XP no aol. |
Sleez
| Posted on Friday, May 18, 2007 - 04:14 pm: |
|
ctrl refresh worked for me, thanks lee |
|