Jump to content

Recommended Posts

Posted

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

Posted

Thank you for the support, flask will do, could it be supported on Johnny at some point?

Should i transfer to Ricky or Tommy and request again to have access to postgres on the new server?

Posted

Yeah, we will probably install flask at some point on Johnny. Yes, both Ricky and Tommy support remote postgresql connections.

Posted

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

Posted

In that folder create a .htaccess file

You named your file

a.htaccess
when it's supposed to be starting with the period. No a:

.htaccess
There is a space between a and .htaccess in my guide.
Posted

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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...