hosting

Python Discord Bot on Heroku doesn't work

Python Discord Bot on Heroku doesn't work Question: I deployed Discord on Heroku successfully, but it still doesn’t work. It runs fine locally, but I can’t get response from Heroku hosted variant. Here’s Github repository: https://github.com/MidnightSonor/malifaux_discord_bot. Here’s runtime log. 2022-10-13T12:44:01.000000+00:00 app[api]: Build started by user [email protected] 2022-10-13T12:44:22.188723+00:00 app[api]: Release v18 created by user [email protected] 2022-10-13T12:44:22.188723+00:00 …

Total answers: 1

smtplib.SMTPServerDisconnected: Connection unexpectedly closed

smtplib.SMTPServerDisconnected: Connection unexpectedly closed Question: i am trying to execute the following code on terminal with django.core.mail send_mail send_mail(‘some title’,’some text’,’[email protected]’,[‘[email protected]’]) but after execution the console is showing this error Traceback (most recent call last): File "<console>", line 1, in <module> File "/home/adjtlikp/virtualenv/globalit-web/3.7/lib/python3.7/site-packages/django/core/mail/__init__.py", line 61, in send_mail return mail.send() File "/home/adjtlikp/virtualenv/globalit-web/3.7/lib/python3.7/site-packages/django/core/mail/message.py", line 284, in send …

Total answers: 2

multiple django sites with apache & mod_wsgi

multiple django sites with apache & mod_wsgi Question: I want to host several sites with under the same server which uses Debian 5, say I have site1, site2 and site3, and assume my ip is 155.55.55.1: site1: 155.55.55.1:80 , script at /opt/django/site1/ site2: 155.55.55.1:8080, script at /opt/django/site2/ site3: 155.55.55.1:8090, script at /opt/django/site3/ Here is my …

Total answers: 2

Cleanest & Fastest server setup for Django

Cleanest & Fastest server setup for Django Question: I’m about to deploy a mediumsized site powered by Django. I have a dedicated Ubuntu Server. I’m really confused over which serversoftware to use. So i thought to myself: why not ask stackoverflow. What i’m looking for is: Easy to set up Fast and easy on resources …

Total answers: 13