Re: Problem with running Django with nginx and uwsgi in Ubuntu

2019-07-26 Thread Kean Dumba
Thanks Aldian, The community have reached out to me with thoughts, as well as guidance, I.e. django for girls, django forums and github These resources have made a significant difference, things are working and I’m slowly learning. the community are welcoming, knowledgable, helpful and patient,

Cant create venv

2019-07-28 Thread Kean Dumba
Hi, I was writing some code in sublime text for my django app. and my python session suspended after migrate. now i'm not able to run django or venv, the error below is what i receive. keans-air:project ProductionEnv$ python3 -m venv project dyld: Library not loaded: @executable_path/../.Python

Re: Document flow between parties

2019-08-01 Thread Kean Dumba
Hi Mike, Thanks you for the direction. II’m new to django and python, So will have to read-up on how to utilise this resource, before Iearning and applying. As a newbie, I’m really enjoying my journey in programming, Best, K On Thu, 1 Aug 2019 at 07:14, Mike Dewhirst wrote: > On 1/08/2019 1:

Re: tinymce no module exists

2019-08-04 Thread Kean Dumba
Hi Sam, Thanks added tinymce to apps as recommended, but still getting the same error Best, K On Sun, 4 Aug 2019 at 15:06, Sam W wrote: > Add it to the installed apps > > INSTALLED_APPS = ( > ... > 'tinymce', > ) > > -- > You received this message because you are subscribed to the Go

Re: Exception value name is not defined

2019-08-16 Thread Kean Dumba
Hi N’BE, The github code you provided worked. I now see all the records. Thank you for the help. Best, K On Thu, 15 Aug 2019 at 22:14, N'BE SORO wrote: > https://github.com/Soro08/django_help/blob/master/README.md > > Le jeu. 15 août 2019 à 22:54, N'BE SORO a écrit : > >> This is normal in

Re: AttributeError 'QuerySet' object has no attribute '_meta'

2019-08-18 Thread Kean Dumba
Ok thanks is there a way to call all objects, as this is more user friendly and efficient when potentially editing many object fields? On Sun, 18 Aug 2019 at 18:05, Daniel Roseman wrote: > You can't pass *all* the objects to the form. You have to get the specific > one you want to edit and pass

Re: page not found but url exists

2019-08-26 Thread Kean Dumba
Tried this with print request, However it didn’t improve the issue. It can’t be a redirect issue, as it’s not even finding the first instance of the url which is GET action. The redirect is only actionable after on page actions I.e. user register Name, email etc. Are their any other root causes t