vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   New Posting Features - Mark Threads As 'Solved' (https://vborg.vbsupport.ru/showthread.php?t=149214)

4x4 Mecca 07-13-2007 02:48 AM

Are the updates with specifying who helped solve it still possible? And that user getting points?

Eric 07-13-2007 02:58 AM

Quote:

Originally Posted by Terrasoft (Post 1289610)
Glad to see the update! Testing it out right now. >_0

:)

Quote:

Originally Posted by 4x4 Mecca (Post 1289675)
Are the updates with specifying who helped solve it still possible? And that user getting points?

Will still be possible, just didn't have the time on this update to include it.

4x4 Mecca 07-13-2007 03:04 AM

No problem. I appreciate all you've done so far!

fox3nova 07-13-2007 03:23 AM

good job! I love it~

4x4 Mecca 07-13-2007 04:38 AM

I'm trying to edit my postbit_legacy and put the solved button next to the other buttons in the bottoms of the posts. However, they don't work down there. Is there a reason you can think of, or should it be as simple as pasting the conditionals down there to display the buttons?

mred 07-13-2007 09:49 AM

I'm very interested in this modification for use in our big forum (www.rc-forum.de).
I am looking forward to the future planned features. The idea with the reputation system is great. I will install this mod at the weekend.

Thanks for that helpful modification.

Eric 07-13-2007 06:27 PM

Quote:

Originally Posted by 4x4 Mecca (Post 1289724)
I'm trying to edit my postbit_legacy and put the solved button next to the other buttons in the bottoms of the posts. However, they don't work down there. Is there a reason you can think of, or should it be as simple as pasting the conditionals down there to display the buttons?

I don't mess with postbit much, but this hack uses $thread and $threadinfo for everything. Postbit *should* be $post

Eric 07-13-2007 06:28 PM

Quote:

Originally Posted by mred (Post 1289856)
I'm very interested in this modification for use in our big forum (www.rc-forum.de).
I am looking forward to the future planned features. The idea with the reputation system is great. I will install this mod at the weekend.

Thanks for that helpful modification.

:) No problem.

StrifeX 07-13-2007 09:15 PM

How about changing the plugin options to select which forums to include SOLVED threads instead of excluded forums.

mred 07-13-2007 10:20 PM

Quote:

Originally Posted by StrifeX (Post 1290275)
How about changing the plugin options to select which forums to include SOLVED threads instead of excluded forums.

Both would be great. Someone have a lot of forums to exclude and others to include ;)

mred 07-13-2007 10:39 PM

I see a problem with solved threads - if a thread is unsolved and a moderator or administrator close that thread because of any important reason, the thread opener can reopen it with using the button 'unsolve thread'.

Could that problem be solved?

mred 07-13-2007 10:53 PM

Sorry, again ..

If you delete the prefix of a solved thread in case of moderation or what else ever you will get an inconsistency and the threadstarter will get an error if he tries to unsolve that thread.

any idea?

Invalid ID 07-15-2007 03:24 AM

Welcome the upgrade. Please specify what steps do I take to upgrade. Thanks

4x4 Mecca 07-15-2007 04:25 AM

Invalid ID, it's in the first post, there is a section titled upgrading :)

4x4 Mecca 07-15-2007 04:36 AM

Quote:

Originally Posted by SecondV (Post 1290176)
I don't mess with postbit much, but this hack uses $thread and $threadinfo for everything. Postbit *should* be $post

That worked great, it shows up when I use this
Code:

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
But I can not get the conditionals to work, like this.
Code:

                <if condition="$show['solvedthread']">

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
<else />
<if condition="$show['solvedthread_unsolve']">
<a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /></a>
                        </if>

any idea how to get that working?

Eric 07-15-2007 05:13 AM

Quote:

Originally Posted by 4x4 Mecca (Post 1291590)
That worked great, it shows up when I use this
Code:

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
But I can not get the conditionals to work, like this.
Code:

                <if condition="$show['solvedthread']">

<a href="solved.php?$session[sessionurl]do=marksolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
<else />
<if condition="$show['solvedthread_unsolve']">
<a href="solved.php?$session[sessionurl]do=markunsolved&amp;t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /></a>
                        </if>

any idea how to get that working?

That's because the plugin uses the 'showthread_complete' hook. You could change it to 'showthread_start', should work then.

Quote:

Originally Posted by Invalid ID (Post 1291543)
Welcome the upgrade. Please specify what steps do I take to upgrade. Thanks

Upgrade instructions are in the first post, and the 'install.html' in the zip.

Quote:

Originally Posted by mred (Post 1290362)
Sorry, again ..

If you delete the prefix of a solved thread in case of moderation or what else ever you will get an inconsistency and the threadstarter will get an error if he tries to unsolve that thread.

any idea?

I use substr to remove the thread prefix when it's unsolved, that could be causing the error. I'll take a look into it.

Quote:

Originally Posted by mred (Post 1290349)
I see a problem with solved threads - if a thread is unsolved and a moderator or administrator close that thread because of any important reason, the thread opener can reopen it with using the button 'unsolve thread'.

