• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

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