Ignore my previous post about tutorial woes.

It looks like jpg files don't get served at all by wkcgi.  I have:

RedHat 9.0 on an Intel box.
Webware 0.8.1
httpd-2.0.40-21.3 - aka Apache
Mozilla

I'm running AppServer in ~/WebwareTest

The premissions on /tmp are:
# ls -l / | grep tmp
drwxrwxrwt   20 root     root         4096 Aug 28 06:53 tmp

The permission on my jpg file are:
# ls -l /tmp | grep jpg
-rw-rw-r--    1 ggeller  ggeller    501907 Aug 27 19:06 89898_03.jpg

The cgi file is from WebKit/Adapters/wkcgi/
[EMAIL PROTECTED] wkcgi]# ls -l /var/www/cgi-bin/
total 28
-rwxr-xr-x    1 root     root        28399 Aug 28 07:43 wkcgi

~/WebwareText/context/Main.py contains:

from WebKit.Page import Page

class Main(Page):

        def title(self):
                return 'My Sample Context01'

        def writeContent(self):
                self.writeln('<h1>Welcome to Webware!</h1>')
                self.writeln('''<center><img src="/tmp/89898_03.jpg"
width="1536" height="1024"><br>''')

It produces this html:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd";>
<html>
<head>
        <title>My Sample Context01</title>
</head>
<body color=black bgcolor=white>
<h1>Welcome to Webware!</h1>
<center><img src="/tmp/89898_03.jpg" width="1536" height="1024"><br>
</body>
</html>

When I point my browser at http://localhost/cgi-bin/wkcgi, I see the
text, but not the picture.  When I save the html in a file and open it
with the browser I see the picture as well as the text.

I'm wondering if I need a different webserver or what.

Thanks in advance for any suggestions.

George Geller





-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to