Re: Django site as SOAP endpoint

2021-01-31 Thread Xavier Ordoquy
Hi Fenrir, You may give Spyne (http://spyne.io/) a try. It is a RPC framework that can handle SOAP requests and has a Django integration. Spyne has a couple of drawbacks - IMHO it tries to do too any things and may be somewhat complex - but it does the job. Hopes this will help, Xavier O. Le d

Re: Django site as SOAP endpoint

2021-01-31 Thread Ryan Nowakowski
On January 31, 2021 1:44:46 AM CST, Fenrir Sivar wrote: >I’m working on a project where one of the remote parties requires us to >serve a SOAP api. I have plenty experience with DRF, but only found >soap >client examples (using The ’zeep’ module: zeep==soap in Dutch) which I >use >to call the

Django site as SOAP endpoint

2021-01-30 Thread Fenrir Sivar
I’m working on a project where one of the remote parties requires us to serve a SOAP api. I have plenty experience with DRF, but only found soap client examples (using The ’zeep’ module: zeep==soap in Dutch) which I use to call the SOAP api from the other party . There is django-soap-server but th

Re: How to track changes changes, deletions and creations of records on django site

2020-07-28 Thread Ramez Ashraf
Also Check out this https://github.com/etianen/django-reversion/ On Monday, July 27, 2020 at 5:30:12 PM UTC+2, Hector Berrones wrote: > > Hi, Thanks for reading me, does anyone can advice to me about how can have > record of changes, deletions and creations on a django app, > I was trying creati

Re: How to track changes changes, deletions and creations of records on django site

2020-07-27 Thread Hector Berrones
Thank you Brother, I will check it out right away. On Mon, Jul 27, 2020, 10:32 AM Miracle wrote: > This should work > > > https://django-simple-history.readthedocs.io/en/latest/ > > On Mon, 27 Jul 2020, 4:30 pm Hector Berrones, > wrote: > >> Hi, Thanks for reading me, does anyone can advice to

Re: How to track changes changes, deletions and creations of records on django site

2020-07-27 Thread Miracle
This should work https://django-simple-history.readthedocs.io/en/latest/ On Mon, 27 Jul 2020, 4:30 pm Hector Berrones, wrote: > Hi, Thanks for reading me, does anyone can advice to me about how can have > record of changes, deletions and creations on a django app, > I was trying creating a fie

How to track changes changes, deletions and creations of records on django site

2020-07-27 Thread Hector Berrones
Hi, Thanks for reading me, does anyone can advice to me about how can have record of changes, deletions and creations on a django app, I was trying creating a field in the model to save the Current authenticated user but I have't been able to get the user ID and I would't like to make that field th

Re: django site using allauth in an iframe inside a wiki

2020-07-24 Thread Hadisur Rahman
I tried to solve your problem on Freelancer.com at only 10$ USD but you blocked me and yet it did,t solve. Good Luck. On 7/25/20, Anthony Petrillo wrote: > > > We have a django site that we have created, which requires authentication > (using allauth). We would love to have

django site using allauth in an iframe inside a wiki

2020-07-24 Thread Anthony Petrillo
We have a django site that we have created, which requires authentication (using allauth). We would love to have that django site in an iframe inside a wiki. We can get other things to show up in the iframe (google docs, etc), but our site refuses to run. Is there a secret we should know

Re: Integrate wepay payments in django site

2020-05-26 Thread Hella Nick
s anyone here have any prior experience in integrating wepay to a >> django site? if yes please share the process it would be a really big help >> >> regards. >> > -- > You received this message because you are subscribed to the Google Groups > "Django users&quo

Re: Integrate wepay payments in django site

2020-05-19 Thread Akshat Zala
You can install the following package and study the documentation: 1. https://pypi.org/project/django-wepay/ On Tuesday, 19 May 2020 22:56:24 UTC+5:30, Shyam Acharjya wrote: > > greetings, > > has anyone here have any prior experience in integrating wepay to a django > site? if y

Integrate wepay payments in django site

2020-05-19 Thread Shyam Acharjya
greetings, has anyone here have any prior experience in integrating wepay to a django site? if yes please share the process it would be a really big help regards. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-25 Thread carlos
1. Install your application on the server first, if you have media files, then copy them from your localhost to the server 2. Do the dumpdata from your local in .json, then copy that json to your server 3. Once on the server just load that json with the loaddata command. On Mon, Nov 25, 2019 at 2:

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-25 Thread Ram
Hi Carlos, I see there is a typo in my previous steps which could have mislead you. Basically old and new sites are different databases. Old site is running remotely in local host on our Developer's machine with MySQL dB. Now I've setup new hosting server with Postgres database (empty site so far)

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-25 Thread carlos
i thing is good your plan copy your files local to server then dumpdata in local database and copy to server and last you loaddata in your server cheers On Sat, Nov 23, 2019 at 10:13 PM Mohammad yunus wrote: > Is this "migration" command will work for all type of databases or just > only for sq

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-23 Thread Mohammad yunus
Is this "migration" command will work for all type of databases or just only for sqllite3? On Sun, 24 Nov 2019, 9:12 am Ram, wrote: > Hi Carlos, > > If you get to see my email, could you review my plan and let me know > whether my plan works for migration. > > 1. I have setup new Ubuntu 18.04 se

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-23 Thread Ram
Hi Carlos, If you get to see my email, could you review my plan and let me know whether my plan works for migration. 1. I have setup new Ubuntu 18.04 server in Digital Ocean droplet 2. Installed Postgress, Django with default settings and empty site, which means I did not bring/copy over the my D

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-23 Thread Ram
Hello Carlos, The steps looks promising. We will try it and let you know. Our dB is originally from MySQL configured for PHP based website and later on we moved to Django project development. Now we planned to migrate the site to Postgres database running on Ubuntu for Django project. Thank you

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-23 Thread carlos
maybe this link help you! https://www.calazan.com/migrating-django-app-from-mysql-to-postgresql/ On Sat, Nov 23, 2019 at 12:23 PM Ram wrote: > Hi, > > We have our Django based website running in our local windows box with > MySQL database. We plan to deploy our site on Ubuntu, Postgress, Gunicor

How to migrate Django site from MySQL database to Postgres?

2019-11-23 Thread Ram
Hi, We have our Django based website running in our local windows box with MySQL database. We plan to deploy our site on Ubuntu, Postgress, Gunicorn and Nginx stack server. I'm looking for a way to achieve this even with the manual intervention? I appreciate if someone can point me the right direc

pass a variable from another site to your django site

2019-06-08 Thread Danny Blaker
Scenario: You have built a chat bot (RASA-NLU for chat page + django for the rest of the site) that helps people with advice on gardening products. A major gardening retailer has approached you and asked if you could put a button on their product detail view pages, so that when a user clicks it,

Re: How is the best way to separate costumers on my django site?

2019-04-05 Thread carlos
https://github.com/citusdata/django-multitenant the documentation clearly explains the differences of each method its advantages and disadvantages On Thu, Apr 4, 2019 at 7:17 PM Sithembewena L. Dube wrote: > Hi > > > https://www.codementor.io/pauloscardine/15-minute-guide-to-secure-saas-multite

Re: How is the best way to separate costumers on my django site?

2019-04-04 Thread Sithembewena L. Dube
Hi https://www.codementor.io/pauloscardine/15-minute-guide-to-secure-saas-multitenancy-with-django-and-let-s-encrypt-ijtlarca8 https://blog.usejournal.com/building-a-saas-application-with-django-web-framework-part-1-2-the-principe-2f0730a6693f Kind regards, Sithembewena *Sent with Shift

How is the best way to separate costumers on my django site?

2019-04-04 Thread Fellipe Henrique
Hello, I need to separate my django website, for different costumers... Which is the best option: 1) One database and separate each costumer as a django user 2) different database, one for each costumer? There's no need the costumer has "users"... Any tips or ideas? Regards, T.·.F.·.A.·.

