Re: Presentation ideas?

2014-01-17 Thread John DeRosa
I’m glad Russ answered too. I was thinking only about tutorials, but neglected to explain that. Not that it was hard to figure out, I supposed. On Jan 16, 2014, at 8:56 PM, Keith Edmiston wrote: > John/Russ, > > Thanks a ton for these suggestions. Great thoughts! > > Ke

Re: Postgres and backup/restore

2014-02-06 Thread John DeRosa
pg_dump is all you need, if your db is small enough. It generates a consistent backup. pg_dump, zip, stash it in a cloud container named "backup" is what we do. John On Feb 6, 2014, at 3:07 PM, Lachlan Musicman wrote: > Hola, > > What are people's recommendation

Admin inline foreignkey queryset not being cached

2014-02-14 Thread john . parton
ot;id" FROM "example_problem_examplechild"' - PARAMS = () for every ExampleInline referenced. Shouldn't that query be cached by Django? Is that expected behavior? Is there a way to force Django to use the cache for subsequent inlines? I'm also experiencing a similar

Re: Gunicor + Postgres + Python 3

2014-03-13 Thread John Deng
Hi, Henrique. Did you config the url.py? 在 2014年3月10日星期一UTC+8下午12时14分18秒,Henrique Oliveira写道: > > Hi there, > > I have set Django + gunicorn + python 3 in a production env, but I am > gettin critical timeout on simple request(home). > Any Ideas? > > 14-03-09 23:11:21 [14029] [INFO] Listening at:

Re: Making functions callable

2014-03-26 Thread John DeRosa
For the default value to work as you expect, do this: def view(request, year=None): if year is None: year = today.year() Kwarg defaults are evaluated when the module is interpreted for the first time. John On Mar 26, 2014, at 1:57 PM, Anthony Hawkes wrote: > Hi Guys, >

Re: Making functions callable

2014-03-26 Thread John DeRosa
Not sure what is going on without seeing the code. But something is None when it should be a string, as the exception is telling you. It's often easiest to try out problem code interactively in Python, and zero in on the problem. John On Mar 26, 2014, at 3:53 PM, Anthony wrote: >

How do I register to get access to the IRC Channel?

2014-04-02 Thread John Draper
sed to be able to do that, but not since M$ bastardized it. John -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegro

Moving from 1.2 to 1.6

2014-04-09 Thread John Fabiani
Hi, I be honest this {% csrf_token %} has me completely baffled. I have read the doc's and I guess I have to admit I don't understand what I'm doing. I have action="/register/registeruser/" > {% csrf_token %} ... Which I think is the correct way to add the token. My form uses submitHandler

Re: Moving from 1.2 to 1.6

2014-04-09 Thread John Fabiani
an by "missing necessary headers"? The code that includes the 'headers' in the doc's is exactly the part I don't understand. Where does that code go and how does it relate to my code. Johnf On 04/09/2014 10:51 AM, C. Kirby wrote: Hi John, You are mostly th

Re: Moving from 1.2 to 1.6

2014-04-09 Thread John Fabiani
Also I was using jquery 1.4 with Django 1.2. Should I upgrade the jquery? Johnf On 04/09/2014 11:54 AM, John Fabiani wrote: I've read that paragraph 15 different ways (maybe even standing on my head). I still don't understand what I'm missing. Believe me I realize I might be

Re: Moving from 1.2 to 1.6

2014-04-09 Thread John Fabiani
probably gain a lot from upgrading, but I would be a bit worried about deprecated features. Try it out, if it works with no issues - great, if not then you can decide if you want to fix the errors or revert. Kirby On Wednesday, April 9, 2014 1:57:24 PM UTC-5, John Fabiani wrote: Also

Re: Moving from 1.2 to 1.6

2014-04-09 Thread John Fabiani
Do you guys think is possible the jQuery Form plugin is some how interfering with the token? Johnf On 04/09/2014 02:18 PM, John Fabiani wrote: The code looks great. I just do not know where the code goes and how it is to be called. For example: Should the code you provided be in .alaxSubmit

