Tag: CGI
Posts of Tag: CGI
  1. Python CGI Programming

    Python CGI Programming Python Programming language is broadly used by developers to create standalone, desktop, enterprise and web applications these days. Here in this article, I’m going to cover trending CGI ...Learn More
    PythonCGI
  2. Perl CGI script with css

    I am using a external css for my CGI web form but I can't get the .css to take to the page. Is there a certain way a external css needs to be called. I tried: <link rel="stylesheet" type="text/css" href=...Learn More
    CGICSSPerl
  3. Using Flask from CGI, possible?

    Is it in fact possible to use Flask from a CGI? If so, how? I am aware of the concise and nice looking documentation for CGI+Flask but it looks to me, like the request.args.get('varname') function is not work...Learn More
    PythonCGIflask
  4. Trouble running Flask in Apache/CGI

    I have a shared hosting from Namecheap ( No ssh access). There I can run any python file in the CGI-bin directory when I type the full path including the .py extension. I want to know how to run a flask app in ...Learn More
    PythonCGIflask
  5. Python CGI and json dumps

    I'm using python for a light web application based on BaseHTTPServer and CGIHTTPServer. I have a little issue with an ajax call, which retrieves a dictionary to fill a select widget. Being "list" the select ID ...Learn More
    PythonCGIJsonAjaxcgihttpserver
  6. Why should I avoid using CGI?

    I was trying to create my website using CGI and ERB, but when I search on the web, I see people saying I should always avoid using CGI, and always use Rack. I understand CGI will fork a lot of Ruby processes,...Learn More
    CGIRubyfastcgi
  7. When try to execute a cgi script, get the error: "[WinError 193] %1 is not a valid Win32 application"

    When I try to execute a cgi script (via a localhost), I get the following error OSError: [WinError 193] %1 is not a valid Win32 application Any ideas why ?? Completely lost... . Additional Information: The lo...Learn More
    PythonCGIAjaxLocalhost
  8. Send form content using Python on Google App Engine

    I'm trying to implement a subscribe button on my website that will send whatever the user writes to one of my mails. I'm trying to write a Python script that would do that. My website is static and hosted on ap...Learn More
    PythonCGIFormsgoogle-app-engine
  9. How can I save a HTTP request from a python cgi scripts so I can easily repeat it?

    I have a cgi script wrote in Python that is receiving some complex http request, one that could be POST or GET. I am looking for a simple way to log the request in some way so I can replay it later any number ...Learn More
    PythonCGIHTTP
  10. Mutual authentication with python as a CGI web app?

    I'd like to make a simple python CGI script (hosted by apache in my case) that reads the client certificate and logs who accesses the script. My question seems simple but I can't find any info on the WWW: with ...Learn More
    PythonCGISSLApachePki
  11. Pros and Cons of different approaches to web programming in Python

    I'd like to do some server-side scripting using Python. But I'm kind of lost with the number of ways to do that. It starts with the do-it-yourself CGI approach and it seems to end with some pretty robust frame...Learn More
    PythonCGIWsgiframeworks
  12. how to call pm files from index file in perl?

    I want to use files that are inside cgi-bin folder in perl, I want to call them from index.cgi When I do this: use cgi-bin/file_name it doesn't work, how can I do that? ...Learn More
    CGIPerlIndexing