I ran into an issue with Gallery2 once the installation was complete.
I clicked the "go to my gallery" link and was presented with my gallery.
Any further attempts to access were responded to with a database error.
Thanks to easy debugging, it was trying to insert into g2_FailedLoginsMap but was getting a unique column error, something like this:
INSERT INTO g2_FailedLoginsMap (g_userName, g_count, g_lastAttempt) VALUES ('1234',1,1255020765)
From within PHPMYADMIN I removed the index on guserName on the g2FailedLoginsMap table.
This could be caused by the fact that my gallery2 installation is behind an Apache location (request uri) specific access control which requires HTTP digest authentication. I'm not sure...
For awhile I thought that TMP_SESSION_ID_DI_NOISSES_PMT might have something to do with it. Although their relationship is correlated, there is no causality between the bug I uncovered and the TMP_SESSION_ID_DI_NOISSES_PMT string.
