Thanks

2020-03-14 Thread MUGOYA DIHFAHSIH
Hello Team my Name is Mugoya Dihfahsih form Uganda, am advance in Django though software development is not so much prioritized here in Uganda. Thank You for your contributions towards open source threading of python. -- You received this message because you are subscribed to the Google Groups

Django Saving a form with Imagefield on shared host

2020-06-14 Thread MUGOYA DIHFAHSIH
I am working on django project and now i have deployed it with Namecheap When i submit a form that does not have an ImageField, the form submits successfully on the shared host but when i submit a form with one of the fields ImageField, it raises 404 error. but on the localhost, the forms work pe

Re: get() missing 1 required positional argument: 'id'

2020-06-16 Thread MUGOYA DIHFAHSIH
Hey amit, in your views you are getting id that you didn't pass in the url in your url.py path('home/(?P\d+)/',views.EmployeeCBV.as_view(),name='home'), On Wednesday, 17 June 2020 07:09:06 UTC+3, amit wrote: > > did not work > > views.py > > class EmployeeCBV(View): > def get(self,request,

Re: Django Saving a form with Imagefield on shared host

2020-06-16 Thread MUGOYA DIHFAHSIH
Hey Kelvin thanks for your esteemed reply, i specified the media folder but i think there is something to do with apache and mod_wsgi so as to serve the static urls and the media files On Sunday, 14 June 2020 16:46:39 UTC+3, MUGOYA DIHFAHSIH wrote: > > I am working on django project and

Re: Django Saving a form with Imagefield on shared host

2020-06-17 Thread MUGOYA DIHFAHSIH
mage-file-with-base64 > > > > Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for > Windows 10 > > > > *From: *MUGOYA DIHFAHSIH > *Sent: *14 June 2020 19:15 > *To: *Django users > *Subject: *Django Saving a form with Imagefield on shared ho

Re: Django Uploaded images not displayed in production

2020-06-21 Thread MUGOYA DIHFAHSIH
Actually me too i have the same problem, i have deployed django web app on a shared host with apache linux server, and am stuck on how to serve media files, static files like js, css, and static images not from database load well. But the problem is that when i submit a form that has an imagefield

Re: Django Uploaded images not displayed in production

2020-06-22 Thread MUGOYA DIHFAHSIH
the problem. My Nginx server was only serving static > files but not media ones, I have probably forgot about it. > My Nginx settings were: > The only thing I had to do is add a location for the media folder: > > > @MUGOYA DIHFAHSIH > At the begging of setting the server I also used

Re: randomizing objects in the view with pagination

2020-07-12 Thread MUGOYA DIHFAHSIH
Am anxiously waiting for the answer to this question cos i would like to do the same for my django web app On Sun, Jul 12, 2020, 19:46 John McClain wrote: > I have a marketplace with many sellers selling the same 3 products in > various values. In all the are 18 product type for sell on the plat

Re: Error in sending mail

2020-07-25 Thread MUGOYA DIHFAHSIH
i think it is repeating it cos the email you put in the settings.py is the same email you used for clients to send to contact you through. What i mean is a person contacting you sends the email to rubymoti...@gmail.com and it is the same email you used i the settings.py to permit django app send em

Re: help me

2020-07-26 Thread MUGOYA DIHFAHSIH
if you could translate the error in Enl=glish, maybe we could be of help On Mon, 27 Jul 2020 at 03:08, Deborah wrote: > bonsoir > > je suis bloquée avec -ça je ne sais pas quoi faire > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To u

Re: Django Community Survey

2020-07-29 Thread MUGOYA DIHFAHSIH
already taken the survey, thanks for the link, it is a best way django can improve the future of our django. On Wed, 29 Jul 2020 at 19:49, Miracle wrote: > https://twitter.com/djangoproject/status/1288488760741683201?s=09 > > > Django 2020 Community survey > > -- > You received this message beca

Re: error at deployment

2020-08-23 Thread MUGOYA DIHFAHSIH
You are missing python manage.py collectstatic, this is used to copy your static files to public fold so that they can be served by the server . On Sun, Aug 23, 2020, 02:14 Amresh Giri wrote: > Check logs bro. You'll know what went wrong and where. > > On Sun, Aug 23, 2020, 3:45 AM Sayur Patel

Re: error at deployment

2020-08-23 Thread MUGOYA DIHFAHSIH
Also that error comes about if you didn't create well the python application like maybe you missed the application root, or you didn't replace the code in your wsgi.py with this line. from myproject import application On Sun, Aug 23, 2020, 22:49 MUGOYA DIHFAHSIH wrote: > Yo

