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
[SOLVED] 'signup' or 'lost password' links on index page
Moderators: Developer, Contributor
-
Yes
[SOLVED] 'signup' or 'lost password' links on index page
Last edited by Yes on 30 May 2005, 21:14, edited 1 time in total.
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.
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.
-
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
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
-
Yes
Found !
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.
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 !
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 ;
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 !