Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2012-01-27 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
---+
 Reporter:  kyprizel   |Owner:  kyprizel
 Type:  Uncategorized  |   Status:  closed
Component:  Core (Other)   |  Version:  SVN
 Severity:  Normal |   Resolution:  invalid
 Keywords: | Triage Stage:  Accepted
Has patch:  1  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+
Changes (by aaugustin):

 * ui_ux:   => 0
 * type:   => Uncategorized
 * severity:   => Normal
 * easy:   => 0


Comment:

 See #17550 for an annoying consequence of this fix.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2010-03-03 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  closed  | Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  invalid |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Changes (by jacob):

  * status:  reopened => closed
  * resolution:  => invalid

Comment:

 This isn't a bug, so I'm closing it. Feel free to open a new ticket with a
 documentation patch if you like.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2010-02-19 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  reopened| Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Comment (by btmorex):

 It should at least be documented on perhaps the server configuration
 documentation page that you can't define both PATH_INFO and SCRIPT_NAME
 when using nginx fastcgi. This caused django to fail in a bewildering way
 and took me quite a while to figure out.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2009-10-27 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  reopened| Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Comment (by Exe):

 The correct config for nginx. If you uncomment commented strings you fall
 into very strange and scarry bugs(ex. RequestContext will go down or url-
 tag will do strange things). I'm posting it here as I spent 4 days to
 catch all problems with fcgi and solutions in the internet didn't work for
 me.
 {{{

 location / {
 #DO NOT INCLUDE include /etc/nginx/fastcgi_params;
 fastcgi_param   QUERY_STRING  $query_string;
 fastcgi_param   REQUEST_METHOD$request_method;
 fastcgi_param   REQUEST_URI   $request_uri;

 fastcgi_param   CONTENT_TYPE  $content_type;
 fastcgi_param   CONTENT_LENGTH$content_length;

 #DO NO SET fastcgi_param   SCRIPT_NAME   $fastcgi_script_name;
 fastcgi_param   PATH_INFO $uri;
 fastcgi_param   SERVER_PROTOCOL   $server_protocol;

 fastcgi_param   SERVER_NAME   $server_name;
 fastcgi_param   SERVER_PORT   $server_port;

 fastcgi_param   REMOTE_ADDR   $remote_addr;
 fastcgi_param   REMOTE_PORT   $remote_port;

 fastcgi_passunix:/home/exe_messir_net/tmp/fcgi.sock;
 }
 }}}

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2009-09-16 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  reopened| Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Comment (by qingfeng):

 nginx+django project conf file:

 http://code.djangoproject.com/attachment/ticket/8874/nginx.conf

 http://code.djangoproject.com/attachment/ticket/8874/sina.conf

 urls.py:
 {{{
 from django.conf.urls.defaults import *

 urlpatterns = patterns('',
 (r'^hello/', 'demo.views.hello'),
 )
 }}}

 demo/views.py
 {{{
 from django.http import HttpResponse

 def hello(request):
 return HttpResponse("Hello")
 }}}

 Django 1.1 Test:

 curl -I http://localhost/hello

 Restuls:
 {{{
 HTTP/1.1 404 NOT FOUND
 Server: nginx/0.7.62
 Date: Wed, 16 Sep 2009 09:23:29 GMT
 Content-Type: text/html
 Connection: keep-alive
 }}}

 use new patch:

 http://code.djangoproject.com/attachment/ticket/8874/wsgi_r11339.diff

 curl -I http://localhost/hello

 Results:
 {{{
 HTTP/1.1 200 OK
 Server: nginx/0.7.62
 Date: Wed, 16 Sep 2009 10:27:11 GMT
 Content-Type: text/html; charset=utf-8
 Connection: keep-alive
 Vary: Cookie
 }}}

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2009-09-16 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  reopened| Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Changes (by kmtracey):

  * status:  closed => reopened
  * resolution:  duplicate =>

Comment:

 Replying to [comment:11 qingfeng]:
 > fixed #8490

 The fact the the fix for #8490 may have introduced this problem does not
 make this a dupe of #8490.  Please leave #8490 closed and put info
 relevant to fixing this problem in this ticket, not there.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2009-08-31 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  closed  | Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  duplicate   |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Changes (by qingfeng):

  * status:  assigned => closed
  * resolution:  => duplicate

Comment:

 fixed #8490

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2009-08-31 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  assigned| Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Comment (by barbaros1420):

 Replying to [comment:2 kyprizel]:
 > I use nginx web server, configured to use the same PATH_INFO and
 SCRIPT_NAME,
 > so [http://code.djangoproject.com/ticket/8490] made problems for me.
 > http://www.oyun27.com
 >Is my config incorrect?

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2009-07-29 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  assigned| Milestone:  1.2 
 Component:  Core framework  |   Version:  SVN 
Resolution:  |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Changes (by qingfeng):

  * version:  1.0 => SVN
  * milestone:  => 1.2

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2008-10-23 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  assigned| Milestone:  
 Component:  Core framework  |   Version:  1.0 
Resolution:  |  Keywords:  
 Stage:  Accepted| Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Changes (by mtredinnick):

  * stage:  Design decision needed => Accepted

Comment:

 (Moving out of design decision needed, since this is either a bug or not.
 If it's a bug, we should fix it. There's no design decision needed, just a
 proper understanding and solution.)

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2008-10-23 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  assigned| Milestone:  
 Component:  Core framework  |   Version:  1.0 
Resolution:  |  Keywords:  
 Stage:  Design decision needed  | Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Comment (by mtredinnick):

 I don't believe this patch is really fixing the root problem. It looks
 like it's forcing script name to an incorrect value and just kind of works
 by accident.

 The real question here is why does script name have a value of
 `feedback/`? That looks like either a configuration bug or a bug in nginx
 or something. We need to understand that a bit better before working out a
 solution to this problem.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2008-10-15 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  assigned| Milestone:  
 Component:  Core framework  |   Version:  1.0 
Resolution:  |  Keywords:  
 Stage:  Design decision needed  | Has_patch:  1   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Changes (by qingfeng):

  * has_patch:  0 => 1

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #8874: problem with URLs on FastCGI after update to 1.0

2008-10-15 Thread Django
#8874: problem with URLs on FastCGI after update to 1.0
-+--
  Reporter:  kyprizel| Owner:  kyprizel
Status:  assigned| Milestone:  
 Component:  Core framework  |   Version:  1.0 
Resolution:  |  Keywords:  
 Stage:  Design decision needed  | Has_patch:  0   
Needs_docs:  0   |   Needs_tests:  0   
Needs_better_patch:  0   |  
-+--
Changes (by qingfeng):

 * cc: [EMAIL PROTECTED] (added)
  * has_patch:  1 => 0

Comment:

 Django+nginx+prefork is problem too

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---