| Author |
Message |
stevech
Joined: 23 Feb 2006
|
|
Posted: 30 April 2007, 3:48 AM Post subject: Firefox can't find the file at ... |
|
|
I think this is an old issue, but, I just installed ZBasic 2.1 over top of 2.0.
From the IDE's help menu, when chosing the ZBasic Reference document, with FireFox as my default browser, I get
Firefox can't find the file at /C:/Program Files/ZBasic/doc/HTML/1.html.
same error if I go to the folder and click on ZBasicRef.html
There's no folder named HTML in the doc folder.
There is a folder called ZBasicRef that has the individual gif, png, and html files.
As a work-around, I just open the pdf version. |
|
| Back to top |
|
 |
Just Another Joe
Joined: 08 Dec 2006
Location: Adanac
|
|
Posted: 30 April 2007, 5:18 AM Post subject: |
|
|
Same here with fresh install of 2.1
ZBasicRef.html exists, but Firefox gives the same error you mentioned when trying to open that file. I, too used the .pdf version. |
|
| Back to top |
|
 |
dkinzer Site Admin
Joined: 03 Sep 2005
Location: Portland, OR
|
|
Posted: 30 April 2007, 15:10 PM Post subject: Re: Firefox can't find the file at ... |
|
|
| stevech wrote: | | Firefox can't find the file at /C:/Program Files/ZBasic/doc/HTML/1.html |
I see that the content of the file doc/ZBasicRef.html in the ZBasic installation directory is incorrect. I believe that you can rectify the problem if you load that file into a text editor and replace the content with the following:
| Code: | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN" "http://www.w3.org/TR/REC-html40/frameset.dtd">
<html dir="LTR" lang="en">
<head>
<title>ZBasic Reference Manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset cols="180,*">
<frame name="contents" src="ZBasicRef/contents.html" scrolling="auto">
<frame name="main" src="ZBasicRef/ZBasicRef1.html">
</frameset>
</html> |
|
|
| Back to top |
|
 |
stevech
Joined: 23 Feb 2006
|
|
Posted: 01 May 2007, 1:53 AM Post subject: |
|
|
thanks. that fixed it. Just a mix-up in the distributed files on these (corrected) path names:
<frame name="contents" src="ZBasicRef/contents.html" scrolling="auto">
<frame name="main" src="ZBasicRef/ZBasicRef1.html"> |
|
| Back to top |
|
 |
dkinzer Site Admin
Joined: 03 Sep 2005
Location: Portland, OR
|
|
Posted: 01 May 2007, 2:25 AM Post subject: |
|
|
Thanks for confirming the solution.
The title tag is different as well. |
|
| Back to top |
|
 |
Just Another Joe
Joined: 08 Dec 2006
Location: Adanac
|
|
Posted: 01 May 2007, 2:35 AM Post subject: |
|
|
| Yes, works fine now here as well. Thanks. |
|
| Back to top |
|
 |
|