[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-26 Thread Derek
You could open a connection to both databases then copy the data over that way. That's what my day job is, transferring data, ETL. On Sunday, August 23, 2015 at 7:49:12 PM UTC-7, Joe wrote: > > Yes, now I can connect but I wasn't able to connect before. First, I > couldn't upload the packaged ap

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-23 Thread Joe
Yes, now I can connect but I wasn't able to connect before. First, I couldn't upload the packaged app using the admin interface because I didn't know about PythonAnywhere's app size upload limit. Then, after I uploaded the app using sftp I was getting the error messages every time I tried a new

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-18 Thread Glenn Jones
That sounds like you are connecting to the database, you're just not seeing the data you expect. How did you transfer the data from sqlite to MySQL? On Tuesday, 18 August 2015 10:14:54 UTC+1, Joe wrote: > > Hi Glenn, Yes, that's me. > Of course, I would be happy if you could help me out here as

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-18 Thread Joe
Hi Glenn, Yes, that's me. Of course, I would be happy if you could help me out here as well! Thanks very much, I appreciate it! On Tuesday, August 18, 2015 at 4:56:54 PM UTC+8, Glenn Jones wrote: > > Hi Joe, > > PythonAnywhere dev here (glenn on the Forums). Are you the guy I was > talking to i

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-18 Thread Glenn Jones
Hi Joe, PythonAnywhere dev here (glenn on the Forums). Are you the guy I was talking to in the forum thread titled "Web2py app connecting to mysql database"? If you are, do you mind if I chime in to this with some of the details we worked out to give the web2py guys a little more to work on? O

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-18 Thread Joe
The issue is that when I connect the app to the mysql and I check the database administration interface, the tables are all there as expected, but all the records are missing. The app was uploaded to Pyuthonanywhere using sftp because Pythonanywhere has a app size limit for the admin interface

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-17 Thread Joe
Thanks for your reply Dane, For my other 2 apps hosted with Pythonanywhere, which are working fine, I have been using this in my db.py model: db = DAL('mysql://aaa:b...@bbb.mysql.pythonanywhere-services.com/ccc$mydbname') My new app, however is not working with this code. I just tried the code

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-17 Thread Joe
Thanks for your reply Massimo, yes, I have a couple of web2py apps with Pythonanywhere for about a year now and I had no problems with them. However, it seems impossible to correctly connect my new app to mysql on Pythonanywhere I am giving up on this because I have been trying for over a week

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-16 Thread Massimo Di Pierro
I would talk to them. They are very supporting. Anyway that said. You can use any hosting you want. I use Python Anywhere, Digital Ocean, Google App Engine, and Google Managed VM (with Docker) for different projects. On Sunday, 16 August 2015 15:43:21 UTC-5, DaneW wrote: > > I've been using Pyth

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-16 Thread DaneW
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.ser

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Annet
Hi Joe Thanks Annet, did you ever work out that issue with Webfaction? > Not really, setting the pool-size from 1 to 0 just solved the issue, I didn't take the time to figure out why. I have no experience with pythonanywhere. So far all issues I had with deploying my applications have been solve

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Joe
Yes, I know, so what I did was, I uploaded my app folder to pythonanywhere using sftp and that works. I can run the app but only if I use sqlite db, I can't connect to the mysql. That's my problem. On Friday, August 14, 2015 at 5:05:16 PM UTC+8, Oli wrote: > > > Am Freitag, 14. August 2015 09:2

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Oli
Am Freitag, 14. August 2015 09:28:03 UTC+2 schrieb Joe: > > Is that because you had an issue with your bigger apps on pythonanywhere? > If so, how did you realize that the app size was the problem? I am still > trying figure out what the problem is with my app. > On Friday, August 14, 2015 at 3:

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Joe
Thanks Annet, did you ever work out that issue with Webfaction? On Friday, August 14, 2015 at 1:06:50 PM UTC+8, Annet wrote: > > Hi Joe, > > I host my appliaction at Webfaction and had a similar issue, support > advised me to set pool_size = 0 > pool_size = 1 conflicted with a setting outside web

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Joe
Is that because you had an issue with your bigger apps on pythonanywhere? If so, how did you realize that the app size was the problem? I am still trying figure out what the problem is with my app. On Friday, August 14, 2015 at 3:09:01 PM UTC+8, Oli wrote: > > > Am Freitag, 14. August 2015 05:38:

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Oli
Am Freitag, 14. August 2015 05:38:24 UTC+2 schrieb Joe: > > 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? > I put my big apps in a

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-13 Thread Annet
Hi Joe, I host my appliaction at Webfaction and had a similar issue, support advised me to set pool_size = 0 pool_size = 1 conflicted with a setting outside web2py. Kind regads, Annet -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-13 Thread Joe
Thanks for your reply Jorge, I have been using Pythonanywhere for a long time as well, hosting 2 very simple web2py sites there with no problem. However, now I am trying to deploy a more complex app there and I have been experiencing some issues. I finally uploaded the app using sftp because th

[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-13 Thread JorgeH
what sort of problems are you having? I have used pythonanywhere for long time with no problems whatsoever. webfaction is an alternative. On Thursday, August 13, 2015 at 10:38:24 PM UTC-5, Joe wrote: > > I am using Pythonanywhwere and having some problems. Can anyone recommend > an other hostin