Changes between Initial Version and Version 1 of Ticket #12907


Ignore:
Timestamp:
Oct 21, 2016, 3:20:01 AM (8 years ago)
Author:
Jun Omae
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12907 – Description

    initial v1  
    66c.      sudo –H pip install - -upgrade setuptools
    77d.      sudo –H pip install trac
    8 used mod_python \\
     8used mod_python
    99
    1010Installed AccountManager using HtPasswd as per here
     
    1818Otherwise, the enabled/disabled state of trac.web.auth.loginmodule carries from one project to the other and I lose the ability to login to either the project with Account Manager or the other 2.
    1919
    20 trac.ini for project with Account Manager \\
    21 [account-manager] \\
    22 account_changes_notify_addresses = chappewr@critical.com \\
    23 allow_delete_account = false \\
    24 htpasswd_file = /var/trac/TEST/test.htpasswd \\
    25 htpasswd_hash_type = md5 \\
    26 notify_actions = new,change,delete \\
    27 password_store = HtPasswdStore \\
    28 [components] \\
    29 acct_mgr.htfile.htdigeststore = enabled \\
    30 acct_mgr.web_ui.accountmodule = enabled \\
    31 trac.web.auth.loginmodule = disabled \\
    32  
     20trac.ini for project with Account Manager:
     21{{{#!ini
     22[account-manager]
     23account_changes_notify_addresses = chappewr@critical.com
     24allow_delete_account = false
     25htpasswd_file = /var/trac/TEST/test.htpasswd
     26htpasswd_hash_type = md5
     27notify_actions = new,change,delete
     28password_store = HtPasswdStore
     29[components]
     30acct_mgr.htfile.htdigeststore = enabled
     31acct_mgr.web_ui.accountmodule = enabled
     32trac.web.auth.loginmodule = disabled
     33}}}
    3334I copied and pasted htfile as htpasswdstore from trac install instructions, but it appears as htdigeststore (and works).
    3435
    35 trac.ini for other projects only has \\
    36 [components] \\
    37 trac.web.auth.loginmodule = enabled \\
     36trac.ini for other projects only has:
     37{{{#!ini
     38[components]
     39trac.web.auth.loginmodule = enabled
     40}}}
    3841
    3942Please tell me what I am doing wrong or if what I am trying to do is a new feature request.