Célio Conort
Visitor
|
Re:self contained install? - 2006/02/06 23:16
Hi,
in fact you should be able to start palabre via the PalabreQuickStarter.py without installation, but it's a little bit buggy yet but will be fixed soon.
you can try to create a python file in the un-tar-ed Palabre Folder with the following code :
| Code: |
#!/usr/bin/python
from palabre.palabreServer import PalabreServer
import asyncore
myServer = PalabreServer('',2048,'Password' )
asyncore.loop()
|
it won't print anything but should start Palabre (then try to connect via a flash client or telnet to test)
Anyway if you don't have full access to the webserver, you may not be able to open the desired port on the computer or the firewall, ...
Célio
|