views:

131

answers:

1

i tried installing orbited on vista . but i get following errror when i try to run the orbited server.When i type on twisted cmd prompt orbited i get following o/p.

C:\>orbited
Traceback (most recent call last):
  File "C:\Python26\scripts\orbited-script.py", line 8, in 
    load_entry_point('orbited==0.7.9', 'console_scripts', 'orbited')()
  File "C:\Python26\lib\site-packages\orbited-0.7.9-py2.6.egg\orbited\start.py",
 line 75, in main
    logging.setup(config.map)
  File "C:\Python26\lib\site-packages\orbited-0.7.9-py2.6.egg\orbited\logging.py
", line 33, in setup
    defaults[logtype][-1].open()
  File "C:\Python26\lib\site-packages\orbited-0.7.9-py2.6.egg\orbited\logging.py
", line 195, in open
    self.f = open(self.filename, 'a')
IOError: [Errno 13] Permission denied: 'debug.log'
+1  A: 

Do you have write permission on the file debug.log (and the directory it's to be placed in, which I think is the current directory)? If not, you could try tweaking the config.map being used to setup the logging subsystem (about midway through this stack trace).

Alex Martelli