• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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