Forum Moderators: phranque
<html>
<body bgcolor="FDF5E6">
<h2><u>Instructions On Setting ODBC Data Source</u></h2>
<p>2) Click on the Data Sources icon.<img src="ODBCp\image002.jpg">
tools, ODBC driver</p>
</body>
</html>
Thanks.
btw i use [126.1.1.25:8080...] to load the first page and hyperlink to link to other html...( i am using frame)
this is the first page
<html>
<head><title>Documentation</title></head>
<frameset cols="18%,*">
<FRAME src="Doc2.html" name="left" noresize>
<FRAME src="Doc3.html" name="main" noresize>
</frameset>
</html>
this is the hyperlink portion...(doc2)
<html>
<p><h4><a href="ODBC.html" target="main">Instructions On ODBC Data Source</a></h4></p>
<p><h4><a href="PR.html" target="main">Instructions on PR application</a></h4></p>
</body>
</html>
The log files of the Apache are being written to the logs subdirectory of your Apache installation. For example if you've installed it into C:\Program Files\Apache Group\Apache then the log files are in the C:\Program Files\Apache Group\Apache\logs directory. There're two kind of log files produced by default; access.log which contains all the requests for a resource on your site (so you can see in this one, what your browser tried to request, and what was the response) and error.log which contains any errors occurred during the fulfillment of a request, for example if your browser tried to request a page (or an image) which does not exists, then it will be represented by a line in this file. Check out both files for any suspicious entry (access denied, file not found, etc) and come back to us with the results.
this statement below shows the rite image(ok):
158.1.2.21 - - [07/Jun/2004:08:37:34 +0800] "GET /ODBCp/image002.jpg HTTP/1.1" 304 -
this one dosent show the image:
158.1.2.21 - - [07/Jun/2004:08:37:34 +0800] "GET /ODBCp/image001.png HTTP/1.1" 200 13670
the difference is the last portion,"304" vs "200 13670"
do you know whats the problem?
Welcome to WebmasterWorld [webmasterworld.com]!
A 304-Not Modified response simply means that your browser has a copy of that file in its cache, and has asked the server if the file has been updated since your browser last cached it. In this case, the answer was "No."
I'm afraid this does not shed much light on your problem, but it might help to flush your browser cache before any (and each) test access.
Also, since that second file is a png file, make sure the MIME-type returned by your server is correct. Use the server headers checker [webmasterworld.com] and request those images again and see if any more differences are revealed.
Jim
telnet [i]ip_of_your_server[/i] 80
GET /ODBCp/image002.jpg HTTP/1.1
Host: [i]full_name_of_the_server[/i]
The output of the command might be very long, then scroll to the top of the whole thing to see what headers the server sent back to the response