Re: Help with Python Django Chat

2024-08-14 Thread Opeoluwa Akinuliola
obviously chat gpt lol On Monday, August 5, 2024 at 1:48:19 PM UTC+1 massimo burlando wrote: > I think you used ChatGPT right? > > On Friday, August 2, 2024 at 3:59:02 PM UTC+2 Tarantula “Menace” wrote: > >> how can one run this code? >> >> On Monday 29 July 2024 at 21:48:36 UTC+2 joey buonocore

Re: Help with Python Django Chat

2024-08-05 Thread massimo burlando
I think you used ChatGPT right? On Friday, August 2, 2024 at 3:59:02 PM UTC+2 Tarantula “Menace” wrote: > how can one run this code? > > On Monday 29 July 2024 at 21:48:36 UTC+2 joey buonocore wrote: > >> Hello everyone! I'm currently developing an app which users can chat with >> eachother on,

Re: Help with Python Django Chat

2024-08-02 Thread Tarantula “Menace”
how can one run this code? On Monday 29 July 2024 at 21:48:36 UTC+2 joey buonocore wrote: > Hello everyone! I'm currently developing an app which users can chat with > eachother on, currently it has a delete feature where you can delete > comments you've created, and currently I need to add a b

Help with Python Django Chat

2024-07-29 Thread joey buonocore
Hello everyone! I'm currently developing an app which users can chat with eachother on, currently it has a delete feature where you can delete comments you've created, and currently I need to add a button which can send files over, and a button which can edit chats which were made. If anyone wa

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-27 Thread Krishnakant Mane
Talking about Ninja. I am actually trying to figure out how I can distribute my crud APIs in seperate python modules (one per model ) and make a package in my app. Then How all the routs can be imported in the project urls.py at once. Any suggestions? Regards. On 7/14/24 21:35, Sam Brown wr

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread ReynardSec
Hello, On Sunday 14 July 2024 at 09:03:38 UTC+2 eric paul wrote: In whatever way possible use the Django ORM for security purposes and also efficiency . Offtopic: There are certain issues worth keeping in mind, even if you are using an ORM: https://www.elttam.com/blog/plormbing-your-django-orm

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread eric paul
According to your scenario an accounting system is a more complex system that requires high performance. It can be written in any language but as the system grows some programming languages will experience performance issues python being one of them take a case like Dropbox which was originally wri

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread Singhal._.paras
Bro , Just go for it ! On Sun, 14 Jul, 2024, 22:58 Krishnakant Mane, wrote: > I am looking into ninja too. > > I guess I may be able to use SQLAlchemy seamlessly with it. > > Regards. > On 7/14/24 21:35, Sam Brown wrote: > > Im sure there are performance metrics out there to prove the ORM will n

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread Krishnakant Mane
I am looking into ninja too. I guess I may be able to use SQLAlchemy seamlessly with it. Regards. On 7/14/24 21:35, Sam Brown wrote: Im sure there are performance metrics out there to prove the ORM will not be the bottleneck. But I’ve never seen it slow things down when I’ve employed a timer

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread Gulshan Yadav
If you use ORM QUERY THEN IT IS VERY EASY TO SOLVE THIS ONE BY USING FOREIGN KEY OR MANY TO MANY RELATIONSHIP AND WHEN IF USER NOT RAGISTER THEN WE NEED TO ADD NON RAGISTER USER UNIQUE KEY FOR IDENTIFICATION AND AMOUNT WHICH ONE TAKE RECIEVE THE MONEY STORED IDENTIFICATION KEY IN PAYMENT TABLE AND

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread Sam Brown
Im sure there are performance metrics out there to prove the ORM will not be the bottleneck. But I’ve never seen it slow things down when I’ve employed a timer on operation Also, ive recently ran into some of the limitations of drf and am looking into moving to an api that can be less coupled with

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread eric paul
In whatever way possible use the Django ORM for security purposes and also efficiency . I won't recommend to use Raw queries if you don't know what you are doing On Sun, Jul 14, 2024, 7:34 AM Enock Deghost wrote: > 🙄 > > On Sun, 14 Jul 2024, 6:15 am Krishnakant Mane, > wrote: > >> Hello. >> >>

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-13 Thread Enock Deghost
🙄 On Sun, 14 Jul 2024, 6:15 am Krishnakant Mane, wrote: > Hello. > > I am seasoned SQLAlchemy user and quite good in node's sequelise ORM. > > But I am new to the one with Django.So here's my situation. > > I am developing an accounting (book keeping ) automation software service. > > So there a

Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-13 Thread Krishnakant Mane
Hello. I am seasoned SQLAlchemy user and quite good in node's sequelise ORM. But I am new to the one with Django.So here's my situation. I am developing an accounting (book keeping ) automation software service. So there are accounting rules (Debit = Dr and credit = Cr) for double entry book

