LepeKaname
July 27th, 2009, 01:00 AM
Please don't close/move/remove/disintegrate this thread, please read.
I'm aware that the "[SOLVED]" button/link was removed because of performance issues: http://ubuntuforums.org/showthread.php?t=1044714
But still there are plenty of people (including me) that want to use that feature. We know that these are the only ways to do it right now:
1) to go back to the first post, edit -> go Advanced and then add "[SOLVED]" to the title.
2) Adding the Tag solved
Adding a tag is faster than the first one, but still is not the "common" way, not easy to find, and we end now with 2 different methods.
As many (much) of the people asking for help are new (or almost new) in this forum, we need a way to make it visible. That way, we can help them better.
If modifying your own title is not hitting the server load, then just add the "SOLVED" button (pretty visible), and when clicking on it, let the code to pre-append automatically the "[SOLVED]" string to the title:
UPDATE threads SET title = CONCAT("[SOLVED] ",title) WHERE thread_id = $id
And that's all! ... of course one more line should be added to the php code:
$solved_button = (strpos($title,"[SOLVED]") === false)?true:false;
With those simple 2 lines (almost), we all can be beneficed of the "SOLVED" feature.
Who agrees/disagree?
-----------------------------------------------------------------
"SOLVED" related threads:
http://ubuntuforums.org/showthread.php?t=1207190&highlight=solved
http://ubuntuforums.org/showthread.php?t=1195792&highlight=solved
http://ubuntuforums.org/showthread.php?t=1197010&highlight=solved
I'm aware that the "[SOLVED]" button/link was removed because of performance issues: http://ubuntuforums.org/showthread.php?t=1044714
But still there are plenty of people (including me) that want to use that feature. We know that these are the only ways to do it right now:
1) to go back to the first post, edit -> go Advanced and then add "[SOLVED]" to the title.
2) Adding the Tag solved
Adding a tag is faster than the first one, but still is not the "common" way, not easy to find, and we end now with 2 different methods.
As many (much) of the people asking for help are new (or almost new) in this forum, we need a way to make it visible. That way, we can help them better.
If modifying your own title is not hitting the server load, then just add the "SOLVED" button (pretty visible), and when clicking on it, let the code to pre-append automatically the "[SOLVED]" string to the title:
UPDATE threads SET title = CONCAT("[SOLVED] ",title) WHERE thread_id = $id
And that's all! ... of course one more line should be added to the php code:
$solved_button = (strpos($title,"[SOLVED]") === false)?true:false;
With those simple 2 lines (almost), we all can be beneficed of the "SOLVED" feature.
Who agrees/disagree?
-----------------------------------------------------------------
"SOLVED" related threads:
http://ubuntuforums.org/showthread.php?t=1207190&highlight=solved
http://ubuntuforums.org/showthread.php?t=1195792&highlight=solved
http://ubuntuforums.org/showthread.php?t=1197010&highlight=solved