I am using Pythonanywhwere and having some problems. Can anyone recommend an other hosting for web2py apps where the support understands the web2py framework and they can actually fix problems when needed?
Thanks Annet, did you ever work out that issue with Webfaction?
db = DAL('mysql://user_name:pass...@mysql.server/user_name$database_name')
I've been using PythonAnywhere happily for over 2 years. The database (now with over 12m records) has worked perfectly under SQLite and later MySQL - although I do get error 1226 about exceeding max_user_connections every so often.
In the db.py model I have db = DAL('mysql://aaa:bbb@mysql.server/ccc$db1',pool_size=0,lazy_tables=True,check_reserved=['all']) - where aaa is my user name, bbb is my MySQL password and ccc$db1 is my database name.
I've been using PythonAnywhere happily for over 2 years. The database (now with over 12m records) has worked perfectly under SQLite and later MySQL - although I do get error 1226 about exceeding max_user_connections every so often.
In the db.py model I have db = DAL('mysql://aaa:bbb@mysql.server/ccc$db1',pool_size=0,lazy_tables=True,check_reserved=['all']) - where aaa is my user name, bbb is my MySQL password and ccc$db1 is my database name.