skip to Main Content

Redis – task receive but doesn't excute

I'm learning Django. recently I tried to use celery. the problem that I'm facing with it is tasks are receiving but they don't execute. settings.py: # Celery application definition CELERY_BROKER_URL = 'redis://localhost:6379' CELERY_RESULT_BACKEND = 'redis://localhost:6379' CELERY_ACCEPT_CONTENT = ['application/json'] CELERY_TASK_SERIALIZER =…

VIEW QUESTION

Run Apache with mod_wsgi and django

Can't start server using Apache + Django OS: MacOS Catalina Apache: 2.4.43 Python: 3.8 Django: 3.0.7 Used by Apache from Brew. mod_wsgi installed via pip. The application is created through the standard command django-admin startproject project_temp The application starts when…

VIEW QUESTION

Ajax returning `none` in django – Jquery ajax

I Have this form in a table with two button. Code: index.html <form action="{% url 'Prediction' %}" method="post"> {% csrf_token %} <table class="table table-striped table-dark" cellspacing="0"> <thead class="bg-info"> <tr> <th>Company's Symbol</th> <th>Current Price</th> <th>View Current chart</th> <th>Action</th> </tr> </thead> <tbody>…

VIEW QUESTION

Wrong redirection of url in django – Jquery ajax

Updated Question: Wrong redirection of URL in Django. I have this: views.py. def graph(request): if request.method == 'POST' and 'text' in request.POST: print("testing....") print(request.POST.get('text')) name = request.POST.get('text') context = { 'name': name, } print(context) return render(request, 'StockPrediction/chart.html', context) else: return…

VIEW QUESTION
Back To Top
Search