django.db.utils.OperationalError: (2002, 'Can\'t connect to local MySQL server through socket \'/cloudsql/instance:us-central1:project_name\' (2 "No such file or directory")')

2019-08-09 Thread Solomon Mbak
Hi. For two days I have been stuck on deploying my Django app on Google App Engine. I cloned the project from my Github account. I have installed the requirements also. The database in-use is a mysql database I get an error that says "django.db.utils.OperationalError: (2002, 'Can\'t connect

Re: Local django server - login fails with new safari version

2019-08-09 Thread Balu krishnan
Please check this link. He also facing the same issue https://stackoverflow.com/questions/57384659/since-macos-mojave-10-14-6-update-with-safari-12-1-2-im-not-able-to-login-in-s On Fri, Aug 9, 2019 at 12:06 PM Stephen McGonigal < mcgonigalstep...@gmail.com> wrote: > Thanks Balu. I tried that but

Re: Hosting para demostración

2019-08-09 Thread Gerardo Palazuelos Guerrero
hola, Antes mencionaron pythonanywhere.com, aca tienes una liga/tutorial: https://www.pythoncircle.com/post/18/how-to-host-django-app-on-pythonanywhere-for-free/ también puedes consultar el tutorial de DjangoGirls para más detalle. Saludos, -- Gerardo Palazuelos Guerrero On Fri, Aug 9,

Re: Hosting para demostración

2019-08-09 Thread Julio Cojom
Pythonanywhere, incluso con instancia de mysql El vie., 9 de agosto de 2019 11:57 a. m., Gabriel Araya Garcia < gabrielaraya2...@gmail.com> escribió: > ¿Donde y como subir mi proyecto básico en calidad de demostracion?. Es muy > basico, con apenas 60 registros, en Sqlite3. Necesito mostrar el

Re: Hosting para demostración

2019-08-09 Thread DANIEL URBANO DE LA RUA
Puedes abrir un puerto en tu router y haces un port forward de tu aplicación sobre la 0 0 0 0 o tu ip y haz un curl ifconfig.me y tendras tu ip publica On Fri, 9 Aug 2019, 19:58 Gabriel Araya Garcia ¿Donde y como subir mi proyecto básico en calidad de demostracion?. Es muy > basico, con apenas

Re: Hosting para demostración

2019-08-09 Thread DANIEL URBANO DE LA RUA
Port forwarding and give then you outbound ip On Fri, 9 Aug 2019, 20:11 Miguel Ángel Cumpa Ascuña < miguel.cumpa.asc...@gmail.com wrote: > Hola Gabriel, quizá este tutorial te pueda ayudar > https://help.pythonanywhere.com/pages/DeployExistingDjangoProject/ > Saludos > > El vie., 9 ago. 2019 a

Re: Hosting para demostración

2019-08-09 Thread Miguel Ángel Cumpa Ascuña
Hola Gabriel, quizá este tutorial te pueda ayudar https://help.pythonanywhere.com/pages/DeployExistingDjangoProject/ Saludos El vie., 9 ago. 2019 a las 12:57, Gabriel Araya Garcia (< gabrielaraya2...@gmail.com>) escribió: > ¿Donde y como subir mi proyecto básico en calidad de demostracion?. Es

Hosting para demostración

2019-08-09 Thread Gabriel Araya Garcia
¿Donde y como subir mi proyecto básico en calidad de demostracion?. Es muy basico, con apenas 60 registros, en Sqlite3. Necesito mostrar el estado de avance para un cliente. He intentado subir a Heroku, pero me ha sido imposible, pues me alega sobre la mi version de Python 3.7.4 cabe señalar

Re: How do I setup email from address from logging to the admins?

2019-08-09 Thread אורי
Hi, I found out there is a separate setting: https://code.djangoproject.com/ticket/30692 אורי u...@speedy.net ‪On Fri, Aug 9, 2019 at 1:44 PM ‫אורי‬‎ wrote:‬ > Django Users, > > I'm using AdminEmailHandler in Speedy Net to send mail to the admins. My > log file contains the following lines: >

Re: Django bug: change uuid field to FK does not create dependency

2019-08-09 Thread Viktor Lomakin
Can i try to make a patch and assign ticket to me? пт, 9 авг. 2019 г. в 12:17, Carlton Gibson : > Hi Viktor, > > Yes, AlterField should add the dependency. Manually edit the migration for > now. In your example, making it: > > ``` > dependencies = [ > ('testapp1',

How do I setup email from address from logging to the admins?

2019-08-09 Thread אורי
Django Users, I'm using AdminEmailHandler in Speedy Net to send mail to the admins. My log file contains the following lines: 'handlers': { 'syslog': { 'level': 'DEBUG', 'class': 'logging.handlers.SysLogHandler', 'facility': 'local7',

Re: Django bug: change uuid field to FK does not create dependency

2019-08-09 Thread Carlton Gibson
Hi Viktor, Yes, AlterField should add the dependency. Manually edit the migration for now. In your example, making it: ``` dependencies = [ ('testapp1', '0002_app1_another_app'), ('testapp2', '0001_initial'), ] ``` ... and hopefully we can improve the detection there.

Custom error messages not working in Django ModelForm - help needed

2019-08-09 Thread אורי
Django Users, I want to release Speedy Net and Speedy Match to production in September or October 2019. I need help with the following issue on GitHub and Stack Overflow: https://github.com/speedy-net/speedy-net/issues/3 Any suggestions? There are other issues on Speedy Net which I also need

Re: Local django server - login fails with new safari version

2019-08-09 Thread Stephen McGonigal
Thanks Balu. I tried that but I still have the same error. On Thursday, 8 August 2019 17:54:00 UTC+1, Stephen McGonigal wrote: > > I've updated my MacBook to the latest Mojave 10.14.6 version. Since that > update I'm not able to login into my locally installed django webserver > using Safari