• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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