• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

getting python for a file without .py

K

k.satirli

Guest
Basically, I've got a python script and I managed to get it to work with script.PY and script.CGI

what I want to have is that the script also works without an extension.

basically like so: "script" is interpreted as python code.

I've been able to get this to run on cPanel servers without a problem, but I've got no clue what I'm doing wrong.

here's what I got in the vhost.conf:

Code:
<Directory /home/httpd/vhosts/domain.com/httpdocs> 
<Files "script"> 
SetHandler python-program 
PythonHandler mod_python.cgihandler 
</Files> 
</Directory>

I did execute "/usr/local/psa/admin/sbin/websrvmng -a -v " after updating the vhost.conf but all I get when I access the file is a 404. Nothing is mentioned in the log file.

Any ideas?
 
hah... I found it.

Code:
<Files "script">
SetHandler python-program 
PythonPath "['/usr/lib/python2.3','/home/httpd/vhosts/domain.com/misc_stuff']+sys.path"
PythonHandler MoinMoin.request::RequestModPy.run 
</Files>

works fine. now the file named "script" in the root works as expected.

no error on Plesk's / my side after all, but just too little configuration...
 
i some place in this forum I post one " pseudo guide" to set up ZOPE (and install other pyton) independent from plesk instaled... search for zope and freebsd..
 
thanks but I don't have any need for it as my solution works out nicely for me.
 
Back
Top