Re: Fwd: Moving from 1.2 to 1.6

2014-04-09 Thread John Fabiani
On 04/09/2014 04:25 PM, Nick Santos wrote: Hey John, Is this a server you could turn set DEBUG=True for and send this list the results of the error page that's produced? That could be super valuable in tracking down the error. -Nick On Wed, Apr 9, 2014 at 4:00 PM, John Fabiani <mail

Re: Fwd: Moving from 1.2 to 1.6

2014-04-09 Thread John Fabiani
normal POST/GET from the browser? -Nick On Wednesday, April 9, 2014 5:59:37 PM UTC-7, John Fabiani wrote: I have created a csrf.js added the code. I added it to the html base I've added the {% csrf_token %} in the form. Where oh where do I use the code or is it magic! Doe

Re: Django

2014-04-19 Thread John DeRosa
On Apr 19, 2014, at 8:02 AM, Mark Phillips wrote: > "Two Scoops of Django" is also very good. > > +1 for TSoD. Super book! -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, se

Re: Django Celery throwing runtime warnings for naive times

2014-04-28 Thread John DeRosa
you, given the code path that's in the stack dump. John On Apr 28, 2014, at 3:33 AM, heidi wrote: > > > I run an online game with Django 1.6 and Celery 3.1.11. Kombu is 3.0.15. > > Recently I had problems with Celery and DST, so I decided to run the whole > site on UTC

How do I execute custom sql in a test right after the database is created?

2014-05-16 Thread John Rambo
First of all I know that is bound to break a lot of other things. I changed the core so references to tables are PostgreSQL fully qualified table name (e.g. "family"."person" instead of family_person). So far it had been doing what I want except I can't run tests because the schemas are not cre

distinct().filter() applies filter before distinct

2014-06-10 Thread John Rambo
If we chain a call to filter() after a call to distinct(), the filter is applied to the query before the distinct. How do I filter the results of a query *after* applying distinct? Example.objects.order_by('a','b').distinct('a').filter(b='something) The where clause in the SQL resulting from

Re: distinct().filter() applies filter before distinct

2014-06-10 Thread John Rambo
This better illustrates what I mean: Example.objects.order_by('a','foreignkey__b').distinct('a').filter(foreignkey__b='something') On Tuesday, June 10, 2014 4:06:50 PM UTC-5, John Rambo wrote: > > If we chain a call to filter() after a call to dis

Massive import in Django database

2014-06-11 Thread John Carlo
t? Do you have some suggestions, recommendation? I fear that since I have 1.000.000 docs to import, it will take a lt of time, especially during the get_or_create routines thank you in advance everybody! John -- You received this message because you are subscribed to the Google G

How to use 1.7 from git repository

2014-06-23 Thread John Rambo
How do I switch to version 1.7 in git when I have the current repository? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.c

Can't run tests when admin is part of INSTALLED_APPS?

2014-06-24 Thread John Rambo
If I try to run test suites in 1.7 with admin in INSTALLED_APPS, I get this... File "/django/core/management/commands/migrate.py", line 195, in model_installed (opts.auto_created and converter(opts.auto_created._meta.db_table) in tables)) AttributeError: 'bool' object has no attribute '_m

using AWS cloudfront with Django - CSRF failures

2014-06-26 Thread John Briere
ract with? thanks- John -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Getting channels 2 to work

2017-12-01 Thread John Wayne
Hi everyone, I am stuck getting the new channels 2 to a working state. I installed django==2.0rc1, and channels==2.0.x, daphne==2.0.x, asgiref==2.0.x from the git repo channels is enabled inside the settings.py. I also created the asgi.py file in the direcotry of the wsgi.py file acording to t

Re: Getting channels 2 to work

