Jump to content

BlackThuder

Members
  • Posts

    7
  • Joined

  • Last visited

BlackThuder's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks a lot ... Just a question Was it installed to use mod_WSGI option ?
  2. Can we please have web.py installed on Johnny It is pretty simple to install and one of the finest web frameworks available for Python http://webpy.org/install#install It is capable of being used with FASTCGI .... which can be done personally (user himself) if needed ... Thanks & Regards PK
  3. By the way I did what u said ... Writing cgi.test() seems to make it work but then it also prints a lot of info. I understand that it prints something that I need to write but I dont know what ... I am doing what is normally required to be done ... any ideas on that Hey got it working .... The issue was in Python 3 the braces are important print ("Content-Type: text/html\n") Thanks a lot .... sorted everything out ... just the semantic error of braces
  4. I have kept a file in cgi-bin with permission set to 755 but it gives an error. Check out the link to find the error http://urjas.heliohost.org/cgi-bin/Hi.py The contents of the file are as follows --------------------------------------------------- #!/usr/bin/python print "Content-Type: text/html \n" print("<html>") print("<body>") print( "Hi there") print("</body>") print("</html>" --------------------------------------------------- It has been uploaded in ASCII mode via FTP. My local machine is windows. Anything that I did wrong to get that Internal server error
  5. Did that ... named it Hi.py and it has at the beginning #!/usr/bin/env python print "Content-type: text/plain\n" Shows a internal server error. Check that out at http://urjas.heliohost.org/cgi-bin/Hi.py I think I got it ... The file should have usr/bin/python at the top ... cnt check nnow ... Johnny seems to be down
  6. Hi I am not able to read anything anything in cgi-bin When I try to open http://urjas.heliohost.org/cgi-bin/ It shows ---------------------------------------------------------------------------------------------------------------------------------- Forbidden You don't have permission to access /cgi-bin/ on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. ---------------------------------------------------------------------------------------------------------------------------------- I have changed the folder permission to 755. Not sure why it does not work. Any idea. I have written some python code and want to start testing. Regards PK
×
×
  • Create New...