Index: project_faq.html =================================================================== --- project_faq.html (revision 6644) +++ project_faq.html (working copy) @@ -87,6 +87,7 @@ db-4.X.
  • I'm getting "Function not implemented" errors on RedHat 9, and nothing works. How do I fix this?
  • +
  • Why SVN log says "no author" after I committed/imported files via apache server?
  • References: @@ -1028,10 +1029,23 @@

  • Use a recent (2.5.x) kernel with the NPTL support included.
  • - +

    Why SVN log says "no author" after I committed/imported files via apache server?

    +

    If you allow anonymous write access to the repository via apache server, the Apache +server never challenges svn client for a username. The apache just treats all accesses +as anonymous access and thus you got "no author" in log like below:

    +
    +$ svn log Makefile
    +----------------------------------------------------------------------
    +-- rev 24:  (no author) | 2003-07-29 19:28:35 +0200 (Tue, 29 Jul 2003)
    +
    +

    Refer to SVN manual "Networking a Repository" for how to configure your Apache server with access permission.

    + + + +