Changes between Initial Version and Version 1 of Ticket #2885


Ignore:
Timestamp:
Apr 9, 2008, 7:39:31 PM (16 years ago)
Author:
John Hampton
Comment:

Fixed SQL log formatting

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2885 – Description

    initial v1  
    22 
    33Snip from trac.ini
    4 
     4{{{
    55[components]
    66acct_mgr.* = enabled
     
    88webadmin.* = enabled
    99
    10 
    1110[account-manager]
    1211hash_method = HtDigestHashMethod
    1312password_store = SessionStore
    14 
     13}}}
    1514
    1615When submitting the form to register user 'test' I logged the following statements from Postgres.
    17 
     16{{{
    1817LOG:  statement: SET DATESTYLE TO 'ISO'
    1918LOG:  statement: SHOW client_encoding
     
    4847LOG:  statement: SELECT last_visit FROM session WHERE sid='c65b0b1ed8ad25d555b4d2ec' AND authenticated=0
    4948LOG:  statement: ABORT
     49}}}
    5050
    5151Needless to say, the account is not getting created.  Why are all the transactions being aborted?   Issuing the statements (in particular the INSERT) is successful when doing it from the psql tool logged in as the trac user.