* edit * After reinstalling the module, everything worked fine.

I have installed a python module on my webserver.

When I do "whereis python" I get following path:

python: /usr/bin/python2.4 /usr/bin/python /usr/lib/python2.4 /usr/include/python2.4 /usr/share/man/man1/python.1.gz

Later when I check my modules path, it was installed here:

/usr/llib/python2.4/site-packages/MyModule/myModule

Now in my PHP script, I am doing this:

exec("python /usr/lib/python2.4/site-packages/MyModule/myModule script.py -v pixfx.xml 2>&1", $output, $return);

This script does not get executed.

Any issues with what I am doing so far?

Thanks

******** edit *********

#! /usr/bin/env python 
import sys 
import os 
import getopt 
import re 
from fontTools.ttLib import TTFont 
from fontTools.ttLib.tables.otBase import OTLOffsetOverflowError 
from fontTools.ttLib.tables.otTables import fixLookupOverFlows, fixSubTableOverFlows     
from fontTools.misc.macCreatorType import getMacCreatorAndType 
from fontTools import version 

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Should you be doing

exec("/usr/bin/python /usr/lib/python2.4/site-packages/MyModule/myModule script.py -v pixfx.xml 2>&1", $output, $return);

OR

exec("/usr/bin/python/python /usr/lib/python2.4/site-packages/MyModule/myModule script.py -v pixfx.xml 2>&1", $output, $return);
link|improve this answer
Should not be doing? – ircmaxell Aug 23 '10 at 15:18
sorry, Should you be doing* – RobertPitt Aug 23 '10 at 15:20
thanks, that worked. – ssdesign Aug 23 '10 at 15:32
ok I ran into another bug after I got the exec() to work. I have the module installed correctly, still I get following error: ************ Traceback (most recent call last): File "/usr/lib/python2.4/site-packages/MyModule/myModulw/script.py", line 60, in ? from myModule.ttLib import TTFont ImportError: No module named myModule.ttLib ************** Any idea? – ssdesign Aug 23 '10 at 15:50
you would have to show the source of script.py and it loks like it cant import some fonts, im not that good at Python but if you post your code ill take a look – RobertPitt Aug 23 '10 at 22:14
show 12 more comments
feedback

You might find it useful to debug under the user that php is running under, ie www-data, apache, etc. This is helpful for uncovering any permission, path or environment issues that may arise.

link|improve this answer
Hi, how to debug under user? – ssdesign Aug 24 '10 at 2:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.