Re: Sources for learning django

2020-08-23 Thread MUGOYA DIHFAHSIH
All resources are good for learning django but one and the only best place to learn everything in it's depth is to use the documentation of the framework. Django documentation is one of the best of all web frameworks, it has everything that you need to learn django. Also the second best source to

Re: can anyone help me

2020-08-29 Thread MUGOYA DIHFAHSIH
On your imagefield you forgot to add upload_to="folder_inside_your_media_folder" On Sat, Aug 29, 2020, 19:48 allaberdi...@gmail.com < allaberdi16yazha...@gmail.com> wrote: > I can upload images from django admin panel but cannot to do same thing > with django form , it saves any text but did not

Re: Static files not work

2020-10-01 Thread MUGOYA DIHFAHSIH
instead of loading staticfiles you use {{ load static}} On Thu, 1 Oct 2020 at 15:23, kkwaq...@gmail.com wrote: > *Error* > > *[image: 1.jpg]* > > *Error line number 2* > > *[image: 2.jpg]* > > > *settingspy* > > *[image: 3.jpg]* > > *html file* > > *[image: 4.jpg]* > > -- > You received this mes

Re: Static files not work

2020-10-02 Thread MUGOYA DIHFAHSIH
To become an expert in django is very simple, practice django documentation regularly as you work on real projects On Thu, Oct 1, 2020, 16:10 waqar khan wrote: > Thank you bro. > I am fresher , > How to expert django framework any tips .. > > On Thu, Oct 1, 2020 at 5:58 PM M

Periodic Execution of django functions or tasks

2020-10-19 Thread MUGOYA DIHFAHSIH
Hello fellow django developers, i am working on a web app in which reports are archived in the database at the end of every month automatically, i have searched on internet and many folks are suggesting celery which i have tried but not fruitful, is there any other library i use to accomplish this.

Payments

2021-02-11 Thread MUGOYA DIHFAHSIH
Hey djangonistas, Currently i have implemented an ecommerce site using the django-oscar package and everything is working perfectly. I want to include a payment module using the visa powered card option, i would have gone with paypal but it is not supported in my country. Am requesting for any su

Re: Payments

2021-02-11 Thread MUGOYA DIHFAHSIH
idealy i want to use visa, ineed help on how to integrate it into the payment module. Thanks... but MPESA is from mobile phone to another phone transaction(mobile money). On Thu, 11 Feb 2021 at 19:21, o1bigtenor wrote: > On Thu, Feb 11, 2021 at 8:12 AM Joseph Mulingwa Kithome > wrote: > > > > M

Re: Best and affordable payment gateway for shopping carts

2021-03-24 Thread MUGOYA DIHFAHSIH
gt; https://groups.google.com/d/msgid/django-users/31d10a80-394a-450b-a127-4798adde357dn%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/31d10a80-394a-450b-a127-4798adde357dn%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Mugoya Dihfahsih So

Re: setingup and starting a Django server

2021-04-14 Thread MUGOYA DIHFAHSIH
s://groups.google.com/d/msgid/django-users/CAJTCr6HPhRP%3DxZO%2BNbdVMMmC1FMqMqs5OeBfNdDTHF%3D4qyPC8A%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- Mugoya Dihfahsih Software Engineer Kampala, Uganda Whatsapp: +256 751612792 Profile: *dihfahsih1.github.io/ <http://dihf

Re: Run Any Python Project

2021-08-22 Thread MUGOYA DIHFAHSIH
nd an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/a55ddcee-0da8-c193-0d0b-8b187585cbec%40stacktrace.dk > . > -- Mugoya Dihfahsih Software Engineer Kampala, Uganda Whatsapp: +2

Re: Need to volunteer in Django project-as a beginner

2021-08-31 Thread MUGOYA DIHFAHSIH
n > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAG3GEnyi985Q%3DO3xuS-dFuA_4zh%3DNdHJTazNBfXK_hQvjhBV4Q%40mail.gmail.com > . > -- Mugoya Dihfahsih Software Engineer Kampala,

Re: permissions mapping

2021-09-07 Thread MUGOYA DIHFAHSIH
e9-99a0-3da7c6a0e323n%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/8a2e2746-5945-42e9-99a0-3da7c6a0e323n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Mugoya Dihfahsih Software Engineer Kampala, Uganda Whatsapp: +256 751612792 Prof