Jump to content

minus11

Members
  • Posts

    12
  • Joined

  • Last visited

Posts posted by minus11

  1. Hi Helionet.org Discussion Forum,

     

    Thank-you for reading this post. I was wondering if it is possible for someone to please delete my domain: badvibesforcefield.heliohost.org

     

    I have backed up all my files via file transfer protocol (FTP).

     

    I tried to delete the domain myself but I think the fact that the filesystem on johnny is so broken that the program will not let me delete the domain.

     

    Thank-you for reading this post. Please let me know if you have any questions.

    Regards

     

     

  2. Hello Helionet,

     

    Could someone please delete my domain?

     

    The domain is:badvibesforcefield.heliohost.org

    The server is:johnny

     

    I do not have time to maintain this anymore. I have copied all my files and source code from my domain via ftp.

     

    Thank-you for hosting my website for free for these last few years.

     

    :)

  3. Hello Heliohost,

     

    I receive an error message when inputting my password for my free web hosting account. The error I receive is shown as at the following link: http://imgur.com/rTOw1Gz

     

    Also I tried to delete my account but the script says that my password is not correct but I think it is. Could this issue be caused by the fact that I cannot log in because the johnny server is experiencing some type of issue?

     

    It has been a while since I received an e-mail that my account was off because of inactivity. Did I lose control of my account? Was I hacked?

     

    Thank-you for reading this.

     

    Respectfully,

     

    Helio Host Member

  4. Hi all,

     

    I am trying to write my first CGI script using Python on my shared virtual web server. I put the script under 'public_html' in the 'cgi-bin' folder on my web server. I made the script executable with the chmod +x command. For the she-bang I am using #! /usr/bin/env python so that the script will be able to find any Python interpreter and not a specific one at a specific location.

     

    I made a test form to call the script from when a button is clicked but I just receive a 500 Internal Server error when trying to run this script. I messed around some with the location of the cgi script, which is a .py file in this case, but only received 404 errors.

     

    Does anyone reading this know what I am missing?

     

    Here is my Python script:

     

    #! /usr/bin/env python
    print "Content-type:text/html\r\n\r\n"
    print '<html>'
    print '<head>'
    print '<title>Hello Word - First CGI Program</title>'
    print '</head>'
    print '<body>'
    print '<h2>Hello Word! This is my third or fourth or so CGI program</h2>'
    print '</body>'
    print '</html>'
    

     

     

    Here is my HTML code that calls the Python script:

     

    <!DOCTYPE html>
    <head>
    <title>Test CGI Scripting With Python</title>
    </head>
    <body>
    <center>
    <form action="cgi-bin/hello.py" method="post">
    Click this button
    <input type="submit" value="Submit" />
    </form>
    </center>
    
    </body>
    </html>
    

     

     

    Thank-you for reading this everybody. :D

     

    Respectfully,

     

    minus

×
×
  • Create New...