[arachne] Re: Why can't Arachne find this web site?
- From: Jason & Ornumar Dodd <jasorn@xxxxxxxxx>
- To: arachne@xxxxxxxxxxxxx
- Date: Thu, 19 Apr 2007 19:56:49 -0400
Arachne at FreeLists---The Arachne Fan Club!
There wasn't anything to fix was there? The page doesn't exist. Get
the same error in firefox.
Glenn McCorkle wrote:
Arachne at FreeLists---The Arachne Fan Club!
Fixed it. :)
As you can see from this code snippet, it was easy as adding yet
another small fix similar to the one I made last September.....
--- in urlstat.c of the SRC code for Arachne's main program core.exe ---
// ========================================================================
//!!glennmcc: Sep 28, 2006 -- //skip '\"'
if(!strncmp(strptr,"\\\"",2))
strptr+=2;
//!!glennmcc: end
//!!glennmcc: Apr 19, 2007 -- //skip leading space(s)
//needed to fix problems such as this....
//<meta http-equiv="refresh" content="0;url= site/Welcome.html" />
//__________________________________________^<-- erroneous space
//the resulting URL is ... http://domain.com/%20/site/Welcome.html
//instead of the coorect URL of... http://domain.com/site/Welcome.html
while(!strncmp(strptr," ",1))
(strptr++);
//!!glennmcc: end
___________________________________________________________________________
On Mon, 16 Apr 2007 21:08:33 -0500, Glenn McCorkle wrote:
The redirect to http://www.fnfsr.org/site/Welcome.html does not work
correctly due to a malformed URL at http://www.fnfsr.org/
<meta http-equiv="refresh" content="0;url= site/Welcome.html" />
__________________________________________^<-- erroneous space
On Mon, 16 Apr 2007 21:23:14 -0500, Samuel W. Heywood wrote:
On Tue, 17 Apr 2007 09:43:06 +1030, Greg Mayman wrote:
Arachne at FreeLists---The Arachne Fan Club!
On Mon, 16 Apr 2007 19:52:36 +0000, Jake Young wrote:
Arachne at FreeLists---The Arachne Fan Club!
Hello Sam,
I know GlennMcC has his usual busy Monday so may I ask if you
can load:
http://www.fnfsr.org/site/Welcome.html
It is possibly significant that the page that can't be loaded is
http://www.fnfsr.org/%20site/Welcome.html
What that "%20" is doing in there is a mystery to me.
And why it works with other browsers and not with Arachne is possibly
worth investigating.
Yes that is significant, and I agree that it is worth investigating.
BTW, the web page you named with the %20 stuff in it is the web page to which
I was referred when I clicked on the link supplied with my daily email
newsletter "Today on Shenandoah.com". That link was
"http://shenandoah.com/stories/?headlineID=12277;.
That link does work with other browsers, including even Lynx, but it does not
work with Arachne.
Sam Heywood
Arachne at FreeLists
-- Arachne, The Premier GPL Web Browser/Suite for DOS --
- References:
- [arachne] Re: Why can't Arachne find this web site?
- From: Glenn McCorkle
Other related posts:
- » [arachne] Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
- » [arachne] Re: Why can't Arachne find this web site?
Arachne at FreeLists---The Arachne Fan Club! Fixed it. :) As you can see from this code snippet, it was easy as adding yet another small fix similar to the one I made last September..... --- in urlstat.c of the SRC code for Arachne's main program core.exe --- // ======================================================================== //!!glennmcc: Sep 28, 2006 -- //skip '\"' if(!strncmp(strptr,"\\\"",2)) strptr+=2; //!!glennmcc: end //!!glennmcc: Apr 19, 2007 -- //skip leading space(s) //needed to fix problems such as this.... //<meta http-equiv="refresh" content="0;url= site/Welcome.html" /> //__________________________________________^<-- erroneous space //the resulting URL is ... http://domain.com/%20/site/Welcome.html //instead of the coorect URL of... http://domain.com/site/Welcome.html while(!strncmp(strptr," ",1)) (strptr++); //!!glennmcc: end ___________________________________________________________________________ On Mon, 16 Apr 2007 21:08:33 -0500, Glenn McCorkle wrote:
The redirect to http://www.fnfsr.org/site/Welcome.html does not work correctly due to a malformed URL at http://www.fnfsr.org/
<meta http-equiv="refresh" content="0;url= site/Welcome.html" /> __________________________________________^<-- erroneous space
On Mon, 16 Apr 2007 21:23:14 -0500, Samuel W. Heywood wrote:
On Tue, 17 Apr 2007 09:43:06 +1030, Greg Mayman wrote:
Arachne at FreeLists---The Arachne Fan Club!
On Mon, 16 Apr 2007 19:52:36 +0000, Jake Young wrote:
Arachne at FreeLists---The Arachne Fan Club!
Hello Sam,
I know GlennMcC has his usual busy Monday so may I ask if you can load:
http://www.fnfsr.org/site/Welcome.html
It is possibly significant that the page that can't be loaded is http://www.fnfsr.org/%20site/Welcome.html
What that "%20" is doing in there is a mystery to me.
And why it works with other browsers and not with Arachne is possibly worth investigating.
Yes that is significant, and I agree that it is worth investigating.
BTW, the web page you named with the %20 stuff in it is the web page to which I was referred when I clicked on the link supplied with my daily email newsletter "Today on Shenandoah.com". That link was "http://shenandoah.com/stories/?headlineID=12277;.
That link does work with other browsers, including even Lynx, but it does not work with Arachne.
Sam Heywood
- [arachne] Re: Why can't Arachne find this web site?
- From: Glenn McCorkle