websites building

2019-03-05 Thread Kipkirui Caleb
After setting up Django and the virtual environment what do i need to build website -- 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...@go

Re: websites building

2019-03-05 Thread Cartis Coding Hive
Basically you will need to run command "django-admin startproject " on your command line. Navigate into that directory and run another command "python manage.py startapp ". After that run "python manage.py runserver" , open your browser and type the url that u get from django server on the command

Re: websites building

2019-03-05 Thread A MARAH
Great question , nice answer , I copy it to my post-it window :) Le mar. 5 mars 2019 à 12:27, Cartis Coding Hive a écrit : > Basically you will need to run command "django-admin startproject name>" on your command line. Navigate into that directory and run another > command "python manage.py st

Re: Installing pdftotext library on heroku

2019-03-05 Thread joelryan2k
I'm curious about this, too. I've been using docker containers on heroku to avoid potential issues like this. On Wednesday, January 23, 2019 at 7:20:03 AM UTC-5, Joel Mathew wrote: > > pdftotext library is a requirement in requirements.txt. While trying to > push to heroku, I get the following e

Re: Installing pdftotext library on heroku

2019-03-05 Thread Joel Mathew
This was solved after a user helped me out on StackOverflow. The solution is to use build packs. https://help.heroku.com/IYRYW6VB/how-do-i-install-additional-software-packages-that-my-application-requires Sincerely yours, Joel G Mathew On Tue, 5 Mar 2019 at 21:02, joelryan2k wrote: > I'm c

How can I make users login to my site with facebook/twitter/google?

2019-03-05 Thread Sandip Nath
i want users to my site to log log in with facebook, twitter, google. While the development server supports only http fb/twitter/google expects https. What to do? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group a

Re: How can I make users login to my site with facebook/twitter/google?

2019-03-05 Thread vineeth sagar
You can use django social auth. https://python-social-auth-docs.readthedocs.io/en/latest/configuration/django.html If you just want to learn. Look up Oauth2 and then use developer documentation to implement login with django. On Tue, 5 Mar, 2019, 22:49 Sandip Nath, wrote: > i want users to m

How to acheive search auditlog through Django auditlog package

2019-03-05 Thread desousa01071997
In django auditlog Create,Update and Delete is working fine for me.For search I try to customize the given default package. In that package they are mentioned The valid actions are :py:attr:`Action.CREATE`, :py:attr:`Action.UPDATE` and :py:attr:`Action.DELETE`.though I have tried but I am unabl

Re: websites building

2019-03-05 Thread Thomas POKAM
And Usually, working on your computer, the address to connect to in your browser will be http://127.0.0.1:8000 or you can  use but http://localhost:8000 . The result on the page will be a welcomming page to tells you that you successfully setup your environment et you first app. After this you

Re: websites building

2019-03-05 Thread Kipkirui Caleb
Thank you On Tue, 5 Mar 2019, 15:27 Cartis Coding Hive Basically you will need to run command "django-admin startproject name>" on your command line. Navigate into that directory and run another > command "python manage.py startapp ". After that run "python > manage.py runserver" , open your bro

Django 2 - migrating to Mysql from sqlite issues

2019-03-05 Thread Pedram Badakhchani
Hi All, I have a problem with the source code provided on the associated git hub pages: https://github.com/PacktPublishing/Django-2-by-Example After downloading the source files, and setting up the chapter 1 example locally, using the default sqlite database everything works as expected. Howev

Hi all

2019-03-05 Thread lakshmyyreddy
how can i redirect to Login.html page -- 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...@googlegroups.com. To post to this group, send e

Re: Hi all

2019-03-05 Thread Gil Obradors
With httpresoponseredirect! https://docs.djangoproject.com/en/2.1/ref/request-response/#httpresponse-subclasses Missatge de l'adreça del dia dt., 5 de març 2019 a les 19:31: > how can i redirect to Login.html page > > -- > You received this message because you are subscribed to the Google Group

[no subject]

2019-03-05 Thread Harryxon Ndegwa
Hae everyone Can anyone recommend a django resource to build an online payment site like paypal. Thankyou -- 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

Re: Hi all

2019-03-05 Thread Sai Vinay Nelluri
Did you assigned an url for that view? Try doing so and run server and go to the assigned url. On Wed, 6 Mar 2019, 00:02 , wrote: > how can i redirect to Login.html page > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe fr

Re: Django 1.11: AttributeError: 'module' object has no attribute 'setup_environ'

2019-03-05 Thread Chi Shiek
Also failing in local dev_appserver. It seemed to work for a very short time (couple of queries) and then it stopped with the same error. Gave up and reverting back to 1.4 (which is what app engine seems to recommend - 1.4 or 1.11). On Friday, 1 March 2019 08:29:42 UTC+11, Chi Shiek wrote: > >

Re: Hi all

2019-03-05 Thread Lakshmi Reddy
thanq On Wed, 6 Mar 2019 at 07:37, Sai Vinay Nelluri wrote: > Did you assigned an url for that view? > Try doing so and run server and go to the assigned url. > > On Wed, 6 Mar 2019, 00:02 , wrote: > >> how can i redirect to Login.html page >> >> -- >> You received this message because you are

Hiii all,

2019-03-05 Thread lakshmyyreddy
*By default SQLite file was creating I don't want to use that and how can I connect with MYSQL database* -- 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-

Re: Providing help on a website (basic CMS for on-site site documentation)

2019-03-05 Thread Derek
Bernd Data-driven sites, such as the ones that Django is very good at developing may have one or two "about" type pages but they do not typically do have "a pile" of other flat pages. Such websites are usually not developed in Django but rather in a CMS-type application. Unfortunately, yo

Re: Hiii all,

2019-03-05 Thread Omar Abou Mrad
Did you go through the official documentation? https://docs.djangoproject.com/en/2.1/ref/databases/#connecting-to-the-database On Wed, Mar 6, 2019 at 8:12 AM wrote: > *By default SQLite file was creating I don't want to use that and how can > I connect with MYSQL database* > > -- > You received