vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   New Posting Features - LAM - Dispute Resolution (https://vborg.vbsupport.ru/showthread.php?t=252472)

mawby 04-08-2011 08:52 AM

Quote:

Originally Posted by morrow (Post 2177339)
That's about it. If you can do this great, if not, no big deal. I think 1 and 2 are more important than 3 at the moment.

I'll add them to the list. I can't say when they'll get done though.

Quote:

Originally Posted by Sforums (Post 2180620)
Great stuff, love it.
However, today I doscovered serious problem:

Dispute thread was initiated and all of a sudden member who is not involved in dispute posted. His post came from mobile phone. At my forum we use tapatalk (https://vborg.vbsupport.ru/showthrea...light=tapatalk). I checked all permissions, used my forum testing ID and always received message that I can't get access to disputed thread, which is the way it should be. There must be some kind of conflict between these 2 mods, would you please look into it?

I suspect Tapatalk bypasses the normal route to creating posts/threads and performs the checks itself. As much as my mod knows nothing about the existence of Tapatalk or what to do with it, Tapatalk knows nothing about my mod either! Neither is at fault. :)

Unfortunately for me I do use Tapatalk on my site (well I don't, but users of my site do) so it's in my best interest to take the time to bridge the two mods. It won't be for a couple of weeks yet though.

Quote:

Originally Posted by Sforums (Post 2180681)
It would be nice to have an option to mark thread as "Dispute Resolved". Any ideas how to do this?

I'll look into adding the option, but again it may be a few weeks before I get a chance to look at it.

mawby 04-23-2011 07:19 AM

I've had a quick look at the Tapatalk code and as suspected it does by-pass the normal vB code and therefore doesn't execute any of the hooks needed to allow the Disputes Resolution add-on to work. However, the calls to the necessary hooks are in the Tapatalk files but they are commented out. By un-commenting the hooks it is possible to prevent Tapatalk creating threads in a Disputes forum (necessary because Tapatalk is not able to collect the disputed user names needed by this add-on), and prevent it from allowing people to reply to Dispute threads of which they do not belong. There are some limitations to this though...
  • None of the extra privacy options of this add-on will work with Tapatalk
  • It is not possible to create a Dispute using Tapatalk
  • The error messages returned when trying to create a thread/post are generic and not relevant to the Disputes add-on

I also want to state clearly that...
  • Applying these changes may break Tapatalk! By un-commenting the hooks you are exposing Tapatalk to all of your installed add-ons that use these hooks and although my Disputes Resolution add-on works fine other add-ons may not.
  • These changes will need re-doing every time you update Tapatalk
  • I make no guarantees that these changes will work with future versions of Tapatalk
  • Although I will try and keep the Disputes Resolution add-on and Tapatalk working together (for my own sites benefit if nothing else) I cannot offer any support for problems arising by making these changes. You make these changes at your own risk.

With that said, if you want basic Disputes Resolution support within Tapatalk then un-comment (remove the // from the beginning of) the following lines...

Code:

mobiquo/functions/new_topic.php
//($hook = vBulletinHook::fetch_hook('newthread_post_start')) ? eval($hook) : false;

mobiquo/functions/reply_post.php
mobiquo/functions/reply_topic.php
mobiquo/functions/get_quote_post.php
//($hook = vBulletinHook::fetch_hook('newreply_start')) ? eval($hook) : false;


reddyink 04-24-2011 10:56 PM

Great Mod!. Let to me know what does it take to add below functionality (I am willing to pay). I would like use this as a Thread Permissions MOD.

1) When a user is posting a thread, they will have option of selecting "Disputed Thread" Yes or No.

If No is selected, it becomes a general thread where everyone can use it. If Yes is selected only listed users can use the thread.
(or if no usersnames are entered, it becomes a public thread (all the forum permissions apply)
2) User has an option to enter User Group name and/or Social Group name. In that case, all the members of social group will be able to reply to the thread.

Thank you! PM me what does it take to do it.

Downloaded > Installed > Rated 5> Nominated

ProFifaLeagues 04-28-2011 06:35 PM

Great mod and something we will use heavly on our forum!
Is there anyway i can add some simple changes to offer some set Disputes ????

Ie we play Fifa and it could be used to arrange games that havent been played between members....

mawby 04-29-2011 03:01 PM

I'm going to be looking at all the requests made for this mod in the next couple of days so I can try and release the next version with all the features in that everyone have asked for.

Quote:

Originally Posted by rammieone (Post 2189765)
Is there anyway i can add some simple changes to offer some set Disputes ????

Ie we play Fifa and it could be used to arrange games that havent been played between members....

I'm not sure I understand, can you provide an example of what you mean.

ProFifaLeagues 04-29-2011 05:41 PM

Just some way of templete edits or other that can be set with options to enter info
For us some we would use being

Arrange game for IE time and date
Can you play IE Yes or No drop down box or just a reply space
Can play at this IE time and date (again some form of box or drop down to enter info

mawby 05-01-2011 12:07 PM

I've updated the product. This latest update fixes/adds...

Quote:

Originally Posted by mawby (Post 2177266)
The admin option still appears for all forums but if it's selected on a forum that doesn't have disputes turned on the user will get a friendly error message instead of an SQL error. When I get a bit more time I'll try and stop the menu option appearing at all when in a non-disputes forum.

Done. If you look at the instructions on the first post about editing the SHOWTHREAD template you'll see there are more lines to add now. For anyone upgrading simply do the following...

Code:

Find...
<li><label><input type="radio" name="do" value="LAM_DisputeResolution" tabindex="10" /> {vb:rawphrase LAM_DisputeResolution_Title}&hellip;</label></li>

Replace with...
<vb:if condition="$vboptions['LAM_DisputeResolution_GlobalEnable'] || in_array($threadinfo['forumid'], array($vboptions['LAM_DisputeResolution_DisputeForumIDs']))">
<li><label><input type="radio" name="do" value="LAM_DisputeResolution" tabindex="10" /> {vb:rawphrase LAM_DisputeResolution_Title}&hellip;</label></li>
</vb:if>

Quote:

Originally Posted by morrow (Post 2177339)
1. I'd like to be able to enable this in any forum however, when enabling in a forum, you MUST enter user names otherwise it won't allow you to post. I'd like to simply add the usernames but only if I want to add them. The way it's currently set up, one has to ideally create a new forum.

Quote:

Originally Posted by reddyink (Post 2188285)
1) When a user is posting a thread, they will have option of selecting "Disputed Thread" Yes or No.

If No is selected, it becomes a general thread where everyone can use it. If Yes is selected only listed users can use the thread.
(or if no usersnames are entered, it becomes a public thread (all the forum permissions apply)

Done. There is a new "Optional Disputes" setting that will skip the "You must enter the usernames of those you are disputing." test when enabled.

Quote:

Originally Posted by morrow (Post 2177339)
2. The ability to simply enable this in all forums and/or by forum ID's rather than having to go into each forum and ticking the button would of course be a great option.

Done. You can now specify the forums this is enabled for as a comma separated list on the products settings page, and there is also a "Globally Enabled" option too.





On my to-do list when I next get a spare couple of hours...

Quote:

Originally Posted by morrow (Post 2177339)
3. Now this one would really be cool... How about an option whereas you can input the users you DON'T want to see your new thread... For instance... UserA creates a new thread and doesn't want USER C, USER T and/or USERY to be able to read it and/or reply to it. However, ALL other users can do what the rules apply to.

I think this is out of scope of this product... however, I agree the product does lend itself well to such an idea so I will release a separate product based on the code of this one that can be used to ban a user from a thread. Being a separate product will allow me to add features that I'd find useful on my site like auto banning people on ignore lists and adding a quick ban from thread option to the postbit. I'll let you know when this is ready.

Quote:

Originally Posted by reddyink (Post 2188285)
2) User has an option to enter User Group name and/or Social Group name. In that case, all the members of social group will be able to reply to the thread.

Would this be an additional field or replace the usernames list? (For example, would you want to be able to ban user x OR users in group Y, or ban user X AND anyone in user group Y)

Quote:

Originally Posted by rammieone (Post 2190063)
Just some way of templete edits or other that can be set with options to enter info

So you simply want it to collect additional information and display it at the top of the thread? Or would this information be collected at post level instead of thread level? Either way this might also be out of scope of this product but I could release something to do the job as a separate product.

ProFifaLeagues 05-01-2011 01:34 PM

If the info could be collected at post level that would be superb Nhawk

mawby 05-04-2011 09:57 PM

Quote:

Originally Posted by mawby (Post 2190636)
I think this is out of scope of this product... however, I agree the product does lend itself well to such an idea so I will release a separate product based on the code of this one that can be used to ban a user from a thread. Being a separate product will allow me to add features that I'd find useful on my site like auto banning people on ignore lists and adding a quick ban from thread option to the postbit. I'll let you know when this is ready.

As promised... https://vborg.vbsupport.ru/showthread.php?t=263142

BLUSpy 05-10-2011 05:16 PM

I am not sure if it is just my settings that are or wrong or something is wrong with this product.

Like mentioned up thread I am using this product so that members of my website can create private threads between each other for role-play.

When you click on their profile and then click "View all posts" (and subsequently do a search) people who are not apart of the dispute can view the messages in the dispute thread. I have my settings configured so that they should not be able to view the dispute threads at all.

I have in my settings "Private Disputes" set to Yes and "Extra Privacy" set to Yes.


All times are GMT. The time now is 05:52 PM.

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.01265 seconds
  • Memory Usage 1,783KB
  • 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
  • (2)bbcode_code_printable
  • (12)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
  • (10)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