Page 1 of 1
[SOLVED] 'signup' or 'lost password' links on index page
Posted: 29 May 2005, 19:54
by Yes
Hi, this is my first message here :) My forname is Chris, hope you have a good day :)
Well i have a question ;)
I just updated 0.19 to last built.
Since yesterday (and i don't know why) the log page doesn't display 'signup' and 'lost password' link anymore.
I checked config inc file and SIGNUP is allowed (ON)
I don't know why links disappear :( so no one could register anymore.
Any help would be appreciated
Posted: 30 May 2005, 06:47
by Narcissus
Hi Chris,
Is it only these links that have gone missing? If you log in yourself, are there any other strings missing?
I'm just trying to find out if this issue is related to the issue being discussed in
http://forums.mantisbt.org/viewtopic.php?t=361 or not...
Thanks,
Lincoln.
Posted: 30 May 2005, 09:54
by Yes
Hi, thanks for your reply :)
Is, only those two links are missing. I checked the login page, they call a function() to display them.
You can check at
http://www.linkedscene.com
Found !
Posted: 30 May 2005, 21:21
by Yes
So i found how to solve my problem and i think it's a bug, i will try to explain
When i was under Mantis 0.19 i had only on project.
I updated to 1.0.0a2 and all were working fine
I created a NEW one here then i deleted the old project will all reports included (no need).
My links on index page disapears at this moment, config was ok all ON.
I checked php code and didn't see anything wrong.
So i decided to check TABLES and i saw a config tables in bugtracker db (mantis_config_table)
The first record was project_id but was set to '0' and MY project (the new one) is number 4. Then field 'enable_email_notification' was set to '0' too.
Code: Select all
UPDATE `mantis_config_table` SET `value` = '1' WHERE `config_id` = 'enable_email_notification' AND `project_id` =4 AND `user_id` =0 LIMIT 1 ;
I just fixed that and all is working now.
My question for coders ;) Why to set a record with enable_email_configuration IF you have everything in config.php files ???
Disturbing :)
By the way, thanks to Narcissus, the only one who tried to help me !
Posted: 03 Jun 2005, 01:23
by thraxisp
The configuration tables are new in 1.0.0. The intent is to phase out the config_inc.php file for all but database identification and obscure settings.
Your setting is curious as we do not yet have a GUI setting to control "enable_email_notification".