I have done via this link 
http://docs.djangoproject.com/en/dev/howto/deployment/fastcgi/

The login form is appeared, but the action of login form is wrong.

I think the action should be "/admin/", but I got "/nsman.fcgi/
admin/". why?

here is some configure files.

* lighttpd.conf

fastcgi.server = (
    "/nsman.fcgi" => (
        "main" => (
            "socket" => djp + "/nsman/nsman.sock",
            "check-local" => "disable",
        )
    ),
)
alias.url = (
    "/media/" => "/usr/local/python25/lib/python2.5/site-packages/
django/contrib/admin/media/",
)
url.rewrite-once = (
    "^(/media.*)$" => "$1",
    "^/favicon\.ico$" => "/media/favicon.ico",
    "^(/.*)" => "/nsman.fcgi$1"
)

* urls.py

from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
    (r'^admin/(.*)', admin.site.root),
)

* login from section.

<div id="content-main">
<form action="/nsman.fcgi/admin/" method="post" id="login-form">
  <div class="form-row">
    <label for="id_username">Username:</label> <input type="text"
name="username" id="id_username" />
  </div>
  <div class="form-row">
    <label for="id_password">Password:</label> <input type="password"
name="password" id="id_password" />
    <input type="hidden" name="this_is_the_login_form" value="1" />
  </div>
  <div class="submit-row">
    <label>&nbsp;</label><input type="submit" value="Log in" />
  </div>
</form>

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

Reply via email to