Do webapp hosting sites such as webfaction.com support the use of cmd tools such as pdftk and pdftotext? For example, if in my django-powered site I do something like

subprocess.Popen("pdftk.exe....")

would this still work when I begin hosting the site?

link|improve this question

67% accept rate
In what context do those applications run? On the server, or on the client side. I would warn you about either, in case of security vulnerabilities. – Merlyn Morgan-Graham Aug 8 '10 at 0:47
I would assume that they would be running on the server side. How would I get the pdftk.exe to the client? And what security vulnerabilites might arise? – Dpetters Aug 8 '10 at 3:55
feedback

1 Answer

up vote 1 down vote accepted

On webfaction at least, you can install such tools in your own directory and then call them. If your process starts hogging memory, it may get killed off. For example see this thread on the forum.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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