2017-12-04 Thread John Wayne
is snippet application = ProtocolTypeRouter({ "http": URLRouter([ url("^", DjangoViewSystem), ]), But how should the DjangoViewSystem class look like? There is no such file included. John On Friday, December 1, 2017 at 6:22:06 PM UTC+1, Andrew Godwin wrote: >

Error while installing channels

2017-12-21 Thread John Conner
Here's version info : - Django 1.9 - Python 3.5 - trying to install latest version of Channels. The error : running build_ext building 'twisted.test.raiser' extension error: [WinError 2] The system cannot find the file specified Full error message : ClickMe

Re: Convert Excel code to Python

2018-01-09 Thread John Fabiani
There are several libs available that deal with excel. I normally just use xlwt. But, if memory serves, xlwing does something with vba. I've never used xlwing so I might completely wrong. Either way check out all the python libs for excel. Johnf On Tue, Jan 9, 2018 at 4:27 PM, RM T wrote: >

Channels with django signals

2018-02-03 Thread John Wayne
Hi everyone, I am trying to send a channels message from a django signal. The problem ist that the signal function is not async. So I tried to use the AsyncToSync wrapper. But it seems this is not possible as the signal handler is run by a thread and has no event loop. ... self.main_event_

Re: Channels with django signals

2018-02-03 Thread John Wayne
Oh I saw that you fixed it recently. Thank you anyway :) On Sunday, February 4, 2018 at 1:22:58 AM UTC+1, Andrew Godwin wrote: > > Hi John, > > This is fixed in the asgiref master branch, I should be releasing it soon. > > Andrew > > On Sat, Feb 3, 2018 at 4:14 PM, John

How many live websocket connection can django channels handle?

2018-02-13 Thread John Conner
I'm working on a project where a user could have up to 10 websocket open at the same time. 2 of the connections will need to send and receive every min or seconds while the rest are not very intensive(one send and receive every 5min to 10 hour). user base could range from 10,000 to 10,000,000. I

Re: Using other schema in PostgeSQL

2018-04-07 Thread john fabiani`
https://stackoverflow.com/questions/1160598/how-to-use-schemas-in-django?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa Johnf On 04/06/2018 05:28 PM, Michel Vega Fuenzalida wrote: Hello people, I'm using PostgeSQL not using the public schema but a different one named

Cannot find template files for 1.11

2018-04-23 Thread John Wilkinson
'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ] TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS':

Re: Best way to switch from mysql to postgres?

2016-05-11 Thread John Griebel
What is the error you are getting? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email t

Django Developers Wanted (Jersey City, NJ)

2016-07-18 Thread John Vitello
My name is John Vitello and I have exclusive opportunities for Django developers in Jersey City, NJ. I am asking for anyone who knows someone that might be interested to pass around my contract information. Please let me know if you or anyone you know would be interested. I am happy to

Re: Trying to use Django 1.9.5, django_pyodbc, MS SQL Server 2012 on 64bit Windows 7

2016-08-11 Thread John Fabiani
Prove to yourself that the pyodbc connection is working correctly without django. On Wed, Aug 10, 2016 at 6:37 PM, Mike Dewhirst wrote: > On 11/08/2016 5:11 AM, Evan Roberts wrote: > >> I'm struggling to get a project going. I'm new to python and django. >> >> Is django_pyodbc supported on Pytho

javascript translation catalog and horizon

2016-11-28 Thread John Calcote
ed by VSM - I don't really know enough about the entire system in either case to understand what's going on from a 10,000 foot view. Hoping someone out there has dealt with Django and Horizon enough to be able to clue me in. Thanks in advance, John Calcote -- You received this messag

Re: Phone number field in form/ model

2016-12-15 Thread John Fabiani
django-phonenumber-field is expecting a charfield and not a int. Johnf On Thu, Dec 15, 2016 at 5:12 AM, Deep Shah wrote: > I have not tried this out but you can check this- > > https://github.com/stefanfoulis/django-phonenumber-field/ > > > > On Thursday, December 15, 2016 at 1:07:02 AM UTC+5:30

Re: Create models using raw SQL queries

2019-03-28 Thread John Crosby
Cs50 from Harvard do quite a nice YouTube course on this. They start with SQL.queries direct to database and move into flask and.Django. It might be worth a look: https://youtu.be/Eda-NmcE5mQ > On 28 Mar 2019, at 03:46, cameron hochbrg wrote: > > Thank you for your response. I am aware that dj

Models

2019-04-03 Thread John Crosby
Hi all, does any one have any good tips or resources to help me get my head around designing models? I'm currently going through the Django docs and tinkering. Kind regards, John Crosby -- You received this message because you are subscribed to the Google Groups "Django users&

Re: Django - always getting False in form.is_valid()

2019-04-20 Thread John Bagiliko
Drop the html codes here please. Let one try it actually. It's difficult to debug like this. On Sat, Apr 20, 2019, 5:35 PM Sipum Mishra wrote: > Hi Vineeth, > > when I am trying to add 'add testing' through html form for todo list app > getting this above form.is_valid() always False. > > On Sat

How to ask questions on Django

2019-04-28 Thread John Bagiliko
ion to most of of the questions asked here about forms, queries, CRUD activities etc. See it here <https://medium.com/@john.bagiliko/django-crud-web-application-77ef05af1f00?source=friends_link&sk=2f306ca42251f44828bf0ee27405dca0> Best, John -- *Regards* *JOHN BAGILIKO* *MSc. Mathematical

Re: How to pass context value from views.py to getElementById in JavaScript?

2019-05-03 Thread John Bagiliko
Dump this result into json and render it on a page. Use AJAX to get this json data in JavaScript. On Fri, May 3, 2019, 2:41 PM sachinbg sachin wrote: > If u want to use that context in html means for I context ,I.user > name,i.products like that u can use > > On Fri, May 3, 2019, 8:09 PM sachinb

Re: How to pass context value from views.py to getElementById in JavaScript?

2019-05-03 Thread John Bagiliko
import serializers from django.core You can simply use the serializers.serialize method to do this. No need to use Restframework. On Fri, May 3, 2019, 3:25 PM John Bagiliko wrote: > Dump this result into json and render it on a page. Use AJAX to get this > json data in JavaScript. >

Re: Django issue with NoModuleError

2019-05-13 Thread John Bagiliko
Try this in samples/urls.py from django.urls import path from . import views urlpatterns = [ path(''",views.index, name='index'), ] By the way, what is the error you are getting? On Mon, May 13, 2019, 7:14 AM RLM wrote: > Hi Everyone. > I have been away from Django for the past 18 months

Formtools Wizard and Modelform saving data

2019-05-28 Thread Simon John
I am trying to save data to db after all the three from have submited and still getting and error, any work around -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

SAVING DATA IN FORMTOOL WIZARD MODELFORM

2019-05-28 Thread Simon John
Hi Any one can help on how to save data using formtool wizard and Modelform The view of my models and form and views and the error are here -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emai

Re: Novice questions about Pagination syntax and classes in general

2019-06-01 Thread John Bagiliko
I will answer question two. I'm not sure I understand your question 1. The "objects" is query method of every Django model. You use it to query. Contacts should be in your models.py and you should import Contacts in your views.py before you can use it. On Sun, Jun 2, 2019, 1:08 AM drone4four wro

Re: How to fix: Django forms: {{ form }} is not working in a dynamic html page

2019-06-07 Thread Delcy John
i think the error is in form.py,you must put indentation in class On Fri, Jun 7, 2019 at 9:37 AM Joe Reitman wrote: > Interesting problem. It won't display because the form is inside a > for-loop. Django Template language looks at variables inside a for-loop > differently. Basically it looks for

Re: Accessing data from a 30 GB file in json format

2019-07-01 Thread John Bagiliko
What is the error message? On Mon, Jul 1, 2019, 10:07 AM Nibil Ashraf wrote: > Hey, > > I have a file with a size of around 30GB. The file is in json format. I > have to access the data and write that to a csv file. When I tried to do > that with my laptop which has a a RAM of 4GB, I am getting

Re: Accessing data from a 30 GB file in json format

2019-07-01 Thread John Bagiliko
A screenshot may be better On Mon, Jul 1, 2019, 10:10 AM John Bagiliko wrote: > What is the error message? > > On Mon, Jul 1, 2019, 10:07 AM Nibil Ashraf > wrote: > >> Hey, >> >> I have a file with a size of around 30GB. The file is in json format. I >>

Re: Help me fix this chat feature

2019-07-01 Thread John Bagiliko
Yes, use different incognito tabs for different users. On Sun, Jun 30, 2019, 10:51 PM Aldian Fazrihady wrote: > I think if you run multiple users on the same PC, you should use > different browsers, or at least private/incognito mode. > > It is because Django gave one browser session to one use

Connecting to SQL Server

2019-07-03 Thread John Burke
Trying to connect to SQL Server from Django DATABASES = { 'default': { 'ENGINE': 'sql_server.pyodbc', 'NAME': 'dbname', 'HOST': 'hostname', 'PORT': '', 'USER': 'user', 'PASSWORD': 'password', 'OPTIONS': { 'driver': 'ODBC Drive

Connecting to SQL Server

2019-07-03 Thread John Burke
Getting the following error: File "...\venv\lib\site-packages\sql_server\pyodbc\base.py", line 362, in init_connection_state val = cursor.execute('SELECT SYSDATETIME()').fetchone()[0] ValueError: hour must be in 0..23 -- You received this message because you are subscribed to the Google G

Re: Connecting to SQL Server

2019-07-04 Thread John Burke
; jordan.mckes...@epiccharterschools.org > > <http://facebook.com/epiccharterschools> <https://twitter.com/epiccharter> > <https://www.instagram.com/epiccharterschools/> > <https://www.youtube.com/user/EpicCharterSchools> > > > > >

Re: Connecting to SQL Server

2019-07-04 Thread John Burke
For this particular instance, I don't need the port number. On Thu, Jul 4, 2019 at 11:47 AM Joe Reitman wrote: > Don't you need to assign a port number? > > On Wednesday, July 3, 2019 at 6:52:35 PM UTC-5, John Burke wrote: >> >> Trying to connect to SQL Ser

Re: Django 2.2 Media files

2019-07-05 Thread John Bagiliko
Remove the upload_to in the model. On Fri, Jul 5, 2019, 12:55 PM Michał Ratajczak wrote: > Hi, i'm new in Django, I'm trying to configure media files correctly. > > That's in my model.py: > > class Question(models.Model): > description = models.CharField(max_length=200) > image = models.

Re: Django 2.2 Media files

2019-07-05 Thread John Bagiliko
Since you already configured static folder called media in settings.py, if you specifify upload_to='/media', Django will create a folder 'media' inside the media folder. On Fri, Jul 5, 2019, 2:21 PM John Bagiliko wrote: > Remove the upload_to in the model. > >

Re: Django 2.2 Media files

2019-07-06 Thread John Bagiliko
gid/django-users/5613b376-575f-4ab0-bdff-368f0fe8f1cf%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> For more options, visit https://groups.google.com/d/optout. >>> >> -- > You received this message because you are subscribed to the Google

Unable to change db sqllite to mysql

2019-07-11 Thread john samuel
Hi Guys, I've done everything from installing sql,setting up of root and password till xampp server installation and setting the port number correctly with right installation of sqlclient and editing Database in setting as DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME':

Re: Unable to change db sqllite to mysql

2019-07-11 Thread john samuel
ango.db.backends.mysql', > 'NAME': 'DB_NAME', > 'USER': 'DB_USER', > 'PASSWORD': 'DB_PASSWORD', > 'HOST': 'localhost', # Or an IP Address that your DB is hosted on >

Re: Unable to change db sqllite to mysql

2019-07-12 Thread john samuel
; > On Friday, 12 July, 2019, 07:56:33 am IST, Jorge Gimeno < > jlgimen...@gmail.com> wrote: > > > > On Thu, Jul 11, 2019 at 6:55 PM john samuel > wrote: > > Hi shreeram, > > But the fact is that i have changed the port number in xampp server for > mySQL

Re: How to Use readymade theme in django?

2019-07-14 Thread Delcy John
Hi , Dwnload a template ,html page are placed in a template folder and other css,bootstrap,images etc.. are placed in a static folder.Then you must include static folder path in settings page.and url patterns are include urls.py,and finally in html front page load static files,where you specify cs

Re: Issues while creating virtual environment before installing Django

2019-07-17 Thread John P
Give pipenv a try. Simply create the folder your going to use and navigate into that folder. Then use pipenv install django, pipenv shell will load the virtual environment for you. Not sure what's causing the problem but this may make your life simpler. On Wed, Jul 17, 2019, 11:25 AM Mahesh Kum

Issue with Tutorial pt 5 "Fixing the bug"

2017-01-23 Thread John Wall
was_published_recently') list_filter = ['pub_date'] search_fields = ['question_text'] admin.site.register(Question, QuestionAdmin) admin.site.register(Choice) Does anyone have any recommendations as to what my issue might be? Thanks, John -- You receive

Re: Issue with Tutorial pt 5 "Fixing the bug"

2017-01-24 Thread John Wall
ary 2017 08:22:28 John Wall wrote: > > > > > > > > class QuestionAdmin(admin.ModelAdmin): > > > fieldsets = [ > > > > and whoops: > > > class QuestionAdmin(admin.ModelAdmin): > > > > You have 2, sir. > > -- > >

Django Unleashed - use of get_object_or_404 on page 154-155

2017-02-17 Thread John Boyd
Hello, Going through Django Unleashed book right now. Line 12 in blog/views.py page 155 reads: slug=slug shouldn't it be: slug__iexact=slug Best Regards, John. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubs

Timeout when saving model in django admin page

2017-02-21 Thread John, Steffen
Hi! When saving the model over the admin page of Django, a lot of processing is done (in pre_save function) which takes several minutes. After a while I get a timeout, although the process is still running in the background. How can I avoid to get this timeout? Another nice thing would be to s

Re: Timeout when saving model in django admin page

2017-02-21 Thread John, Steffen
done? thanks, Steffen Am Dienstag, den 21.02.2017, 13:54 +0200 schrieb Jani Tiainen: Hi, You probably want to switch to asynchronous handling of your job. Celery is one excellent tool to handle background jobs. On 21.02.2017 11:50, John, Steffen wrote: Hi! When saving the model over the

templatetags for easy to edit content

2017-03-05 Thread John Wieland
he 'create_content' function to execute when running my initialization script. I've also tried re-registering the tags with the same name. Is there a better way to implement the functionality (either the editable content or the initialization process)? Thanks, John -- You received

Re: trouble with setting static for img and css

2017-05-11 Thread John Fabiani
First thanks for responding. Yes there is a website www.pesprograms.com but I'm using the code in the development and it is a virtualenv. The path I provided is in fact the real path (not my 'home'). When I run collectstatic I get none of my static files - actually I'm just looking for favicon.ic

using sensitive_post_parameters to hide password in email report

2017-06-19 Thread John DeAngelis
text which I do not want. I assumed that sensitive_post_params() would hide the password in POST in the email report but it did not. Is there a way to hide the password in the email report? Thank you, John -- You received this message because you are subscribed to the Google Groups

Re: Adding a lookup table

2017-06-28 Thread John Thomas
Could you create a City model and a County model and relate them one County to many Cities? I'm not sure how to populate those tables. As an aside, where do you get your City to County data. I've been meaning to look for that data. Do all cities cleanly break into one county? John

Re: Pre-loading static data into database table

2017-06-29 Thread John Thomas
Hi Rich, 419 is not that many. I'd probably do that via a Python shell. import models.Cities for item in lists_of_lists_of_419 temp = Cities(city+name=item[0], county_name=item[1]) temp.save() John Thomas 310-947-8572 On Thu, Jun 29, 2017 at 11:16 AM, Rich Shepard wrote: >

Django Channels - polling in consumer

2017-07-23 Thread John Byrne
e how I would prevent all my workers from getting tied up in these polling operations, to the detriment of the REST of the app (pun intended ;) ) Thanks! John PS. If it matters, this is not an internet-scale app - it's an intranet app with users numbering in the dozens. -- You received this

Re: Django Channels - polling in consumer

2017-07-23 Thread John Byrne
Thanks for the reply. I hadn't considered a management command, but that's a great idea. I'll definitely consider that. On Sunday, July 23, 2017 at 5:22:58 PM UTC-4, Andrew Godwin wrote: > > Hi John, > > You are right that trying to do polling inside a consumer wil

Channels vs Django-websocket-redis

2017-08-04 Thread John Byrne
I'm trying to evaluate these two Websockets solutions for Django. Has anyone here done compared these? I don't fully understand what the differences between them are. I think the main difference is that Channels can generalize all requests (websocket or request/response) to be handled by channe

Re: Channels vs Django-websocket-redis

2017-08-09 Thread John Byrne
ore than just websockets. HTTP2 and HTTP1.1 are supported. > Chat protocols like slack or irc are possible. > - you can trigger consumers from other consumers, without talking to > websocket. > > On Friday, August 4, 2017 at 1:09:44 PM UTC+3, John Byrne wrote: >> >>

Re: Where is in django-cms venv folder exactly I can find edit and structure panel source code in pycharm IDE?

2020-03-17 Thread John McClain
adef-e5fc-4e48-aaf3-f33f0bb3bf26%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/bc79adef-e5fc-4e48-aaf3-f33f0bb3bf26%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.c

travis sync issue to git with django project

2020-03-28 Thread John McClain
My build keeps failing at this juncture 0.00s$ SECRET_KEY="whatever" ./manage.py test 273/home/travis/.travis/functions: line 109: ./manage.py: Permission denied 274The command "SECRET_KEY="whatever" ./manage.py test" exited with 126. 275 276 277 any ideas?

heroku goddaddy domain config

2020-04-01 Thread John McClain
Hello, I am trying to point my GoDaddy hosted domain to my heroku app but am not getting any love. Trying to get the https version configured Any suggestions? Thanks -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.com -- You received this message because

image not showing on page

2020-04-03 Thread John McClain
html page [image: image.png] [image: image.png] settings.py [image: image.png] any suggestions would be appreciated -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.com -- You received this message because you are subscribed to the Google Groups "D

Re: image not showing on page

2020-04-03 Thread John McClain
genius ;-( On Fri, 3 Apr 2020 at 11:27, Kasper Laudrup wrote: > Hi John, > > On 03/04/2020 12.18, John McClain wrote: > > snap a screenshot of what you are saying > > > > am not getting 404 > > am not getting any error returned at all > > I simply cannot

Re: image not showing on page

2020-04-03 Thread John McClain
ld not have to put up with the likes of you and your comments when I am posting requests for guidance or help (neither should anyone else for that matter) be kind or get lost! On Fri, 3 Apr 2020 at 11:39, Kasper Laudrup wrote: > On 03/04/2020 12.31, John McClain wrote: > > genius ;-( >

Re: image not showing on page

2020-04-03 Thread John McClain
worked Keep in mind this is only a solution for dealing with the mail routing issue as I can use normal django syntax within the app itself. Thanks for your feedback. Cheers, John On Fri, 3 Apr 2020 at 13:04, Kasper Laudrup wrote: > Hi John, > > On 03/04/2020 12.52, John McClain wrote: &g

Re: image not showing on page

2020-04-04 Thread John McClain
Hello Andreas, You are correct that was definitely the problem. Thanks for spotting it. Cheers, John On Fri, 3 Apr 2020 at 15:41, Andréas Kühne wrote: > What I stated earlier is probably your issue: > > You have the following: > style="background-image: img src=&

Re: help with my signup API

2020-04-08 Thread John McClain
CAHLKn71N-V%3Dhg8WpsOdxc-9eMJjEX2BoRdHTo8q1N0H8o84r5w%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.com -- You received this message because you are subscribed to the Google Groups "Dja

Collaborators wanted

2020-04-21 Thread John McClain
ersee all of your efforts and can be used to help you familiarize yourself with the project as it currently exists as well as help you debug your solutions as you go. Strong command of the English language is preferred. Please respond here with your interest -- John McClain

Setting up Stripe Intentions

2020-04-22 Thread John McClain
back to my starting point and am now looking for advice on how to integrate the solution. cheers -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To u

Re: Collaborators wanted

2020-04-24 Thread John McClain
are in the signature. Kind regards, John -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discuss

Re: problem with feed

2020-04-24 Thread John McClain
BNKhg-0bw3g%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAM-7rO0tkdkGF%3DnkdK2DK86MWL9WXMhEDvz%3DDA9%2BNKhg-0bw3g%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.com

Re: App Dev wanted

2020-04-29 Thread John McClain
Arne, I am interested John On Wed, 29 Apr 2020 at 15:08, Arne Bollinger wrote: > Hey, > We came with a project out of a Covid-19 Hackathon that we could not > finish. Now we want to launch as fast as possible as long as people are > still in need of social contact. > http

Re: Issue with Heroku Getting Started

2020-05-15 Thread John McClain
> >> >> Can you type pip freeze into your terminal and copy/paste the output >> here, please? >> >> -Jorge >> > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from th

Re: HOW TO PROTECT SOURCE CODE DEPLOYED TO A REMOTE SERVER

2020-05-15 Thread John McClain
%3DLQ%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAKYSAw2PjNzS0Kutg_-DMvwDqQoTrkWpvjwp7K-6JFR1XZ_%3DLQ%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.com -- You

Re: pip not working

2020-05-15 Thread John McClain
the web visit > https://groups.google.com/d/msgid/django-users/5c0ea322-4bbc-4ad8-a901-5d206fed198d%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/5c0ea322-4bbc-4ad8-a901-5d206fed198d%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- John M

Re: how to use youtube links in my website

2020-05-15 Thread John McClain
ttps://groups.google.com/d/msgid/django-users/96d8272e-7b5e-4e04-94ad-7b80f9a0ed87%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/96d8272e-7b5e-4e04-94ad-7b80f9a0ed87%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- John McClain Cell: 085-1977-823

Re: Issue with Heroku Getting Started

2020-05-16 Thread John McClain
did it work? On Sat, 16 May 2020 at 01:37, Jorge Gimeno wrote: > > > On Fri, May 15, 2020 at 5:27 PM John McClain > wrote: > >> try removing this >> >> django-utils==0.0.2 >> >> from requirements then run again to see next error >> >

Re: HOW TO PROTECT SOURCE CODE DEPLOYED TO A REMOTE SERVER

2020-05-20 Thread John McClain
Hello Sunday, I wonder if you could deploy to git and use one of the licenses there to protect the code. I think they would be bound by the use the license permits. Have you looked at this as a possibility? John On Tue, 19 May 2020 at 02:35, Sunday Iyanu Ajayi wrote: > I get your point but

Parallel or split payment options using paypal

2020-05-27 Thread John McClain
Hello All, Can anyone provide a method to split payments via paypal. I basically want to earn a commission on the sale and pass the balance to the seller through my marketplace. Thanks, John -- John McClain Cell: 085-1977-823 Skype: jmcclain0129 Email: jmcclain0...@gmail.com -- You

Re: Parallel or split payment options using paypal

2020-05-30 Thread John McClain
Due to Covid am not getting any response from PayPal. I have sent many messages On Fri 29 May 2020 at 13:46, Akshat Zala wrote: > Hi John > > I agree with Kasper. > > Regards, > > Akshat > > On Thursday, 28 May 2020 01:31:03 UTC+5:30, Kasper Laudrup wrote: >>

Re: Parallel or split payment options using paypal

2020-05-31 Thread John McClain
find any answers. If youre looking to raise some cash in hurry check out my new crowd funding solution fundgrazing.com. It's not pledged based and generates revenue on the fly if you engage with it. regards.. On Sun, 31 May 2020 at 07:24, CHRISTO KRIEGLER wrote: > Hi, John. > > R

<    5   6   7   8   9   10   11   12   >