nevermind I just found out what the problem was.  Man do I feel dumb (although it wasn't an obvious problem) I found through trial and error that it was the way I make webkit.cgi into an exe with py2exe that caused all the problems!  For anyone interested, if you use this please make sure that your setup.py file is formated exactly like on the py2exe page
 
Setup.py

from distutils.core import setup
import py2exe
setup(name = 'WebKit',
      scripts = ['WebKit.py']
)

any variation on this file will cause you trouble (My original one was autogenerated and had a "version" element in it, I also was loading py2exe before the disutilies.)
 
In anyevent that is my experience for what its worth
 
Jose

-------- Original Message --------
Subject: Re: [Webware-discuss] Application loads twice
From: Tavis Rudd <[EMAIL PROTECTED]>
Date: Mon, September 9, 2002 9:51 am
To: "jose" <[EMAIL PROTECTED]>,
<[EMAIL PROTECTED]>

On September 9, 2002 12:28 am, jose wrote:
> Hi I was wondering if thers is a work around for the application
> loading twice problem,

And which problem is that? Can you provide some more details
(tracebacks, error messages, etc.)?

------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to