#14594: Django/CherryPy problem with POST data
------------------------------------+---------------------------------------
          Reporter:  msundstr       |         Owner:  nobody
            Status:  new            |     Milestone:  1.3   
         Component:  HTTP handling  |       Version:  SVN   
        Resolution:                 |      Keywords:        
             Stage:  Unreviewed     |     Has_patch:  0     
        Needs_docs:  0              |   Needs_tests:  0     
Needs_better_patch:  0              |  
------------------------------------+---------------------------------------
Changes (by msundstr):

  * needs_better_patch:  => 0
  * needs_tests:  => 0
  * needs_docs:  => 0

Comment:

 Steps to reproduce Ticket #14594

 I used a virtualenv running Python 2.7, but I don't think the Python
 version matters

 # Install or make sure you are using Django trunk >= 14394
 pip install CherryPy # 3.1.2
 django-admin.py startproject newbug
 cd newbug
 python manage.py runserver # verify on port 8000 that "It works!"
 # Edit urls.py to enable the admin
 # Edit settings.py to enable the admin
 # Edit settings.py to create a database.
 #     I used sqlite3 and specified a path
 python manage.py syncdb # setup the database and create a superuser
 # Verify that you can login, using the development server and your new
 superuser at
 #     localhost:8000/admin/
 # Log out, stop the development server
 python manage.py shell
 >>>import cherrypy
 >>>from django.core.handlers.wsgi import WSGIHandler
 >>>cherrypy.tree.graft( WSGIHandler(), script_name="")
 >>>cherrypy.quickstart() # this will start the CherryPy server on 8080
 # The admin media will not be served, but this doesn't matter
 # Go to localhost:8080/admin/
 # Try to login with your superuser, or just click the login button with
 blank input
 # Hangs

-- 
Ticket URL: <http://code.djangoproject.com/ticket/14594#comment:1>
Django <http://code.djangoproject.com/>
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.

Reply via email to