I'm using an existing twisted python script to serve my Web pages (see below) on Linux. When I set the URL to point to a python script (see example below), the script executes well. I see the output result in the shell window but nothing is shown in the browser window. Could you point me out what is missing in this script to display the output of a script? I looked in the mailing list archive and could not find my answer.

And how could I change the filter path to the php executable. Actually the path is set to "/usr/bin/php4" and I want to set it to "/usr/local/bin/php".

Thanks.

------------------------------------------------------
Script:


import sys

if sys.platform == 'win32':
   from twisted.internet import win32eventreactor
   win32eventreactor.install()
from twisted.python import log
from twisted.internet import reactor
from twisted.web import static, server, twcgi, script, xmlrpc, resource
from twisted.internet import utils
import os

import Interpreter
import Dispatcher

def main():

   log.startLogging(sys.stdout)
print "Starting up Selenium Server..."
   root = resource.Resource()
# The proxy server (aka "The Funnel")
   if sys.platform == 'win32':
       path = os.path.join(os.getcwd(),"cgi-bin","nph-proxy.exe")
   else:
       path = os.path.join(os.getcwd(),"cgi-bin","nph-proxy.cgi")

   proxy = twcgi.CGIScript(path)
   root.putChild("AUT",proxy)
#The followoing are all available from /selenium-driver/
   #  * Selenium BrowserBot html, css, and javascript (/selenium-driver/*)
   #  * Selenese driver    (/selenium-driver/driver/)
   #  * XML-RPC listener   (/selenium-driver/RP2/)
   driver = static.File("./selenium_driver")
   driver.ignoreExt('.rpy')
   driver.indexNames=['index.rpy']
   driver.processors = {'.rpy': script.ResourceScript,
                        '.php': twcgi.PHPScript,
                        '.py': script.PythonScript}

   root.putChild('selenium-driver', driver)
reactor.listenTCP(10001, server.Site(root))
   reactor.run()

if __name__ == '__main__':
   main()


---------------------------
Example of script:

#!/usr/bin/env python
print 'Allo'
[

_______________________________________________
Twisted-web mailing list
[email protected]
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web

Reply via email to