Re: Help deploying to vercel

2024-06-23 Thread ASAMOAH EMMANUEL
rd error... >> >> Try specifying the version of django-allauth in your requirements file, >> then redeploy. Also, please check your Vercel logs carefully, or you can >> try to install the library in a package like this: pip install >> django-allauth -t . this can sometime

Re: Help deploying to vercel

2024-06-23 Thread Gabriel Soler
all > django-allauth -t . this can sometimes help with deploymnt issues by > ensuring all dependencies are available in the project directory > > If it still doesn't work, persists, it might be related to the Lambda > function in Vercel, as it uses AWS infrastructure. In

Re: Help deploying to vercel

2024-06-14 Thread Augusto Domingos
django-allauth -t . this can sometimes help with deploymnt issues by ensuring all dependencies are available in the project directory If it still doesn't work, persists, it might be related to the Lambda function in Vercel, as it uses AWS infrastructure. In that case, you may ne

Help deploying to vercel

2024-06-13 Thread ASAMOAH EMMANUEL
Hi, I'm trying to deploy my django app to vercel and this is the error I'm currently facing. Any help would be greatly appreciated. This Serverless Function has crashed. Your connection is working correctly. Vercel is working correctly. 500: INTERNAL_SERVER_ERRORCode: `FUNCTION_INVOCAT

Re: Help deploying to vercel

2024-06-13 Thread ASAMOAH EMMANUEL
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'inshala.settings') app = get_wsgi_application() Allauth is already installed on vercel. Thanks in advance. On Thu, Jun 13, 2024 at 4:59 PM Augusto Domingos < augustodomingosva...@gmail.com> wrote: > > Looks

Re: Help deploying to vercel

2024-06-13 Thread Augusto Domingos
Looks there's a problem with your module "allauth", have you installed that in your Vercel environment? Try to install that, certify that your vercel.json file have some rules to install your python requirements.txt If have some another question, please, let me know, I will

Re: Help on Creating a Superuser account on render.

2024-04-11 Thread ALINDA Fortunate
Thanks so much for your assistance indeed the issue was I had failed to visualise my data on railway since I am using an external database. A friend helped understand that and now I am able to access my admin panel. Thanks everyone. On Wed, 10 Apr 2024, 19:59 Luis Zárate, wrote: > Maybe somethi

Re: Help on Creating a Superuser account on render.

2024-04-10 Thread Luis Zárate
Maybe something like python manage.py shell -c "from django.contrib.auth.hashers import make_password;from django.contrib.auth.models import User; admin = User(username='username', email='exam...@example.com', password=make_password('password'), is_superuser=True,is_staff=True);admin.save()" El

Re: Help on Creating a Superuser account on render.

2024-04-07 Thread ALINDA Fortunate
It's my external database is postgres on railway. Let me try your opinion and I see. On Sat, 6 Apr 2024, 20:33 Aniket Raj Singh, wrote: > So you have used render to host your application, you might have connected > an external database (postgreSQL or any other) you might have used the > environ

Re: Help on Creating a Superuser account on render.

2024-04-06 Thread Aniket Raj Singh
So you have used render to host your application, you might have connected an external database (postgreSQL or any other) you might have used the environment setup to set the database up with the postgreSQL hosted either on render itself or on a different server, just connect the database with

Help on Creating a Superuser account on render.

2024-04-06 Thread ALINDA Fortunate
Hello I have successfully a django project on render but i have failed to access the admin panel Any idea on how to create a superuser account on a free tier of render Below is my build.sh file #!/usr/bin/env bash # Exit on error set -o errexit # Modify this line as needed for your package man

Re: ANYONE CAN HELP ME

2024-04-03 Thread Miroslav Milic
On Tue, Apr 2, 2024 at 7:20 PM arts maxwell Anderson < arts.mawellanderson@gmail.com> wrote: > hello i have this error , i want to uppload multiple django image > ValueError: FileInput doesn't support uploading multiple files. > any one can help me > >

ANYONE CAN HELP ME

2024-04-02 Thread arts maxwell Anderson
hello i have this error , i want to uppload multiple django image ValueError: FileInput doesn't support uploading multiple files. any one can help me class FormImages(ModelForm): multiple_image= forms.ImageField(widget=forms.FileInput(attrs= { 'multiple': True}))

Re: Help on Django_allauth Login Page

2024-03-08 Thread ALINDA Fortunate
Thank you for your response, okay let me try it On Fri, Mar 8, 2024 at 5:48 PM Muhammad Juwaini Abdul Rahman < juwa...@gmail.com> wrote: > It's part of LoginForm in django_allauth: > https://github.com/pennersr/django-allauth/blob/main/allauth/account/forms.py#L146 > > You can subclass LoginForm

Re: Help on Django_allauth Login Page

2024-03-08 Thread Muhammad Juwaini Abdul Rahman
It's part of LoginForm in django_allauth: https://github.com/pennersr/django-allauth/blob/main/allauth/account/forms.py#L146 You can subclass LoginForm and omit that part. On Fri, 8 Mar 2024 at 22:34, ALINDA Fortunate wrote: > Hello colleagues, I have the following code for my login page using

Help on Django_allauth Login Page

2024-03-08 Thread ALINDA Fortunate
Hello colleagues, I have the following code for my login page using django_allauth but it outputs the *forgot password?* link. How do I edit this? {% extends "_base.html" %} {%load crispy_forms_tags%} {% block title %}Log In{% endblock title %} {% block content %} Log In {% csrf_token%} {{f

Re: Need help in python Django project "online train ticket booking system"

2024-02-22 Thread Daniel Martinez
Hello, what is the problem you are experimenting? Canyou please provide code? On Mon, Feb 19, 2024, 9:21 AM Surya Santhosh wrote: > Need help in python Django project "online train ticket booking system" > > -- > You received this message because you are subscribe

Re: Need help in python Django project "online train ticket booking system"

2024-02-21 Thread Fasila Ali
I am Interested On Mon, 19 Feb 2024, 9:51 pm Surya Santhosh, wrote: > Need help in python Django project "online train ticket booking system" > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > T

Need help in python Django project "online train ticket booking system"

2024-02-19 Thread Surya Santhosh
Need help in python Django project "online train ticket booking system" -- 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 d

Re: Need help setting up my Django environment

2024-02-18 Thread kge...@gmail.com
https://stackoverflow.com/questions/70347099/error-installing-a-django-project-attrributeerror-module-collections-has-no-a > > Supports what Mordecai Etukudo said about version incompatability. > > *Type "help", "copyright", "credits" or "licen

Re: Need help setting up my Django environment

2024-02-18 Thread kge...@gmail.com
Saw this on stack overflow: https://stackoverflow.com/questions/70347099/error-installing-a-django-project-attrributeerror-module-collections-has-no-a Supports what Mordecai Etukudo said about version incompatability. *Type "help", "copyright", "credits" or

Re: Need help setting up my Django environment

2024-02-17 Thread Mordecai Etukudo
Comment you model. Py and the run if you still have the issue not this is to fine how where the issue if from On Sat, Feb 17, 2024, 1:38 PM Brigid Sang wrote: > I'm encoutering the below error, how can I fix this > > Traceback (most recent call last): > File "/home/brigid/.local/bin/django-adm

Need help setting up my Django environment

2024-02-17 Thread Brigid Sang
I'm encoutering the below error, how can I fix this Traceback (most recent call last): File "/home/brigid/.local/bin/django-admin", line 8, in sys.exit(execute_from_command_line()) ^^^ File "/home/brigid/.local/lib/python3.11/site-packages/django/core

Django project website UX: call for help!

2024-02-03 Thread 'Niccolò Mineo' via Django users
Hello everyone, at 20tab we just finished collaborating with the Django Software Foundation to improve the Django project website's accessibility and usability. We now need you to help us understand how involved people are in the Django project and how much they care for good UX. Fill out

help

2023-12-22 Thread Abdoulaye SENE
hello i am using docker. after building, i see this mistake "ERROR: failed to solve: python:3.9-alpine3.13: failed to authorize: failed to fetch oauth token: unexpected status from GET request to h ttps://auth.docker.io/token?scope=repository%3Alibra" -- You received this message because you a

Re: Help with DRF error

2023-12-16 Thread Larry Martell
On Sat, Dec 16, 2023 at 1:10 PM Reddy Tintaya wrote: > Can't you just use > workitem = serializers.PrimaryKeyRelatedField( > queryset=WorkItem.objects.all()) > instead of workitem_id? > No because workitem_id is what is sent in the request. > > On Sat, Dec 16, 2023 at 10:00 AM Larry Martel

Re: Help with DRF error

2023-12-16 Thread Reddy Tintaya
Can't you just use workitem = serializers.PrimaryKeyRelatedField( queryset=WorkItem.objects.all()) instead of workitem_id? On Sat, Dec 16, 2023 at 10:00 AM Larry Martell wrote: > I have a DRF API. It is throwing an error that I have not been able to fix. > > Here is my view and serializer: >

Help with DRF error

2023-12-16 Thread Larry Martell
I have a DRF API. It is throwing an error that I have not been able to fix. Here is my view and serializer: class CreateNotations(CreateAPIView): permission_classes = [IsAuthenticated] serializer_class = NotationListSerializer def post(self, request, *args, **kwargs): return

help

2023-12-15 Thread Abdoulaye SENE
hello forks! i need your help. in my codes i see "extend_schema_view" is not defined. so i see that it is not defined but i do not know in which package it is. @extend_schema_view( list=extend_schema( parameters=[ OpenApiParameter( 

HELP needed in a service-worker in a react django project

2023-10-13 Thread Tejas Vaij
Hello there, I am working on a project where I want to post a blob recorded from RecordRTC to my django server from the service worker but I am not able to get whats wrong with it. Can anyone please help me understand what wrong am I going. Here is the link of stackoverflow question of mine

Re: help me

2023-09-25 Thread Migui Galan
you can try exploring vercel. they can host django website. other than that, try pythonanywhere. best site for hosting django On Sun, Sep 24, 2023 at 9:52 AM FIRDOUS BHAT wrote: > https://blog.back4app.com/top-10-heroku-alternatives/ > > > > > On Sun, Sep 24, 2023 at 12:14 AM Akoo Rahimi > wrot

Re: help me

2023-09-23 Thread FIRDOUS BHAT
https://blog.back4app.com/top-10-heroku-alternatives/ On Sun, Sep 24, 2023 at 12:14 AM Akoo Rahimi wrote: > Hello friends > > Can you introduce me some sites similar to Heroku? > > I just started Django and I want to test my projects on the global server. > > -- > You received this message be

Re: help me

2023-09-23 Thread ASAMOAH EMMANUEL
Try fly.io On Sat, Sep 23, 2023 at 7:17 PM ALINDA Fortunate wrote: > You can as well try render > > +256774339676 > > "If you want to live a happy life, tie it to a goal, not to people or > things." > > A graduate of Bachelors Degree of Science in Computer Science of Gulu > University. > > @For

Re: help me

2023-09-23 Thread ALINDA Fortunate
You can as well try render +256774339676 "If you want to live a happy life, tie it to a goal, not to people or things." A graduate of Bachelors Degree of Science in Computer Science of Gulu University. @FortunateAlinda Passionate about Python Development And Computer related Dynamics On Sat,

Re: help me

2023-09-23 Thread Miracle
Kindly use this link https://www.makeuseof.com/heroku-alternatives-free-full-stack-hosting/ On Sat, 23 Sept 2023, 7:44 pm Akoo Rahimi, wrote: > Hello friends > > Can you introduce me some sites similar to Heroku? > > I just started Django and I want to test my projects on the global server. > >

help me

2023-09-23 Thread Akoo Rahimi
Hello friends Can you introduce me some sites similar to Heroku? I just started Django and I want to test my projects on the global server. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving email

django form validation error massage not showing. please help me out

2023-09-15 Thread Mohammad Shahidullah
models.py class Position(models.Model): title = models.CharField(max_length=50) def __str__(self): return self.title class Department(models.Model): title = models.CharField(max_length=50) def __str__(self): return self.title class Employee(models.Model): fu

Re: ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-09-04 Thread Michal Plsek
gt;> >> I have three models below, but l like to create a Notification System to >> send a message to a User whenever ; >> 1. An object is created in all those models >> 2. An object is modified in all those models >> >> And l would like to add trick that it s

Re: ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-08-31 Thread Andréas Kühne
ollowing data if available in the object ; > 1. the Name of the Object, > 2. the Image of the Object, and > 3. the type of the Object. > > Lastly I would like to add a : > 1. Notification DELETE function, that gives User a way to delete that > Message , not to appear in his or no

errors am getting during running my project any help

2023-08-25 Thread Steven maithya
(en) PS C:\Users\steve.musyoka\Desktop\CRM-master> python manage.py runserver C:\Python311\python.exe: can't open file 'C:\\Users\\steve.musyoka\\Desktop\\CRM-master\\manage.py': [Errno 2] No such file or directory (en) PS C:\Users\steve.musyoka\Desktop\CRM-master> cd (en) PS C:\Users\steve.musy

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread Peter Benjamin Ani
Where are you hosting? On Thu, 24 Aug 2023 at 22:37, ALINDA Fortunate wrote: > Hello family some help i have this error > > Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's > installed and available on your PYTHONPATH environment variable? Did yo

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread ivan harold
Try following these https://www.freecodecamp.org/news/deploying-a-django-app-to-render/ On Friday, August 25, 2023 at 9:00:08 PM UTC+8 Abdulrahman Abbas wrote: > Are you using virtual environment? > > On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate > wrote: > >> Hello fa

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread ivan harold
https://www.freecodecamp.org/news/deploying-a-django-app-to-render/ On Friday, August 25, 2023 at 9:00:08 PM UTC+8 Abdulrahman Abbas wrote: > Are you using virtual environment? > > On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate > wrote: > >> Hello family some help i have th

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread Abdulrahman Abbas
Are you using virtual environment? On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate wrote: > Hello family some help i have this error > > Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's > installed and available on your PYTHONPATH environment variabl

Help on Error while deploying a django app on render.

2023-08-24 Thread ALINDA Fortunate
Hello family some help i have this error Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment? Aug 25 12:28:30 AM ==> Build failed 😞 Y

Re: ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-08-23 Thread ivan harold
of publiction or creation. > > And I would like to pass the following data if available in the object ; > 1. the Name of the Object, > 2. the Image of the Object, and > 3. the type of the Object. > > Lastly I would like to add a : > 1. Notification DELETE function, that give

ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-08-22 Thread Byansi Samuel
ly I would like to add a : 1. Notification DELETE function, that gives User a way to delete that Message , not to appear in his or notification section again. 2. Mark as Read function, that changes the Massage Div Color 3. A notification Barge that displays the UNREAD Messages. Am requesting any

Re: hello forks, i need help

2023-08-17 Thread ivan harold
https://www.w3schools.com/django/django_admin_include_members.php explore the site maybe what you are ooking for is in there check this one. On Thursday, August 17, 2023 at 11:53:00 AM UTC-5 Abdoulaye SENE wrote: > the problem is i don't see users in admin.i only see groups. do not know > why

Re: hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
the problem is i don't see users in admin.i only see groups. do not know why. Le jeu. 17 août 2023 à 16:48, Abdoulaye SENE a écrit : > thanks a lot > > > Le jeu. 17 août 2023 à 16:38, ivan harold a > écrit : > >> https://www.w3schools.com/django/django_admin_create_user.php >> check this one

Re: hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
thanks a lot Le jeu. 17 août 2023 à 16:38, ivan harold a écrit : > https://www.w3schools.com/django/django_admin_create_user.php > check this one out. > > On Thursday, August 17, 2023 at 8:26:29 AM UTC-5 Abdoulaye SENE wrote: > >> i have created a group named adminis. how to create users in the

Re: hello forks, i need help

2023-08-17 Thread ivan harold
https://www.w3schools.com/django/django_admin_create_user.php check this one out. On Thursday, August 17, 2023 at 8:26:29 AM UTC-5 Abdoulaye SENE wrote: > i have created a group named adminis. how to create users in the group > using django admin > > -- You received this message because you a

hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
i have created a group named adminis. how to create users in the group using django admin -- 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.

Re: final project in django - help

2023-08-16 Thread Migui Galan
im glad to help, whats the issue you are facing? you can send me a gmeet link for the meeting On Wed, Aug 16, 2023 at 11:31 PM kipkoech chesir wrote: > yes, we can, just clarify issues and problems. > > > On Wednesday, August 9, 2023 at 7:23:27 PM UTC+3 ivan harold wrote: > >

Re: final project in django - help

2023-08-16 Thread kipkoech chesir
yes, we can, just clarify issues and problems. On Wednesday, August 9, 2023 at 7:23:27 PM UTC+3 ivan harold wrote: > what help do you need? > Can you give any specifics so we can understand? > > On Sunday, July 16, 2023 at 10:40:09 PM UTC+8 Jun Say wrote: > >> >> &

Re: how to solve please help me

2023-08-10 Thread Kani Sbt
i solved that , i deleted all the databases and makemigrations and migrate and all was done good On Thu, 10 Aug 2023 at 18:12, Mz Gz wrote: > Maybe you referenced another model in your model and the referenced model > is no more there or its name changed > > On Thu, 10 Aug 2023, 2:10 pm Kani Sbt

Re: how to solve please help me

2023-08-10 Thread Mz Gz
Maybe you referenced another model in your model and the referenced model is no more there or its name changed On Thu, 10 Aug 2023, 2:10 pm Kani Sbt, wrote: > django.db.migrations.exceptions.InconsistentMigrationHistory: Migration > admin.0001_initial is applied before its dependency lottyapp.00

how to solve please help me

2023-08-10 Thread Kani Sbt
django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency lottyapp.0001_initial on database 'default'. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this g

Re: any any help me to solve below error in my django project

2023-08-07 Thread Brian Gitau
change the naming of the urls like for the login from "login" to something like "login_page" because you are causing a clash in the views.py code since you are importing login and your url name is the same rename the logout too hope that helps On Mon, Aug 7, 2023 at 2:40 PM AKHIL KORE wrot

any any help me to solve below error in my django project

2023-08-07 Thread AKHIL KORE
I got the error in my below existings django files. Please solve this error and check all below files code. File "C:\django2pm\myvenv\lib\site-packages\django\urls\resolvers.py", line 725, in url_patterns raise ImproperlyConfigured(msg.format(name=self.urlconf_name)) from e django.core.exception

When i Host i ger=t this error ,i couldn't solve it help me please

2023-08-01 Thread Kani Sbt
File "/home/sbthrmodule/public_html/venv/lib/python3.11/site-packages/MySQLdb/__init__.py", line 121, in Connect return Connection(*args, **kwargs) ^^^ File "/home/sbthrmodule/public_html/venv/lib/python3.11/site-packages/MySQLdb/connections.py", lin

Re: Looking to help recruiters and job candidates

2023-07-22 Thread utibe solomon
Although Im still in school but I'm ready to work On Sat, Jul 22, 2023, 2:43 PM Dennis Kinanga wrote: > Go on > > On Sat, Jul 22, 2023, 13:12 marvelous wrote: > >> Hello sir I have some sufficient knowledge of back end and im available >> to help you for any pric

Re: Looking to help recruiters and job candidates

2023-07-22 Thread utibe solomon
;> Hello sir I have some sufficient knowledge of back end and im available >> to help you for any price >> >> >> >> >> >> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for >> Windows >> >> >> >> *Fr

Re: Looking to help recruiters and job candidates

2023-07-22 Thread Dennis Kinanga
Go on On Sat, Jul 22, 2023, 13:12 marvelous wrote: > Hello sir I have some sufficient knowledge of back end and im available > to help you for any price > > > > > > Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for > Windows > > >

RE: Looking to help recruiters and job candidates

2023-07-22 Thread marvelous
 Hello sir I have some sufficient knowledge of back end and im available to help you for any price  Sent from Mail for Windows From: Saurav SharmaSent: Tuesday, June 27, 2023 8:35 PMTo: Django usersSubject: Re: Looking to help recruiters and job candidates So what you plan for this platform..?On

Re: final project in django - help

2023-07-16 Thread Jun Say
://bluemail.me> >> On Jul 16, 2023, at 03:47, Alexandru - Gabriel Ionicescu < >> ionicescu.alexandrugabr...@gmail.com> wrote: >>> >>> Hello, >>> >>> who can help me with the final project in django? in a week I have to >>> hand it over and

Re: final project in django - help

2023-07-16 Thread Jun Say
lt; > ionicescu.alexandrugabr...@gmail.com> wrote: >> >> Hello, >> >> who can help me with the final project in django? in a week I have to >> hand it over and I got into trouble with it. I can't access github. >> Please help me. >> >> Tnx, >

Re: final project in django - help

2023-07-16 Thread Brian Carey
A little more information please. What can't you do and what errors do you get? ⁣Get BlueMail for Android ​ On Jul 16, 2023, 03:47, at 03:47, Alexandru - Gabriel Ionicescu wrote: >Hello, > >who can help me with the final project in django? in a week I have to >hand >it

final project in django - help

2023-07-16 Thread Alexandru - Gabriel Ionicescu
Hello, who can help me with the final project in django? in a week I have to hand it over and I got into trouble with it. I can't access github. Please help me. Tnx, Alex -- You received this message because you are subscribed to the Google Groups "Django users" group. To u

Re: need help

2023-07-05 Thread DieHardMan 300
>> On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE >> wrote: >> >>> thanks for the help. but after writing ["*"] i see Server Error (500) >>> >>> Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : >>> >>>> S

Re: need help

2023-07-05 Thread Bouka Largent
. > > On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE > wrote: > >> thanks for the help. but after writing ["*"] i see Server Error (500) >> >> Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : >> >>> Sorry I meant turn &g

Re: need help

2023-07-04 Thread Theresa Taye
Hello, You see a Server error because Debug is set to False. To know what the actual error is, turn it back to True. Then when you are done debugging you can change that especially if you are pushing to production. On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE wrote: > thanks for the help.

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
for the help. but after writing ["*"] i see Server Error (500) > > Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : > >> Sorry I meant turn >> DEBUG = True >> >> >> >> >> Best Regards, >> >> Albert

Re: need help

2023-07-04 Thread Abdoulaye SENE
thanks for the help. but after writing ["*"] i see Server Error (500) Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : > Sorry I meant turn > DEBUG = True > > > > > Best Regards, > > Albert Ashaba Aheebwa > +256 781 435857 <

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
mandError: You must set >> settings.ALLOWED_HOSTS if DEBUG is False." >> i wonder if someone can help me to fix it. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To uns

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
ming, i see this problem : " CommandError: You must set > settings.ALLOWED_HOSTS if DEBUG is False." > i wonder if someone can help me to fix it. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsu

need help

2023-07-04 Thread Abdoulaye SENE
hello, while programming, i see this problem : " CommandError: You must set settings.ALLOWED_HOSTS if DEBUG is False." i wonder if someone can help me to fix it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubsc

Re: Looking to help recruiters and job candidates

2023-06-27 Thread Saurav Sharma
So what you plan for this platform..? On Tuesday, June 27, 2023 at 12:18:46 AM UTC+5:30 Andrew Wang wrote: > Hey Djangonaughts! I'm looking to build a tool for recruiters to get > candidates interviews faster by streamlining recruiters' processes. Would > greatly appreciate any connects. Also,

Re: Looking to help recruiters and job candidates

2023-06-26 Thread Raphael Polanco
Hello, Django-Users. Just a reminder that disclosing personal information can expose you to real-world risks. Divulging even small amounts of personal information in an unsecured forum may render you vulnerable to identity theft, financial attacks, and even online grooming if you share it with ind

Looking to help recruiters and job candidates

2023-06-26 Thread Andrew Wang
Hey Djangonaughts! I'm looking to build a tool for recruiters to get candidates interviews faster by streamlining recruiters' processes. Would greatly appreciate any connects. Also, if you're looking for a software engineering role (with at least 1 prior company experience for validation), woul

Re: Can any one help me with this question

2023-06-22 Thread Annadatha Rao
Hi, Can you please recommend any ui components to use with django, like graphs, datagrid etc. With regards, Annadatha. On Sun, Jun 18, 2023, 8:59 PM Annadatha Rao wrote: > Dear All, > > Do DJANGO migrations work with Oracle 11.2 with python-oracle db driver, > please show me an example if wor

Re: Can any one help me with this question

2023-06-22 Thread Annadatha Rao
ble but it's important to understand the implication and trade-offs. > > Django migrations provide a way to manage and apply changes to your > database schema over time, allowing for version control and easy deployment > of database changes. They help maintain data integrity and

Re: Can any one help me with this question

2023-06-22 Thread Praveen Chaudhary
pply changes to your database schema over time, allowing for version control and easy deployment of database changes. They help maintain data integrity and make it easier to collaborate with other developers. However, if you prefer not to use migrations, you can disable them in django

Re: Can any one help me with this question

2023-06-22 Thread Annadatha Rao
Hi Prabin, Thank you, it worked when I upgraded db to 21c (oracle), thank you for your help. Small question, can I work without migrations, some have I hate migrations being a legacy programmer from (Cobol days). I value your opinion. Thank you, ANNADATHA. On Sun, Jun 18, 2023 at 9:19 PM

Re: Can any one help me with this question

2023-06-18 Thread Annadatha Rao
Thank you very much praveen, I will try and let you know. Annadatja On Sun, Jun 18, 2023, 9:19 PM Praveen Chaudhary wrote: > Yes, Django migrations can work with Oracle 11.2 using the python-oracle > database driver. However, it's important to note that the python-oracle > package is not an

Re: Can any one help me with this question

2023-06-18 Thread Praveen Chaudhary
Yes, Django migrations can work with Oracle 11.2 using the python-oracle database driver. However, it's important to note that the python-oracle package is not an official Oracle-provided driver. The official driver is called cx_Oracle, which is widely used for connecting Django to Oracle databases

Can any one help me with this question

2023-06-18 Thread Annadatha Rao
Dear All, Do DJANGO migrations work with Oracle 11.2 with python-oracle db driver, please show me an example if works. Thank you for your support, Annadatha. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and st

  1   2   3   4   5   6   7   8   9   10   >