Re: Lot into existing Django site

2019-01-17 Thread PASCUAL Eric
07 PM To: Django users Subject: Lot into existing Django site I am trying to add reCaptcha to an existing Django website that was created by a company we no longer work with. I have server access to the website, but cannot figure out how to edit the files or add the reCaptcha form (I tried to man

Re: Log into existing Django site

2019-01-16 Thread Alex Heyden
The last Mac I owned had 512kB of memory and no hard drive, but it did have that newfangled 3.5" floppy drive. The wider internet probably knows. You might try https://accc.uic.edu/answer/how-do-i-use-ssh-and-sftp-mac-os-x On Wed, Jan 16, 2019 at 9:41 AM TheShoff wrote: > Also, how would I acce

Re: Log into existing Django site

2019-01-16 Thread TheShoff
Also, how would I access the server with SSH (I have a MAC and can use Terminal)? I have already set up private and public keys and provided the public key to the hosting provider, however I used FTP to login into the server. Do you know how I would go about logging in with Terminal? On Tuesda

Re: Log into existing Django site

2019-01-16 Thread TheShoff
That makes sense. Thanks Alex! On Tuesday, January 15, 2019 at 7:59:24 PM UTC-7, Alex Heyden wrote: > > The server that is hosting the site. The one you're trying to FTP onto. > Your quality of life will be greatly improved if you can SSH onto the > machine rather than using FTP, because the act

Re: Log into existing Django site

2019-01-15 Thread Alex Heyden
The server that is hosting the site. The one you're trying to FTP onto. Your quality of life will be greatly improved if you can SSH onto the machine rather than using FTP, because the actual server software that hosts Python processes usually needs to be restarted. It's unlikely (but not unheard o

Re: Log into existing Django site

2019-01-15 Thread TheShoff
Thank you for your response! By host machine, do you mean the machine (computer) the site was created on or the server that is hosting the site? I have always worked in PHP and HTML and am used to downloading/uploading files to the server to make changes. On Tuesday, January 15, 2019 at 2:30:4

Re: Log into existing Django site

2019-01-15 Thread Alex Heyden
Assuming you're familiar with web technologies in general, you'd make these changes on the host machine itself, ideally through the same mechanism that handles deployments of source code. Code for application logic is often in files called "views.py" or similar, and the HTML will be in a folder cal

Log into existing Django site

2019-01-15 Thread TheShoff
I am trying to add reCaptcha to an existing Django website that was created by a company we no longer work with. I have server access to the website, but cannot figure out how to edit the files or add the reCaptcha form (I tried to manually add the code into the HTML and .py files and uploading

Lot into existing Django site

2019-01-15 Thread TheShoff
I am trying to add reCaptcha to an existing Django website that was created by a company we no longer work with. I have server access to the website, but cannot figure out how to edit the files or add the reCaptcha form (I tried to manually add the code into the HTML and .py files and uploading

Re: Is there a way to find out if a Django site is built with Django CMS looking trough the source code?

2018-07-06 Thread TimT Vogt
Django cms has drag an drop backend https://control.divio.com/demo/get-new/ Tim Officerebels.nl Verstuurd vanaf mijn iPhone > Op 4 jul. 2018 om 21:51 heeft Brandon het volgende > geschreven: > > Hello Carlo, > > How can you tell the difference? > Unless I am looking at the google images in

Re: Is there a way to find out if a Django site is built with Django CMS looking trough the source code?

2018-07-05 Thread Brandon
Thanks guys you guys are super awesome!! Really appreciate you. It looks like it's just DJango. Curious how involved is installing Django CMS? Is it relatively fast, as a plugin install or is there are lot more to it? Also concerned if it would affect the Maria dB or any contnet. On Thursday, Jul

Re: Is there a way to find out if a Django site is built with Django CMS looking trough the source code?

2018-07-05 Thread Chematronix Quarantamila
Like Jason says, you can look for the CMS module in the admin, like in the image you posted (though it's called Django CMS and not just CMS in recent versions, and my setup has more plugins/options and a prettier theme), or for occurrences of "aldryn", "divio" or "cms-plugin" in the HTML or CSS

Re: Is there a way to find out if a Django site is built with Django CMS looking trough the source code?

2018-07-05 Thread Jason
The CMS section in that screenshot is a clue. On Wednesday, July 4, 2018 at 3:51:03 PM UTC-4, Brandon wrote: > > Hello Carlo, > > How can you tell the difference? > Unless I am looking at the google images incorrectly, they look very > similar. > > Here's the image from the Django CMS document

Re: Is there a way to find out if a Django site is built with Django CMS looking trough the source code?

2018-07-04 Thread Brandon
Hello Carlo, How can you tell the difference? Unless I am looking at the google images incorrectly, they look very similar. Here's the image from the Django CMS documentation: http://docs.django-cms.org/en/release-2.4.x/getting_started/tutorial.html

Re: Is there a way to find out if a Django site is built with Django CMS looking trough the source code?

2018-07-04 Thread Carlo Ascani
Il giorno mer 4 lug 2018 alle ore 19:00 Brandon ha scritto: > > There's a site that a friend needed looking into, He's just the Marketing guy > so he wouldn't know for sure. > I get the feeling the site was created with Django and NOT Django CMS, is > there any way to tell without having access

Is there a way to find out if a Django site is built with Django CMS looking trough the source code?

2018-07-04 Thread Brandon
There's a site that a friend needed looking into, He's just the Marketing guy so he wouldn't know for sure. I get the feeling the site was created with Django and NOT Django CMS, is there any way to tell without having access to the back-end? Thank you in advance. -- You received this message b

Re: Sponsor subdomain pointing to part of our Django site?

2018-06-05 Thread Richard Brockie
Hi James, On Tue, Jun 5, 2018 at 2:19 PM James Schneider wrote: > On Mon, Jun 4, 2018, 12:37 PM Melvyn Sopacua > wrote: > >> Aha! Now I get it! This should be solveable at the WSGI layer: >> >> >> >> PATH_INFO >> >> The remainder of the request URL's "path", designating the virtual >> "location

Re: Sponsor subdomain pointing to part of our Django site?

2018-06-04 Thread James Schneider
On Mon, Jun 4, 2018, 12:37 PM Melvyn Sopacua wrote: > On maandag 4 juni 2018 20:40:03 CEST Richard Brockie wrote: > > > On Mon, Jun 4, 2018 at 9:01 PM Melvyn Sopacua > wrote: > > > > This isn't a problem. Neither url nor reverse is capable of returning > URLs > > > > with hostnames, at least not

Re: Sponsor subdomain pointing to part of our Django site?

2018-06-04 Thread Melvyn Sopacua
On maandag 4 juni 2018 20:40:03 CEST Richard Brockie wrote: > On Mon, Jun 4, 2018 at 9:01 PM Melvyn Sopacua wrote: > > This isn't a problem. Neither url nor reverse is capable of returning URLs > > with hostnames, at least not that I'm aware of. Only django.contrib.site > >

Re: Sponsor subdomain pointing to part of our Django site?

2018-06-04 Thread Richard Brockie
On Mon, Jun 4, 2018 at 9:01 PM Melvyn Sopacua wrote: > This isn't a problem. Neither url nor reverse is capable of returning URLs > with hostnames, at least not that I'm aware of. Only django.contrib.site >

Re: Sponsor subdomain pointing to part of our Django site?

2018-06-04 Thread Melvyn Sopacua
On maandag 4 juni 2018 13:26:24 CEST Richard Brockie wrote: > However, I'm pretty sure that we will need to make some changes to our > project to deal with links when the site is being accessed through > "subdomain.sponsor.url/". You are correct that {% url %} is used in the > templates as well as

Re: Sponsor subdomain pointing to part of our Django site?

2018-06-04 Thread Richard Brockie
Hi Melvyn, Thanks for the reply. We will test this after getting the ssl certificates sorted out. However, I'm pretty sure that we will need to make some changes to our project to deal with links when the site is being accessed through "subdomain.sponsor.url/". You are correct that {% url %} is u

Re: Sponsor subdomain pointing to part of our Django site?

2018-06-03 Thread Melvyn Sopacua
On zondag 3 juni 2018 22:45:31 CEST Richard Brockie wrote: > Any advice on how I can accomplish this? Any particular things I would need > to do in the Django project to make this possible? Since you seem to be using the {% url %} tag and have no absolute URLs with the hostname in it, I don't th

Sponsor subdomain pointing to part of our Django site?

2018-06-03 Thread Richard Brockie
Hi, I’m wondering if it is possible to use a subdomain of a sponsor’s url as an alias to a particular part of our Django site? Our Django site has urls of the form: “site.url/year/slug/*” where “*” represents a large set of child pages for various data reports and update actions related to a

Re: Selenium Functional Tests against Heroku-hosted Django Site

2016-10-14 Thread ludovic coues
Have you tried to do it yet ? Have you found any specific problem you need help solving ? 2016-10-14 3:52 GMT+02:00 A Wall : > Hello, > > I'm looking to run functional tests using Django 1.10.2 and Selenium 3.0.0 > against a staging Django site hosted on Heroku. To be cl

Selenium Functional Tests against Heroku-hosted Django Site

2016-10-13 Thread A Wall
Hello, I'm looking to run functional tests using Django 1.10.2 and Selenium 3.0.0 against a staging Django site hosted on Heroku. To be clear, I want to do something like entering the command $ python manage.py test my_functional tests --liveserver=[ip address of remote server here],

Re: Running a Django site on a standalone Windows laptop

2016-02-26 Thread Remco Gerlich
Thank you all for the comments and links! We are going to try to simply run Apache/WSGI on Windows, as that seems to be the most normal and best supported option. I hadn't thought of Cygwin, if we run into trouble maybe we can use something that is part of that. And as a third option there are d

Re: Running a Django site on a standalone Windows laptop

2016-02-16 Thread Mike Dewhirst
I agree with James. Apache and mod_wsgi is fine on Windows. There may be some Windows-specific Apache conf tweaks but running single-user on a laptop should be easy. On 17/02/2016 6:55 AM, James Schneider wrote: On Tue, Feb 16, 2016 at 6:36 AM, Remco Gerlich mailto:re...@gerlich.nl>> wrote:

Re: Running a Django site on a standalone Windows laptop

2016-02-16 Thread James Schneider
On Tue, Feb 16, 2016 at 6:36 AM, Remco Gerlich wrote: > Hi, > > We have a web application that usually runs on Ubuntu servers on the > Internet. In the background it calls software that runs on Windows servers, > over a network. > > For a new project, this application must run standalone on a lap

Re: Running a Django site on a standalone Windows laptop

2016-02-16 Thread Ezequiel Bertti
You can try docker with docker toolkit. and run this sample: https://docs.docker.com/compose/django/ On Tue, Feb 16, 2016 at 1:24 PM, Avraham Serour wrote: > I would also consider cygwin, you can even use uwsgi and nginx, you can > easily add them as cygwin services which cygwin takes care t

Re: Running a Django site on a standalone Windows laptop

2016-02-16 Thread Avraham Serour
I would also consider cygwin, you can even use uwsgi and nginx, you can easily add them as cygwin services which cygwin takes care to add them as windows services On Tue, Feb 16, 2016, 4:59 PM Remco Gerlich wrote: > We thought about that and it's certainly an option, but 1) the > communication w

Re: Running a Django site on a standalone Windows laptop

2016-02-16 Thread Remco Gerlich
We thought about that and it's certainly an option, but 1) the communication with the background tasks running on the Windows host is going to be tricky and 2) I have no experience with running it as a service. So I'd prefer running on Windows directly. Remco Gerlich On Tue, Feb 16, 2016 at 3:4

Re: Running a Django site on a standalone Windows laptop

2016-02-16 Thread m1chael
I would vote for a Virtualbox instance depending on your performance requirements On Tue, Feb 16, 2016 at 9:36 AM, Remco Gerlich wrote: > Hi, > > We have a web application that usually runs on Ubuntu servers on the > Internet. In the background it calls software that runs on Windows servers, > o

Running a Django site on a standalone Windows laptop

2016-02-16 Thread Remco Gerlich
Hi, We have a web application that usually runs on Ubuntu servers on the Internet. In the background it calls software that runs on Windows servers, over a network. For a new project, this application must run standalone on a laptop, in the field, used by not very technical users. We can make the

Running a live Django site

2015-10-28 Thread JJ Zolper
All, In an effort to continue to push the Django community towards a point where we provide our developers with more information on how to run a live Django site, I would like to again share the High Performance Django Videos Kickstarter: https://www.kickstarter.com/projects/1704706557/high

Re: Possible bug with django site frameworks swapping between 2 sites every request

2015-04-18 Thread Stephen J. Butler
I wasn't suggesting that disabling caching was the fix, but just a way to start debugging the issue. Did it go away when you completely disabled the cache? Next step is to enable the cache again and progressively remove caching statements from your app till you find the culprit. For example: 1. Re

Re: Possible bug with django site frameworks swapping between 2 sites every request

2015-04-18 Thread Joe
My question is this a bug? I want to report it if so. Even if disabling caching works, wouldn't still be considered a bug? On Wednesday, April 15, 2015 at 7:04:47 AM UTC-7, Stephen Butler wrote: > > > https://docs.djangoproject.com/en/1.8/topics/cache/#dummy-caching-for-development > > On Wed,

Re: Possible bug with django site frameworks swapping between 2 sites every request

2015-04-15 Thread Stephen J. Butler
https://docs.djangoproject.com/en/1.8/topics/cache/#dummy-caching-for-development On Wed, Apr 15, 2015 at 8:47 AM, Joe wrote: > How do you set it to the dummy cache? > > On Saturday, April 11, 2015 at 2:06:10 PM UTC-7, Stephen Butler wrote: >> >> What happens if you disable all caching (try sett

Re: Possible bug with django site frameworks swapping between 2 sites every request

2015-04-15 Thread Joe
How do you set it to the dummy cache? On Saturday, April 11, 2015 at 2:06:10 PM UTC-7, Stephen Butler wrote: > > What happens if you disable all caching (try setting it to the dummy > cache). > > Also, you really shouldn't put your python code in your server's > DocumentRoot. There's absolutely

Re: Possible bug with django site frameworks swapping between 2 sites every request

2015-04-11 Thread Stephen J. Butler
What happens if you disable all caching (try setting it to the dummy cache). Also, you really shouldn't put your python code in your server's DocumentRoot. There's absolutely no reason to do it that way. You're just asking to have your settings.py file exposed by a misconfigured apache instance.

Possible bug with django site frameworks swapping between 2 sites every request

2015-04-11 Thread Joe
I am using django's sites framework with dajngo 1.7. I am calling the site name through a context processor like below. The problem is that every time the page loads, it switches between site1 and site2: def site_info(request): Site.objects.clear_cache()# i tried with and without this

How to track number of visitors on django site

2015-03-12 Thread Andreas Kuhne
Hi all, I would like to be able to track the number of visitors on our website. We previously had django-tracking installed and a munin node that tracked the information. Unfortunately we weren't able to continue using it because it broke our website somehow (I don't remember how). Does anyone ha

Re: How to track number of visitors on django site

2015-03-10 Thread Nathan Clayton
On 3/10/2015 2:16 PM, Andreas Kuhne wrote: > Hi Vijay, > > Thanks for the suggestion, and we are of course using GA (I should have > mentioned that). The problem is our CEO doesn't like the way GA compiles > the information and he also feels that it's too slow, he can't get the > views that he wou

Re: How to track number of visitors on django site

2015-03-10 Thread luis zarate
I know django-statistics ( https://github.com/attuch/django-statistics ) but I have never used 2015-03-10 15:16 GMT-06:00 Andreas Kuhne : > Hi Vijay, > > Thanks for the suggestion, and we are of course using GA (I should have > mentioned that). The problem is our CEO doesn't like the way GA compi

Re: How to track number of visitors on django site

2015-03-10 Thread Andreas Kuhne
Hi Vijay, Thanks for the suggestion, and we are of course using GA (I should have mentioned that). The problem is our CEO doesn't like the way GA compiles the information and he also feels that it's too slow, he can't get the views that he would like. So we would like to add this information ours

Re: How to track number of visitors on django site

2015-03-10 Thread Vijay Khemlani
Hmmm... what about the classic Google Analytics? On Tue, Mar 10, 2015 at 5:04 PM, Andreas Kuhne wrote: > Hi all, > > I would like to be able to track the number of visitors on our website. We > previously had django-tracking installed and a munin node that tracked the > information. Unfortunatel

Re: How to Display the number of active users in Django Site with IP address

2014-12-22 Thread Collin Anderson
: # or getattr(request, '_cached_user') UserIP.objects.create_or_update(user=request.user, ip=request. META['REMOTE_ADDR']) return response Collin On Sunday, December 21, 2014 7:30:33 AM UTC-6, Avinash Kunuje wrote: > > How to Display the number of active

How to Display the number of active users in Django Site with IP address

2014-12-21 Thread Avinash Kunuje
How to Display the number of active users in Django Site with IP address -- 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-user

Re: Copied/pasted django site from windows 7 to 8.1 issu.

2014-08-15 Thread Matlau Issu
import sys ; print sys.path gives me : ['C:\\Python27\\lib\\site-packages\\pip-1.5.6-py2.7.egg', 'C:\\Python27\\lib\\site-packages\\psutil-2.1.1-py2.7-win32.egg', 'C:\\Windows\\SYSTEM32\\python27.zip', 'C:\\Python27\\DLLs', 'C:\\Python27\\lib', 'C:\\Python27\\lib\\plat-win', 'C:\\Python27\\lib\\li

Re: Copied/pasted django site from windows 7 to 8.1 issu.

2014-08-15 Thread Collin Anderson
I don't know much about ctypes, but are there any non-ascii characters anywhere in your sys.path? -- 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+u

Copied/pasted django site from windows 7 to 8.1 issu.

2014-08-15 Thread Matlau Issu
Hi everyone, All in the title, My site works perfectly on my windows 7 environnement. I just dont figure out what the problem is. I do not have any special characters in the considered path. Any idea ? Thanks Tracesbacks : _

Re: seeting ur django site doamin name

2014-08-06 Thread Collin Anderson
Generally with apache you set up the domain name using ServerName in VirtualHost. http://httpd.apache.org/docs/2.4/vhosts/name-based.html -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails f

seeting ur django site doamin name

2014-08-06 Thread ngangsia akumbo
I AM CURRENTLY DEPLOYING DJANGO WITH APACHE I WISH TO SET THE MAIN DOMAIN NAME I HAVE THE FOLLOWING URLS from django.conf.urls import patterns, include, url from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', #new urls url(r'^blog/$', 'blog.view

Re: Problems Sending Email From Django SIte

2014-05-13 Thread markmnl
ivity in main, and >> a message in reject - >> >> 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost >> [127.0.0.1] >> >> That is all I have. >> >> My settings.py files...maybe you will see something missing or >> mis-configu

help with django-cms install for existing django site

2014-03-12 Thread eric . frost
hi folks! I've been struggling getting django-cms to work properly in an exising django site. Would someone be willing to work with me on a paid basis? You would just connect to my machine, I'd show you where everything is, etc. Maybe it would just take an hour or two initially, but

Django Site(s) looks ugly with ?None as query parameter.

2014-03-06 Thread Christian Schmitt
Hello, currently I have some Django sites one of them is http://www.schnooge-hansili.de/ if i open it with http://www.schnooge-hansili.de/?None It looks really ugly. Currently the first site is just a simple CBV view. Nothing really special. -- You received this message because you are subscri

Re: Problems Sending Email From Django SIte

2014-02-02 Thread m1chael
gs - main and reject. >>> >>> Message from python prompt and mutt - shows activity in main, but not >>> reject. >>> >>> Message from Server 500 error with django app - no activity in main, and >>> a message in reject - >>> >>>

Re: Problems Sending Email From Django SIte

2014-02-01 Thread Mark Phillips
vity in main, and >> a message in reject - >> >> 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost >> [127.0.0.1] >> >> That is all I have. >> >> My settings.py files...maybe you will see something missing or >> mis-configured for ema

Re: Problems Sending Email From Django SIte

2014-02-01 Thread Matt Schinckel
no activity in main, and a > message in reject - > > 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost > [127.0.0.1] > > That is all I have. > > My settings.py files...maybe you will see something missing or > mis-configured for email from a django

Re: Problems Sending Email From Django SIte

2014-02-01 Thread m1chael
> >> On Fri, Jan 31, 2014 at 11:51 PM, Mark Phillips >>>>>> >> wrote: >>>>>> >> > Exim4 has two logs - main and reject. >>>>>> >> > >>>>>> >> > Message from python prompt and mutt - shows

Re: Problems Sending Email From Django SIte

2014-02-01 Thread m1chael
27;x...@x.xxx' >>>>> >> >>>>> >> On Fri, Jan 31, 2014 at 11:51 PM, Mark Phillips >>>>> >> wrote: >>>>> >> > Exim4 has two logs - main and reject. >>>>> >> > >>>>> &g

Re: Problems Sending Email From Django SIte

2014-02-01 Thread m1chael
>> >> > >>>> >> > Message from python prompt and mutt - shows activity in main, but not >>>> >> > reject. >>>> >> > >>>> >> > Message from Server 500 error with django app - no activity in main, >

Re: Problems Sending Email From Django SIte

2014-02-01 Thread m1chael
main and reject. >>> >> > >>> >> > Message from python prompt and mutt - shows activity in main, but not >>> >> > reject. >>> >> > >>> >> > Message from Server 500 error with django app - no activity in

Re: Problems Sending Email From Django SIte

2014-02-01 Thread m1chael
gt;> >> > and >> >> > a >> >> > message in reject - >> >> > >> >> > 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost >> >> > [127.0.0.1] >> >> > >> >

Re: Problems Sending Email From Django SIte

2014-02-01 Thread Mark Phillips
rom Server 500 error with django app - no activity in main, > and > >> > a > >> > message in reject - > >> > > >> > 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost > >> > [127.0.0.1] > >> > > >> > That

Re: Problems Sending Email From Django SIte

2014-02-01 Thread m1chael
gt;> > >> > Message from Server 500 error with django app - no activity in main, and >> > a >> > message in reject - >> > >> > 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost >> > [127.0.0.1] >> > >> > That is

Re: Problems Sending Email From Django SIte

2014-02-01 Thread Mark Phillips
> > 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost > > [127.0.0.1] > > > > That is all I have. > > > > My settings.py files...maybe you will see something missing or > > mis-configured for email from a django site (I removed some sensiti

Re: Problems Sending Email From Django SIte

2014-02-01 Thread m1chael
> > Message from Server 500 error with django app - no activity in main, and a > message in reject - > > 2014-01-31 21:30:55 unqualified recipient rejected: H=localhost > [127.0.0.1] > > That is all I have. > > My settings.py files...maybe you will see something mi

Re: Problems Sending Email From Django SIte

2014-02-01 Thread Mark Phillips
is all I have. My settings.py files...maybe you will see something missing or mis-configured for email from a django site (I removed some sensitive information). *The first file base.py:* import os BASE_DIR = os.path.dirname(os.path.dirname(__file__)) # Application definition INSTALLED_APPS

Re: Problems Sending Email From Django SIte

2014-01-31 Thread m1chael
> > thing-a-ma-bob? I just have the stock modules and middleware that django >> > created with a new project. I haven't found anything in the django docs >> > that >> > point to a module that I am missing. >> > >> > Thanks! >> > >>

Re: Problems Sending Email From Django SIte

2014-01-31 Thread Mark Phillips
that > > point to a module that I am missing. > > > > Thanks! > > > > Mark > > > > > > On Fri, Jan 31, 2014 at 6:06 PM, Mark Phillips < > m...@phillipsmarketing.biz> > > wrote: > >> > >> I have my django site setup on my productio

Re: Problems Sending Email From Django SIte

2014-01-31 Thread m1chael
hanks! > > Mark > > > On Fri, Jan 31, 2014 at 6:06 PM, Mark Phillips > wrote: >> >> I have my django site setup on my production server, a Debian machine with >> exim4 and django 1.6. I use smtp.cox.net to relay my emails from my server. >> >> I can s

Re: Problems Sending Email From Django SIte

2014-01-31 Thread Mark Phillips
new project. I haven't found anything in the django docs that point to a module that I am missing. Thanks! Mark On Fri, Jan 31, 2014 at 6:06 PM, Mark Phillips wrote: > I have my django site setup on my production server, a Debian machine with > exim4 and django 1.6. I use smtp.cox.n

Problems Sending Email From Django SIte

2014-01-31 Thread Mark Phillips
I have my django site setup on my production server, a Debian machine with exim4 and django 1.6. I use smtp.cox.net to relay my emails from my server. I can send emails from the server using mutt. I can also send an email from a python prompt in my virtual environment on the server using this

Re: Django Site/Docs/Tutorials translation

2013-12-23 Thread Lucas Infante
Thanks, Fabio! On Wednesday, December 18, 2013 6:45:44 PM UTC-2, Fabio Caritas Barrionuevo da Luz wrote: > > The translation project is hosted in Transifex.com [1][2] > > [1] https://www.transifex.com/projects/p/django-docs/language/pt_BR/ > [2] https://www.transifex.com/projects/p/django/languag

Re: Django Site/Docs/Tutorials translation

2013-12-18 Thread Fabio Caritas Barrionuevo da Luz
The translation project is hosted in Transifex.com [1][2] [1] https://www.transifex.com/projects/p/django-docs/language/pt_BR/ [2] https://www.transifex.com/projects/p/django/language/pt_BR/members/ Em segunda-feira, 16 de dezembro de 2013 09h20min40s UTC-3, Lucas Infante escreveu: > > Hello guy

  1   2   3   4   5   >