Re: Strange deployment problem

2015-04-02 Thread Miloš Kozák
I have just found, that if I use tmux then everything works perfect... Maybe this might be caused by some system variables forced by my terminal? This problem denies me to use Fabric for DB updates! This is very big constraint. -- You received this message because you are subscribed to the Goo

Re: Strange deployment problem

2015-03-28 Thread Miloš Kozák
Sure, those credentials work. If you look at the last line of the error output you can see that django wants to use user root whereas I am using user demo -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Strange deployment problem

2015-03-28 Thread Gergely Polonkai
Hello, do you have command line access on that machine? If so, can you connect to the database using the credentials in the settings file? Best, Gergely On 28 Mar 2015 14:21, "Anderson Resende" wrote: > > I don't used mysql,but in postgres for you write in a database your user > db needs permis

Re: Strange deployment problem

2015-03-28 Thread Anderson Resende
I don't used mysql,but in postgres for you write in a database your user db needs permission to write. Check that! -- 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

Strange deployment problem

2015-03-27 Thread Miloš Kozák
Hi, I have rather strange problem with already deployed application. I added some new ACL rules which I need to write to the database, so I wanted to call syncdb --all. However, using the command: ./manage.py syncdb or ./manage.py syncdb --settings=intranet.settings.demo I get this: S

Re: Please help: urgent deployment problem with django post office

2014-10-03 Thread Brad Pitcher
If you want to simply disable logging, you could try setting the LOG_LEVEL to 0: POST_OFFICE = { 'LOG_LEVEL': 0 # Don't log anything } On Fri, Oct 3, 2014 at 4:55 AM, Sabine Maennel wrote: > Hello Collins, I need post office for other purposes not for error > logging. > > I worte an issue

Re: Please help: urgent deployment problem with django post office

2014-10-03 Thread Sabine Maennel
Hello Collins, I need post office for other purposes not for error logging. I worte an issue in their issue queue, this is what they wrote back: >>As explained by @RafRaf , the emails are sent by BrokenLinkEmailsMiddleware, you can disable it insettings.py if you need

Re: Please help: urgent deployment problem with django post office

2014-10-02 Thread Collin Anderson
It seems like django-post_office recommends using sentry for the errors. Getting a better feel for your situation: Why django-post_office at all? What's wrong with the error emails getting logged? -- You received this message because you are subscribed to the Google Groups "Django users" group

Re: Please help: urgent deployment problem with django post office

2014-10-02 Thread Sabine Maennel
Dear Erik, I do not really care about the errors. They are not so hard to fix but I do not like that they are written into my database by this app: https://github.com/ui/django-post_office. Well maybe I should rather ask on github what to do. Thanks so for replying and giving me that idea. w

Re: Please help: urgent deployment problem with django post office

2014-10-02 Thread Sabine Maennel
Sorry your are so right. I will do that immediately. Thanks a lot. Am Donnerstag, 2. Oktober 2014 19:00:48 UTC+2 schrieb Tundebabzy: > > You should also change your email password immediately because you just > exposed it to the whole world > On 2 Oct 2014 15:52, "Erik Cederstrand" > wrote: >

Re: Please help: urgent deployment problem with django post office

2014-10-02 Thread Babatunde Akinyanmi
You should also change your email password immediately because you just exposed it to the whole world On 2 Oct 2014 15:52, "Erik Cederstrand" wrote: > > Den 02/10/2014 kl. 16.37 skrev Sabine Maennel : > > > Please help! > > > > I want to deploy tomorrow. The problem is that django post office log

Re: Please help: urgent deployment problem with django post office

2014-10-02 Thread Erik Cederstrand
Den 02/10/2014 kl. 16.37 skrev Sabine Maennel : > Please help! > > I want to deploy tomorrow. The problem is that django post office logs > INTERNAL Errors into the the table "postoffice_emails". I do not know why. It > is about some broken links. I guess I can fix the links, but still I do n

Please help: urgent deployment problem with django post office

2014-10-02 Thread Sabine Maennel
*Please help! * I want to deploy tomorrow. The problem is that django post office logs INTERNAL Errors into the the table "postoffice_emails". I do not know why. It is about some broken links. I guess I can fix the links, but still I do not want to spam my database with that sort of reporting.

Re: Deployment problem with google bots

2013-06-23 Thread Mike Dewhirst
On 22/06/2013 11:54pm, frocco wrote: Hello I get error messages from time to time because a google bot try's to view a product that no longer exists. How do I prevent this? Are you responding with the correct error message (probably 404) when someone looks for a non-existent page? -- You

Deployment problem with google bots

2013-06-22 Thread frocco
Hello I get error messages from time to time because a google bot try's to view a product that no longer exists. How do I prevent this? -- 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

Re: Deployment problem

2011-12-08 Thread Reinout van Rees
On 08-12-11 10:57, Hassan wrote: I am new to django , i am really worried about deployment and i have alot of questions , i hope you can help me guys . First : I want to you ARVIXE for hosting , thay dont have django installed , what would i do when django is not installed and i want to host

Deployment problem

2011-12-08 Thread Hassan
Dear ALL, I am new to django , i am really worried about deployment and i have alot of questions , i hope you can help me guys . First : I want to you ARVIXE for hosting , thay dont have django installed , what would i do when django is not installed and i want to host a django project ?? Sec

Re: deployment problem gotcha

2010-08-30 Thread Mike Dewhirst
Graham Thanks for your response. Everything works nice now. I read the reference and fixed the missing slashes and commented out print functions if dev-oriented or added the print option file=sys.stderr if reporting an error. Nice to learn something before it bites :) I have decided to keep

