You are writing a comment about Installing a Development Deployment of LifeFlow, a Django Blog Solution, here is a quick summary:

Comprehensive instructions on installing and setting up a local deployment of LifeFlow (for those who are moderately in the Django know). This should be all you need to get started using LifeFlow, but I will have another entry soon detailing the little tricks and tips that make LifeFlow helpful.


You are responding to this comment written by Dieter on June 29th 2008, 17:21.

This tutorial worked on Debian/testing but only with Django from the svn.

I use this in the settings.py:

TIME_ZONE = 'Europe/Berlin' LANGUAGE_CODE = 'de-de'

Trying this http://127.0.0.1:8000/entry/2008/Jun/ results in a 404. Guess it is because of the month name. In english it is June in german Juni.

Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/entry/2008/Jun/

Using the URLconf defined in blog.urls, Django tried these URL patterns, in this order:

  1. ^media/(?P<path>.*)$
  2. ^admin/
  3. ^ ^$
  4. ^ ^sitemap.xml$
  5. ^ ^comments/create/$
  6. ^ ^comments/create/(?P<entry_id>d+)/$
  7. ^ ^comments/create/(?P<entry_id>d+)/(?P<parent_id>d+)/$
  8. ^ ^feeds/(?P<url>.*)/$
  9. ^ ^meta/rss/$
  10. ^ ^entry/(?P<year>d{4})/(?P<month>[a-z]{3})/(?P<day>w{1,2})/(?P<slug>[-w]+)/$
  11. ^ ^entry/(?P<year>d{4})/(?P<month>[a-z]{3})/(?P<day>w{1,2})/$
  12. ^ ^entry/(?P<year>d{4})/(?P<month>[a-z]{3})/$
  13. ^ ^entry/(?P<year>d{4})/$
  14. ^ ^entry/$
  15. ^ ^tags/$
  16. ^ ^tags/(?P<slug>[-w]+)/$
  17. ^ ^language/$
  18. ^ ^language/(?P<slug>[-w]+)/$
  19. ^ ^author/(?P<slug>[-w]+)/$
  20. ^ ^author/$
  21. ^ ^articles/$
  22. ^ ^projects/$
  23. ^ ^projects/(?P<slug>[-w]+)/$
  24. ^ ^editor/
  25. ^ ^(?P<slug>[-w]+)/$

The current URL, entry/2008/Jun/, didn't match any of these.

May this helps.

Regards Dieter


Please be aware that comment forms go stale after one hour.





Comments may make use of LifeFlow MarkDown. Raw html will be escaped.


Quick Introduction to LifeFlow MarkDown Syntax

A highlighted code block:

@@ ruby
def a (b, c):
  b * c
end
@@

Other common languages work as well: scheme, python, java, html, etc.

Other markdown syntax:

 ### This is an h3 title
#### This is an h4 title
**this is bold**
*this is italics*

1. This is an
2. ordered list

* And an unordered
* list too

[this is a link](http://www.lethain.com/ "Lethain")