Jump to content

Web App With Web.py On Heliohost Johnny Server


oswako

Recommended Posts

Hello

 

I need to run a web app with web.py, Some other devices will Post and Get to the App and this last one needs to be able to reply to the caller with a json package, eventually this App will connect to the postgres database already in place here at heliohost.

But I have encounter problems when trying to run the python script. and want to know if this is even possible to do here at Helioshost.

 

Configuration:

 

Server: jhonny

Website: oswako.helioshost.org/cgi-bin/helloword.py

File path: public_html/cgi-bin/helloworld.py

File Permission: 755

 

Code:

 

#!/usr/bin/env python
import psycopg2
import web
import json
print("Content-type: text/html\n\n")
urls = (
'/', 'index',
'/jsonp', 'jsonp'
)
class index:
def GET(self):
return "Hello, world!"
class jsonp:
def POST(self):
data = json.loads(web.data())
print data['ID']
print data['MAC']
web.header('Content-Type', 'application/json')
return json.dumps(data)
if __name__ == '__main__':
app = web.application(urls,globals())
app.run()

 

Note: The code has been verify on python and works fine on http://localhost:8080/ returning hello world.

 

 

Error:

 

when I try to run it in oswako.heliohost.org/cgi-bin/helloworld.py/ comes back with:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@oswako.heliohost.org and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

 

I have seem other forums from people trying to do something like this on helioshost but I can't find out if they were successful or not.

 

thank you for your guidance and help in advanced.

 

Oswaldo

Link to comment
Share on other sites

Hello , I have Change Server to Ricky and requested remote postgresql connections, now I'm trying to run flask on Ricky as described in the following link http://www.helionet....ohnny/?p=128919, but all I can see when I try to run the application in my browser as http://ioteche.heliohost.org/flask/ and the result is:

Index of /flask Name Last modified Size Description Parent Directory - a.htaccess 2017-06-12 07:45 185 flask.wsgi 2017-06-12 07:46 253 myapp.py 2017-06-12 08:02 526

 

Also if I type the http://ioteche.heliohost.org/flask/myapp.py the code text shows up like this:

 

#!/usr/bin/env python
import sys

from flask import Flask, __version__
app = Flask(__name__)
application = app

@app.route("/")
def hello():
return """

HelioHost rules!<br><br>
<a href="/flask/python/version/">Python version</a><br>
<a href="/flask/flask/version/">Flask version</a>

"""

@app.route("/python/version/")
def p_version():
return "Python version %s" % sys.version

@app.route("/flask/version/")
def f_version():
return "Flask version %s" % __version__

if __name__ == "__main__":
app.run()

 

I would like to use python 2.7 version with flask on Ricky, at this time I'm just following the little flask tutorial posted on your forum, link that is written on the top of this message.

 

What I'm doing wrong?

 

thanks in advance

Link to comment
Share on other sites

Hi,

 

So sorry, I couldn't see the .htaccess on the file manager and that is why I mistakenly named it a.htaccess after going to Settings on file manager and then clicking on the option Show Hidden Files (dotfiles)

then I could see the dotfiles and now is working.

 

Thank you.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...