Re: deployment problem gotcha

2010-08-30 Thread Graham Dumpleton
On Aug 30, 5:36 pm, Mike Dewhirst wrote: > I had an admin media problem finding base.css in deploying an app from > the Django (svn head) dev server on Windows to Apache 2.2 on Linux > > Because I had prepared this email ready to ask for help, I'm posting it > anyway with the hope that it helps

deployment problem gotcha

2010-08-30 Thread Mike Dewhirst
I had an admin media problem finding base.css in deploying an app from the Django (svn head) dev server on Windows to Apache 2.2 on Linux Because I had prepared this email ready to ask for help, I'm posting it anyway with the hope that it helps someone. Everything else was working. Firebug wa

Re: deployment problem

2010-07-01 Thread kakarukeys
On Jun 30, 9:38 pm, kakarukeys wrote: > I tried to deploy a simple web app I wrote in Django and ran into > problem with user authentication. > > On production server, the following steps didn't work like expected > (on development server). > > "log in using a test user account, > access a restric

Re: Django on multiple servers? (Deployment Problem)

2010-07-01 Thread nano
On Jul 1, 5:52 pm, bruno desthuilliers wrote: > That's what I understood, but I fail to see what made you think it > would be the case. It was what i implied when the app ran well on the machine that I had run the 'startproject' command on and didn't run at all on the one that i hadn't. I though

Re: Django on multiple servers? (Deployment Problem)

2010-07-01 Thread bruno desthuilliers
On 1 juil, 19:56, nano wrote: > Ok, thanks. sorry for my rather dumbed down language- by saying that > django 'knew' about the project i was implying that perhaps some > change was made in some configuration file in the django library, That's what I understood, but I fail to see what made you thi

Re: Django on multiple servers? (Deployment Problem)

2010-07-01 Thread nano
Ok, thanks. sorry for my rather dumbed down language- by saying that django 'knew' about the project i was implying that perhaps some change was made in some configuration file in the django library, but as thats not the case, moot point. but again, thanks, ive been able to get it working. On Jul

Re: Django on multiple servers? (Deployment Problem)

2010-07-01 Thread bruno desthuilliers
On 1 juil, 02:40, nano wrote: > Ok, so i've written my Django app on computer A with the dev server, > and have pushed it to server B, running apache (implemented with > mod_wsgi). The server also has Django installed, but cannot find the > settings for some reason. It's probably either a pythonp

Re: Django on multiple servers? (Deployment Problem)