Could that problem be solved?

I'll fix that in the next release.

mred 07-15-2007 02:05 PM

Great, thanks :up:

Only an idea, can you use the prefix from "Thread Prefix"?

Invalid ID 07-15-2007 03:13 PM

Quote:

Originally Posted by 4x4 Mecca (Post 1291582)
Invalid ID, it's in the first post, there is a section titled upgrading :)

Noticed. Thanks a lot :)

HaMaDa4eVeR 07-17-2007 12:33 PM

I'll be gratfull if you give me the product that compatable with 3.5.7 or 3.5 series

4x4 Mecca 07-17-2007 08:33 PM

I tried getting this to show in the threadbit template
HTML Code:

<if condition="$thread['issolved']"><font color="green" size="1">(Solved)</font></if>
but it doesn't show, any idea how to get this to show next to the treads? I have it in the right part, but the code doesn't pull the rigth results.

4x4 Mecca 07-17-2007 09:54 PM

never mind, I got it. Thanks anyway :)

karel1985 08-06-2007 03:39 PM

installed and nominated

Kai77 08-07-2007 07:05 AM

It would be awesome if you also could mark the specific post that gives the solution as "solving post" so users can find the solution more quickly.

flindersredclaw 08-07-2007 08:17 AM

It does work on 3.6.8 - Thanks!

Eric 08-07-2007 05:42 PM

Quote:

Originally Posted by Kai77 (Post 1311700)
It would be awesome if you also could mark the specific post that gives the solution as "solving post" so users can find the solution more quickly.

Interesting.. not a bad idea. Sorta like Experts Exchange does.

sandbender 08-09-2007 06:59 AM

Nice! Installed & working, but really need thread starter only ability.

Anxiously awaiting
"Thread starter can choose to solve a thread, and input the username of who solved it - that user would recieve rep. points. (admin-configurable amount of rep. points)"

Eric 08-09-2007 07:24 PM

Quote:

Originally Posted by sandbender (Post 1313340)
Nice! Installed & working, but really need thread starter only ability.

Anxiously awaiting
"Thread starter can choose to solve a thread, and input the username of who solved it - that user would recieve rep. points. (admin-configurable amount of rep. points)"

> but really need thread starter only ability.

It's already that way, but Admin's or Moderators of said forum can solve/un-solve as well, just like they can do other actions with any other thread...

sandbender 08-10-2007 11:35 AM

Duh! Thanks. When I tested it, I was logged in as admin, and as guest I can't even access those forums I use it in.

Very nice work!

4x4 Mecca 08-11-2007 03:01 AM

Any chance on updating it to allow a thread solver?

djilou 08-12-2007 11:56 AM

Moderator can't solve threads within a forum if he is not the moderator of this forum!

Mecho 08-14-2007 09:15 AM

sounds great .. but i have a question . i'm using thread prefixes mod and i made 2 prefix for one section , named resolved and request ! so how it works : mods should edit user's post and change the prefix from request to resolved . so i'm wondering this way that i'm using is better for use less loading from server and .. or this mod that u publish ??

Thanks

paulvon 08-16-2007 12:04 AM

The concept is great.

I followed the instructions and tried an install in 3.6.8.

I do see the "Solved Threads" in the vBulletin Options and have configured it. With no forums excluded.

The problem is
There is no sign of the mod in the Post / Thread Permissions panel.

There is no sign of the ability to mark as solved on the threads.

Do you have any ideas?

Thank you

flickerbox 08-18-2007 02:52 AM

We have not been able to get this to work. 3.6.7P1
Same problem as paulvon-
No sign of the ability to mark as solved on threads, and no sign in Posts/Thread permisisons panel.

Any update on this?

Wheezy 08-31-2007 12:25 AM

Im having the same problem... its not showing up under "thread tools" OR under usuergroup options in the AdminCP.

Eric 08-31-2007 01:33 AM

Are you all, that's having these problems, sure you uploaded EVERY file? Get any errors on product intsall?

Wheezy 08-31-2007 03:10 PM

Ive uploaded the entire "upload" folder and its contents to my root directory, made all the template edits correctly (no errors on install though), and its still not showing up.

Nathan2006 09-01-2007 08:59 PM

Thank you SecondV

Works great! :D

Install

Eric 09-12-2007 10:14 AM

Since I will be starting a new job soon, I will not have any time to work on my modifications.
Therefore, anyone who wants to take my modification(s) and build/improve them further, are free to do so.
All I ask is you give proper credit.

dethfire 09-12-2007 10:30 PM

can the solved prefix be added only to forum view, I don't want to mess with thread title because of google. also can people who can mark a thread be changed via usergroup?

soulweaver 09-13-2007 01:04 AM

Is there any way to have more than one option to choose such as having solved and tested. I run a gaming sites and I want solved for the staff apps, requests, and site feedbacks, and tested for codes? If you can help i would appreciate it.


All times are GMT. The time now is 04:09 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01523 seconds
  • Memory Usage 1,829KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_html_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete