×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Why would my css file not be found for the web page I am serving from
a CGI-BIN AS400 library?
this is the url that I navigate to:
http://intranet400.sssss.com/cgi-bin/Dashbd02c
there is a program named dashbd02c in library CGI400 on the as400. This works.
But the CSS is not being found.
fiddler tells me the .css file is being looked for in /cgi-bin/dashbd02b.css
but cgi-bin in this apache config is an as400 library.
ScriptAlias /cgi-bin/ /qsys.lib/cgi400.lib/
Here is my apache config.
The name is INTRANET
the member INTRANET in QATMHINSTC contains the following:
-apache -d /www/intranet -f conf/httpd.conf -AutoStartY
so I would expect the server to search /www/intranet for the .css
file. But it is not being found. Fiddler has the line marked in red.
"/cgi-bin/dashbd02b.css"
there are a few <Director> entries in the .CONFD file
<Directory /www/steve/css>
order allow,deny
allow from all
</Directory>
currently I have the .CSS file in the /www/intranet directory. also
the /www/steve directory.
here is my HTML code:
<html>
<head>
<meta http-equiv="refresh" content="120">
<link rel="stylesheet" href="dashbd02b.css" />
</head>
<body>
<H1>some heading text</H1>
<P>
some paragraph text.
</P>
<pre>
some pre text lines
line 1 line 1 line 1 line 1
line 2 line 2 line 2 line 2
line 3 line 3 line 3 line 3
</pre>
</body>
</html>
As an Amazon Associate we earn from qualifying purchases.