Results 1 to 4 of 4
Hi,
I know almost nothing about python, but I am trying to use DimDim (a videoconference server) and it uses python.
The operating system is Debian Etch and ir is ...
- 06-18-2009 #1Just Joined!
- Join Date
- Jun 2009
- Posts
- 2
Somewhat OT: DimDim complains about
Hi,
I know almost nothing about python, but I am trying to use DimDim (a videoconference server) and it uses python.
The operating system is Debian Etch and ir is supposedly to use python2.5. When I start DimDim it outputs these specific errors about python:
File "/usr/local/dimdim/Mediaserver/mods/interface.py", line 7, in <module>
from document_manager.slidedeck import CSlidedeck
File "/usr/local/dimdim/Mediaserver/mods/document_manager/slidedeck.py", line 22, in <module>
from engine import exportEngine
File "/usr/local/dimdim/Mediaserver/mods/document_manager/engine.py", line 34, in <module>
import uno
Below there are some lines of engine.py with its number lines:
16 #import win32com.client, pythoncom
17
18 from toolkit import osconfig
19 from toolkit import filehelper
20 from toolkit.dThread import dThread
21
22 selfDestructTime = 360.0 # in seconds
23 mediaArchive = osconfig.mediaDirectory()
24 oopath = osconfig.ooPath()
25 slidedeckArchive = osconfig.slidedeckArchive()
26 mailboxURL = osconfig.mailboxURL()
27 if sys.platform.startswith('win'):
28 import win32process
29 import win32file
30 import win32com.client, pythoncom
31 else:
32 sys.path.append(oopath)
33
34 import uno
35 import unohelper
36 from com.sun.star.beans import PropertyValue
37
38 class scopedLock(object):
39
Please could you help me to solve this problem, do you need more info?
Thanks in advance!
- 06-18-2009 #2Just Joined!
- Join Date
- Jun 2009
- Location
- Toronto
- Posts
- 18
It would help to post the full Exception traceback. it seems to be cut-off.
- 06-19-2009 #3Just Joined!
- Join Date
- Jun 2009
- Posts
- 2
Exception traceback
Hi cgrebeld,
I got following , during dimdim server run..
*************** Stopping any running Dimdim service ******************
Stopping Conference server
Please wait..
Stopping DimDim Conference Server...
Waiting for DimDim Conference Server to exit...
Waiting for DimDim Conference Server to exit...
Waiting for DimDim Conference Server to exit...
Waiting for DimDim Conference Server to exit...
Waiting for DimDim Conference Server to exit...
Stopped DimDim Conference Server.
Conference server stopped
presentation manager stooped
Reflector stopping
Active FCGI Processes : 10 (of 10)
killing reflector processes...
killed
Active FCGI Processes : 0 (of 10)
Reflector stopped
nginx: no process killed
nginx stopped
Attempting to connect to RMI port: 9999
Red5 Jetty loader was found
Calling shutdown
Streaming server stopped
Cobmanager stopped
Starting Conference server
Starting DimDim Conference Server...
Conference server started
spawn-fcgi.c.186: child spawned successfully: PID: 11373
Starting presentation manager
Traceback (most recent call last):
File "/usr/local/dimdim/Mediaserver/mods/interface.py", line 7, in <module>
from document_manager.slidedeck import CSlidedeck
File "/usr/local/dimdim/Mediaserver/mods/document_manager/slidedeck.py", line 22, in <module>
from engine import exportEngine
File "/usr/local/dimdim/Mediaserver/mods/document_manager/engine.py", line 34, in <module>
import uno
ImportError: No module named uno
ls: *.pid: No such file or directory
Active FCGI Processes : 0 (of 10)
killing reflector processes...
killed
ls: *.pid: No such file or directory
Active FCGI Processes : 0 (of 10)
spawn-fcgi.c.186: child spawned successfully: PID: 11408
spawn-fcgi.c.186: child spawned successfully: PID: 11423
spawn-fcgi.c.186: child spawned successfully: PID: 11441
spawn-fcgi.c.186: child spawned successfully: PID: 11461
spawn-fcgi.c.186: child spawned successfully: PID: 11495
spawn-fcgi.c.186: child spawned successfully: PID: 11509
spawn-fcgi.c.186: child spawned successfully: PID: 11543
spawn-fcgi.c.186: child spawned successfully: PID: 11560
spawn-fcgi.c.186: child spawned successfully: PID: 11579
spawn-fcgi.c.186: child spawned successfully: PID: 11595
nohup: appending output to `nohup.out'
spawn complete. checking status...
11408 is alive
11423 is alive
11441 is alive
11461 is alive
11495 is alive
11509 is alive
11543 is alive
11560 is alive
11579 is alive
11595 is alive
Reflector started
starting nginx
red5 server started
CobManager Started
- 06-19-2009 #4Just Joined!
- Join Date
- Jun 2009
- Location
- Toronto
- Posts
- 18
Hm, not knowing any thing about this software, I would try to see if there was an uno.py on your /usr/lib path somewhere and then look at it. It may be there are some missing libraries which it's expecting. Perhaps there's a readme or install textfile that will list the dependencies.


Reply With Quote