| Author |
config or html issue?
|
|
| libertate 2004-11-16, 2:50 pm |
| Maybe this question should go to an html group but, I thought it might have
something to do with Apache that I am not familiar with. Here is the html
code:
<frameset cols="80,*" frameborder="YES" border="2" framespacing="0">
<frame src="c:/Program Files/Apache Group/Apache2/htdocs/nav.html"
name="leftframe" noresize scrolling="NO">
<frame src="c:/Program Files/Apache Group/Apache2/htdocs/main.html"
name="mainframe">
</frameset>
<noframes>
</noframes>
I have tried it with both explicit paths and relative. When I go to
http://hostname I get the index page but no frames.
I know there are better ways to do frames, such as css but I have been out
of this for awhile so am going with what works, or at least used to.
Any ideas?
| |
| p cooper 2004-11-16, 2:50 pm |
|
> <frameset cols="80,*" frameborder="YES" border="2" framespacing="0">
> <frame src="c:/Program Files/Apache Group/Apache2/htdocs/nav.html"
> name="leftframe" noresize scrolling="NO">
> <frame src="c:/Program Files/Apache Group/Apache2/htdocs/main.html"
> name="mainframe">
> </frameset>
> <noframes>
> </noframes>
>
OS ?
*nixes use a /
windows ( but I dont use it) ,usually uses a \
if its serving te apaceh index page its not finding our index page
whats in the log files ?
what is the document root in httpd.conf
| |
|
| "libertate" <libertate@*NOSPAM*bellsouth.net> schreef in bericht
news:UsXld.23176$IQ.3922@bignews6.bellsouth.net...
> Maybe this question should go to an html group but, I thought it might
have
> something to do with Apache that I am not familiar with. Here is the html
> code:
>
> <frameset cols="80,*" frameborder="YES" border="2" framespacing="0">
> <frame src="c:/Program Files/Apache Group/Apache2/htdocs/nav.html"
Don't use _local_ path in HTMl, probably /nav.html will do
> I have tried it with both explicit paths and relative. When I go to
> http://hostname I get the index page but no frames.
As you should adress the file relative to document root.
An relative path start with ./ or ../ an absolute path starts /; still at
the server all are evaluated relative to docuemntroot: "c:/Program
Files/Apache Group/Apache2/htdocs/"
HansH
| |
| libertate 2004-11-17, 5:52 pm |
| WinXP Pro at the moment since that is what is on my laptop but will port
server and all to FreeBSD when I get a bit further in development. I
understood from documentation that I have to use unix / instead Windows \
for pathnames no matter the OS platform.
The page that is coming up is my index.html. I look at the source from IE
and it is the correct source code.
Doc root is:
DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs"
Access log for today:
xxx.xxx.xxx.xxx- - [17/Nov/2004:08:23:50 -0600] "OPTIONS / HTTP/1.1" 200 -
xxx.xxx.xxx.xxx - - [17/Nov/2004:08:23:51 -0600] "PROPFIND /c%24 HTTP/1.1"
405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:15:14 -0600] "OPTIONS / HTTP/1.1" 200 -
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:15:14 -0600] "PROPFIND /c%24 HTTP/1.1"
405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:37:48 -0600] "OPTIONS / HTTP/1.1" 200 -
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:37:48 -0600] "PROPFIND /c%24 HTTP/1.1"
405 301
127.0.0.1 - - [17/Nov/2004:13:31:44 -0600] "OPTIONS / HTTP/1.1" 200 -
127.0.0.1 - - [17/Nov/2004:13:31:45 -0600] "PROPFIND /c%24 HTTP/1.1" 405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:15:13:32 -0600] "GET / HTTP/1.1" 200 826
127.0.0.1 - - [17/Nov/2004:17:57:34 -0600] "OPTIONS / HTTP/1.1" 200 -
127.0.0.1 - - [17/Nov/2004:17:57:34 -0600] "PROPFIND /c%24 HTTP/1.1" 405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:18:32:23 -0600] "GET / HTTP/1.1" 304 -
127.0.0.1 - - [17/Nov/2004:18:46:34 -0600] "OPTIONS / HTTP/1.1" 200 -
127.0.0.1 - - [17/Nov/2004:18:46:34 -0600] "PROPFIND /c%24 HTTP/1.1" 405 301
error log
[Wed Nov 17 07:43:35 2004] [notice] Parent: Created child process 1876
[Wed Nov 17 07:43:36 2004] [notice] Child 1876: Child process is running
[Wed Nov 17 07:43:36 2004] [notice] Child 1876: Acquired the start mutex.
[Wed Nov 17 07:43:36 2004] [notice] Child 1876: Starting 250 worker threads.
[Wed Nov 17 13:23:08 2004] [notice] Parent: Created child process 128
[Wed Nov 17 13:23:08 2004] [notice] Child 128: Child process is running
[Wed Nov 17 13:23:08 2004] [notice] Child 128: Acquired the start mutex.
[Wed Nov 17 13:23:08 2004] [notice] Child 128: Starting 250 worker threads.
[Wed Nov 17 13:24:49 2004] [notice] Parent: Created child process 1096
[Wed Nov 17 13:24:49 2004] [notice] Child 1096: Child process is running
[Wed Nov 17 13:24:49 2004] [notice] Child 1096: Acquired the start mutex.
[Wed Nov 17 13:24:49 2004] [notice] Child 1096: Starting 250 worker threads.
[Wed Nov 17 17:56:44 2004] [notice] Parent: Created child process 708
[Wed Nov 17 17:56:45 2004] [notice] Child 708: Child process is running
[Wed Nov 17 17:56:45 2004] [notice] Child 708: Acquired the start mutex.
[Wed Nov 17 17:56:45 2004] [notice] Child 708: Starting 250 worker threads.
Thanks
"p cooper" <pdconetwofour_numbers_@yahoo.co.uk> wrote in message
news:e3Yld.15084$up1.14842@text.news.blueyonder.co.uk...
>
>
> OS ?
> *nixes use a /
> windows ( but I dont use it) ,usually uses a \
> if its serving te apaceh index page its not finding our index page
>
> whats in the log files ?
>
> what is the document root in httpd.conf
>
>
| |
| p cooper 2004-11-18, 5:54 pm |
|
> <frameset cols="80,*" frameborder="YES" border="2" framespacing="0">
> <frame src="c:/Program Files/Apache Group/Apache2/htdocs/nav.html"
> name="leftframe" noresize scrolling="NO">
> <frame src="c:/Program Files/Apache Group/Apache2/htdocs/main.html"
> name="mainframe">
> </frameset>
> <noframes>
> </noframes>
>
OS ?
*nixes use a /
windows ( but I dont use it) ,usually uses a \
if its serving te apaceh index page its not finding our index page
whats in the log files ?
what is the document root in httpd.conf
| |
|
| "libertate" <libertate@*NOSPAM*bellsouth.net> schreef in bericht
news:UsXld.23176$IQ.3922@bignews6.bellsouth.net...
> Maybe this question should go to an html group but, I thought it might
have
> something to do with Apache that I am not familiar with. Here is the html
> code:
>
> <frameset cols="80,*" frameborder="YES" border="2" framespacing="0">
> <frame src="c:/Program Files/Apache Group/Apache2/htdocs/nav.html"
Don't use _local_ path in HTMl, probably /nav.html will do
> I have tried it with both explicit paths and relative. When I go to
> http://hostname I get the index page but no frames.
As you should adress the file relative to document root.
An relative path start with ./ or ../ an absolute path starts /; still at
the server all are evaluated relative to docuemntroot: "c:/Program
Files/Apache Group/Apache2/htdocs/"
HansH
| |
| libertate 2004-11-22, 5:53 pm |
| WinXP Pro at the moment since that is what is on my laptop but will port
server and all to FreeBSD when I get a bit further in development. I
understood from documentation that I have to use unix / instead Windows \
for pathnames no matter the OS platform.
The page that is coming up is my index.html. I look at the source from IE
and it is the correct source code.
Doc root is:
DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs"
Access log for today:
xxx.xxx.xxx.xxx- - [17/Nov/2004:08:23:50 -0600] "OPTIONS / HTTP/1.1" 200 -
xxx.xxx.xxx.xxx - - [17/Nov/2004:08:23:51 -0600] "PROPFIND /c%24 HTTP/1.1"
405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:15:14 -0600] "OPTIONS / HTTP/1.1" 200 -
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:15:14 -0600] "PROPFIND /c%24 HTTP/1.1"
405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:37:48 -0600] "OPTIONS / HTTP/1.1" 200 -
xxx.xxx.xxx.xxx - - [17/Nov/2004:10:37:48 -0600] "PROPFIND /c%24 HTTP/1.1"
405 301
127.0.0.1 - - [17/Nov/2004:13:31:44 -0600] "OPTIONS / HTTP/1.1" 200 -
127.0.0.1 - - [17/Nov/2004:13:31:45 -0600] "PROPFIND /c%24 HTTP/1.1" 405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:15:13:32 -0600] "GET / HTTP/1.1" 200 826
127.0.0.1 - - [17/Nov/2004:17:57:34 -0600] "OPTIONS / HTTP/1.1" 200 -
127.0.0.1 - - [17/Nov/2004:17:57:34 -0600] "PROPFIND /c%24 HTTP/1.1" 405 301
xxx.xxx.xxx.xxx - - [17/Nov/2004:18:32:23 -0600] "GET / HTTP/1.1" 304 -
127.0.0.1 - - [17/Nov/2004:18:46:34 -0600] "OPTIONS / HTTP/1.1" 200 -
127.0.0.1 - - [17/Nov/2004:18:46:34 -0600] "PROPFIND /c%24 HTTP/1.1" 405 301
error log
[Wed Nov 17 07:43:35 2004] [notice] Parent: Created child process 1876
[Wed Nov 17 07:43:36 2004] [notice] Child 1876: Child process is running
[Wed Nov 17 07:43:36 2004] [notice] Child 1876: Acquired the start mutex.
[Wed Nov 17 07:43:36 2004] [notice] Child 1876: Starting 250 worker threads.
[Wed Nov 17 13:23:08 2004] [notice] Parent: Created child process 128
[Wed Nov 17 13:23:08 2004] [notice] Child 128: Child process is running
[Wed Nov 17 13:23:08 2004] [notice] Child 128: Acquired the start mutex.
[Wed Nov 17 13:23:08 2004] [notice] Child 128: Starting 250 worker threads.
[Wed Nov 17 13:24:49 2004] [notice] Parent: Created child process 1096
[Wed Nov 17 13:24:49 2004] [notice] Child 1096: Child process is running
[Wed Nov 17 13:24:49 2004] [notice] Child 1096: Acquired the start mutex.
[Wed Nov 17 13:24:49 2004] [notice] Child 1096: Starting 250 worker threads.
[Wed Nov 17 17:56:44 2004] [notice] Parent: Created child process 708
[Wed Nov 17 17:56:45 2004] [notice] Child 708: Child process is running
[Wed Nov 17 17:56:45 2004] [notice] Child 708: Acquired the start mutex.
[Wed Nov 17 17:56:45 2004] [notice] Child 708: Starting 250 worker threads.
Thanks
"p cooper" <pdconetwofour_numbers_@yahoo.co.uk> wrote in message
news:e3Yld.15084$up1.14842@text.news.blueyonder.co.uk...
>
>
> OS ?
> *nixes use a /
> windows ( but I dont use it) ,usually uses a \
> if its serving te apaceh index page its not finding our index page
>
> whats in the log files ?
>
> what is the document root in httpd.conf
>
>
|
|
|
|