2010-06-30 Thread Paul Gully
another problem: im running this app on top of another page, so say www.example.com is the site, it wont allow me to access just any other page if the app is at the root of the site (www.example.com/myapp would work, but www.example.com/siteinfo wouldnt (unless i suppose i wrote a url template for

Re: Django on multiple servers? (Deployment Problem)

2010-06-30 Thread Paul Gully
Ok, again. i feel like a question whore, but i think this should be the last thing. I fixed the database problem for the main app, but the admin site isnt working at all, im getting an internal server error (500) when i try to access it. halp? On Wed, Jun 30, 2010 at 10:24 PM, Paul Gully wrote:

Django on multiple servers? (Deployment Problem)

2010-06-30 Thread nano
Ok, so i've written my Django app on computer A with the dev server, and have pushed it to server B, running apache (implemented with mod_wsgi). The server also has Django installed, but cannot find the settings for some reason. what i've gathered is that because i've never run the 'makeproject' co

Re: Django on multiple servers? (Deployment Problem)

2010-06-30 Thread Paul Gully
Oh wow. ok, so i solved that problem (it was just the sys.path thing in the wsgi file. easy fix) ,but now django is unable to open the database files to render the URLs. im using SQLite, so again, i assume the problem is that this project isn't 'native' to the computer, however that doesn't help me

deployment problem

2010-06-30 Thread kakarukeys
I tried to deploy a simple web app I wrote in Django and ran into problem with user authentication. On production server, the following steps didn't work like expected (on development server). "log in using a test user account, access a restricted page." it shows login required error message, th

Re: Apache Deployment Problem

2008-02-07 Thread Graham Dumpleton
On Feb 7, 11:37 pm, Tony Winslow <[EMAIL PROTECTED]> wrote: > Kenneth Gonsalves wrote: > > On 06-Feb-08, at 7:41 PM, Tony Winslow wrote: > > >> I installed mod_python and do the configurations as the tutorial on   > >> the > >> official site. But mod_python still can not find the mysite.settings

Re: [newbie]Apache Deployment Problem

2008-02-07 Thread Tony Winslow
Kenneth Gonsalves wrote: > On 06-Feb-08, at 7:41 PM, Tony Winslow wrote: > > >> I installed mod_python and do the configurations as the tutorial on >> the >> official site. But mod_python still can not find the mysite.settings >> module. What might be the problem? >> > > paste the relevan

Re: [newbie]Apache Deployment Problem

2008-02-06 Thread Kenneth Gonsalves
On 06-Feb-08, at 7:41 PM, Tony Winslow wrote: > I installed mod_python and do the configurations as the tutorial on > the > official site. But mod_python still can not find the mysite.settings > module. What might be the problem? paste the relevant part of your apache config -- regards kg

Re: [newbie]Apache Deployment Problem

2008-02-06 Thread Karen Tracey
On Feb 6, 2008 2:16 PM, Tony Winslow <[EMAIL PROTECTED]> wrote: > > Karen Tracey wrote: > > On Feb 6, 2008 9:11 AM, Tony Winslow <[EMAIL PROTECTED] > > > wrote: > > > > Hi, all! > > I installed mod_python and do the configurations as the tutorial > > on the >

Re: [newbie]Apache Deployment Problem

2008-02-06 Thread Tony Winslow
Karen Tracey wrote: > On Feb 6, 2008 9:11 AM, Tony Winslow <[EMAIL PROTECTED] > > wrote: > > Hi, all! > I installed mod_python and do the configurations as the tutorial > on the > official site. But mod_python still can not find the mysite.settings >

Re: [newbie]Apache Deployment Problem

2008-02-06 Thread Karen Tracey
On Feb 6, 2008 9:11 AM, Tony Winslow <[EMAIL PROTECTED]> wrote: > Hi, all! > I installed mod_python and do the configurations as the tutorial on the > official site. But mod_python still can not find the mysite.settings > module. What might be the problem? Could be apache doesn't have permission

[newbie]Apache Deployment Problem

2008-02-06 Thread Tony Winslow
Hi, all! I installed mod_python and do the configurations as the tutorial on the official site. But mod_python still can not find the mysite.settings module. What might be the problem? --~--~-~--~~~---~--~~ You received this message because you are subscribed to