vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   New Posting Features - Zoints Anonymous Posting - Improved privacy for members (https://vborg.vbsupport.ru/showthread.php?t=177694)

Drpepper99uk 10-15-2009 06:06 PM

Hi,

I have this mod installed, and I'm having problems with it. I have 3 types of usergroups(Admin(which is me) one moderator and several members. Everytime I go to use this mod in a selected forum catagory it keeps posting my supposdly annoymous posts as my members user names instead of just a the defualt setting.

Any idea's as to what would cause this to happen?

Mike.

neo314 10-22-2009 06:10 AM

I was using this MOD on 3.8.4 successfully. I uploaded 3.8.4 PL1 and it isn't working. I read about editing the templates, but it has been so long, if I did this, I don't remember what I did. Can anyone tell me what broke?

mattbarb 11-17-2009 02:03 PM

Quote:

Originally Posted by neo314 (Post 1903557)
I was using this MOD on 3.8.4 successfully. I uploaded 3.8.4 PL1 and it isn't working. I read about editing the templates, but it has been so long, if I did this, I don't remember what I did. Can anyone tell me what broke?

same happened to me. the plugin is completely missing from my system after the PL1 upgrade

neo314 11-17-2009 09:41 PM

Quote:

Originally Posted by mattbarb (Post 1915904)
same happened to me. the plugin is completely missing from my system after the PL1 upgrade

I meant to post back. Did you get it fixed? I did find that the update, this time, did wipe out my template changes. That resolved the issue.

JamesGunner 12-23-2009 09:11 PM

I would love to see this on vb4 :)

neo314 12-24-2009 03:57 AM

Ditto regarding VB4

Tyran1 12-26-2009 06:26 PM

Groups??

dirtycrow 12-30-2009 09:09 PM

Quote:

Originally Posted by JamesGunner (Post 1936819)
I would love to see this on vb4 :)

yes please!

Jack Black 01-02-2010 08:17 AM

Definitely need this on vb4!!

MrRem 01-05-2010 07:25 AM

Can you make certain forums ONLY allowing anonymous posting?

neo314 01-05-2010 02:19 PM

Quote:

Originally Posted by MrRem (Post 1947645)
Can you make certain forums ONLY allowing anonymous posting?

Yes. That is one of the features of the plug-in.

MrRem 01-06-2010 06:39 PM

How do I make it on by default?

MrRem 01-06-2010 06:45 PM

Found it on your community:

Quote:

I found out a way to automatically check the box.

Click "Search In Templates" and search for this piece of code:

<if condition="$show['anonymous']"><div><input type="checkbox" id="cb_anonymous" class="bginput" name="anonymous" value="1"

Now replace it with this:

<if condition="$show['anonymous']"><div><input type="checkbox" id="cb_anonymous" class="bginput" name="anonymous" value="1" checked="checked"

The box will automatically be checked now.

Thanks to Jase2, as I came up with this idea based off his hack:
https://vborg.vbsupport.ru/showthread.php?t=169444

ktaylor 03-01-2010 05:12 AM

any chance for an upgrade to VB4?

BBF 03-17-2010 07:29 AM

I upgraded it by myself to vBulletin 4.
But i need author permission to release it.
His last activity was in April 2009 =\

New Joe 03-17-2010 08:08 AM

It's one of the last mods I'm waiting for before I move to vB4, maybe PM one of the Mods or Admin on here, see what they say.

New Joe 03-31-2010 04:37 AM

BBF, and chance you could get back to my PM mate. Thanks.

TrudyD 04-03-2010 01:43 PM

This is something I definately need. How do I go about installing it? I'm not real cyber savvy but can follow simple instructions. LOL Thanks!

ktaylor 04-08-2010 07:33 AM

was it difficult to update BBF? or just one or 2 modifications to the plugin?

MrRem 04-08-2010 07:59 AM

Is there a way like the old Anon posting to make replies show like this:

Anon A
Anon B replied
Anon A replied
Anon C replied

etc.

So each new Anon user has their own Anon posting so conversations are easier to follow?

ktaylor 04-10-2010 07:04 AM

i bet you'd have to create users in order for that to occur and then have the software point to those users, understanding when they should pop in...which might be some fairly extensive coding

dirtycrow 04-20-2010 04:25 AM

Quote:

Originally Posted by BBF (Post 2005336)
I upgraded it by myself to vBulletin 4.
But i need author permission to release it.
His last activity was in April 2009 =\

good lord my site needs this but we've gone with out since we upgraded

Quote:

Originally Posted by New Joe (Post 2005352)
It's one of the last mods I'm waiting for before I move to vB4, maybe PM one of the Mods or Admin on here, see what they say.

I hope they say the update can be released to the public. it looks like the author has left town and isn't coming back.

ktaylor 04-20-2010 05:02 AM

well, that makes me wonder if, since the author is gone, can a new version be put up by a new author then?

the software is open source is it not?

ktaylor 05-04-2010 09:37 AM

well, i went over to the Zoints forum and like others previously, posted a request to either get an update or allow the other member to post his.

and after a week of it being posted, no response. shoot, with that, i'd say they no longer want to own this component.

here's the forum if anyone wants to let them know that there's more than just a few of us interested in getting this upgrade.

http://network.zoints.com/showthread.php?t=5124

Jack Black 05-10-2010 07:47 PM

I started that thread, and have just given them another plea to upgrade it!

MrRem 05-13-2010 09:09 AM

Quote:

Originally Posted by ktaylor (Post 2018770)
i bet you'd have to create users in order for that to occur and then have the software point to those users, understanding when they should pop in...which might be some fairly extensive coding

There was an old Anon Posting mod that did exactly that though.
was for version 2 though.

BirdOPrey5 06-15-2010 04:50 PM

To remove the IP address so mods can't see who it is do the following:

Edit the postbit or postbit legacy template.
Replace the number '51' with the forumid of your anonymous forum.

Find:
Code:

$post[onlinestatus]
Above it add:
Code:

<if condition="$thread['forumid'] != 51"> <!-- START ANON IF -->
Find:
Code:

$post[iplogged]
Below it add
Code:

</if> <!-- END ANON IF -->

Guest190829 07-14-2010 08:43 PM

I took a quick glance at the code, the upgrade to vBulletin 4.0 is very simple, a single template edit; I'll post the template change tomorrow.

This of course is an exact port of the current mod: attachments will still not work, who's online will still show information (but I think you can disable User is Viewing X Thread per forum via the forum manager, which may be a temporary solution)...etc,etc,...

dirtycrow 07-14-2010 08:53 PM

Quote:

Originally Posted by Danny.VBT (Post 2069228)
I took a quick glance at the code, the upgrade to vBulletin 4.0 is very simple, a single template edit; I'll post the template change tomorrow.

This of course is an exact port of the current mod: attachments will still not work, who's online will still show information (but I think you can disable User is Viewing X Thread per forum via the forum manager, which may be a temporary solution)...etc,etc,...

so awesome, thank you!

Guest190829 07-17-2010 03:59 AM

Please TEST these edits before making them live on your active forum. There is no guarantee the code works, I tested it briefly on a single local development forum on vB 4.0.1 !
__________________________________________

1.) Template Edit


Open template "newpost_usernamecode"

Find:

HTML Code:

    </div>
</vb:if>

Add above :

HTML Code:

<vb:else />
<vb:if condition="$show['anonymous']">
              {vb:phrase anon_posting_as} {vb:raw bbuserinfo.musername} <br />
              <label for="cb_anonymous"><input type="checkbox" id="cb_anonymous" class="bginput" name="anonymous" value="1"  <vb:if condition="$vbulletin->GPC['anonymous']">checked="checked"</vb:if>/>{vb:phrase zointsanony_anonymous_post}</label>
</vb:if>


2. ) Add Phrase:


Phrase Type: Posting
Product: Zoints Anonymous Posting
Variable name: anon_posting_as
Text: "Currently Posting As"

stev35555 07-28-2010 09:29 AM

Quote:

Originally Posted by Danny.VBT (Post 2070454)
Please TEST these edits before making them live on your active forum. There is no guarantee the code works, I tested it briefly on a single local development forum on vB 4.0.1 !
__________________________________________

1.) Template Edit


Open template "newpost_usernamecode"

Find:

HTML Code:

    </div>
</vb:if>

Add above :

HTML Code:

<vb:else />
<vb:if condition="$show['anonymous']">
              {vb:phrase anon_posting_as} {vb:raw bbuserinfo.musername} <br />
              <label for="cb_anonymous"><input type="checkbox" id="cb_anonymous" class="bginput" name="anonymous" value="1"  <vb:if condition="$vbulletin->GPC['anonymous']">checked="checked"</vb:if>/>{vb:phrase zointsanony_anonymous_post}</label>
</vb:if>


2. ) Add Phrase:


Phrase Type: Posting
Product: Zoints Anonymous Posting
Variable name: anon_posting_as
Text: "Currently Posting As"

Thanks for this, i have installed it but i want this to be avaliable to everyone and not just one user, can that be done? It asks for userid

Guest190829 07-29-2010 07:34 PM

The userid is the ID of the user account you want to show up as the Anonymous poster (you should create this via the Admin CP), not who can use it. Make sense?

ragarcia87 08-11-2010 06:07 AM

Thanks Danny.VBT! You are the man. :) I've been wanting to use this mod again and was actually coming here to download it and update the code for vB4 myself, lol. :)

dirtycrow 08-11-2010 12:51 PM

awesome, thank you!

dirtycrow 08-11-2010 02:32 PM

1 Attachment(s)
when going to the advanced post new thread or post screen the "title" field is really tiny now after the template edit.

suggestions?

Guest190829 08-11-2010 03:36 PM

Thanks, I'll look at this tomorrow morning before work. :)

biome.pat 08-24-2010 03:42 PM

Quote:

Originally Posted by MrRem (Post 2017821)
Is there a way like the old Anon posting to make replies show like this:

Anon A
Anon B replied
Anon A replied
Anon C replied

etc.

So each new Anon user has their own Anon posting so conversations are easier to follow?

I've used this mod for awhile, and it's just way simply to just ask folks to clarify. Our thread-starters are always anonymous in one forum, and sometimes people reply anonymously too. They simply started each reply with "OP here" or "not the OP" (original poster), and it solved itself :)

BirdOPrey5 08-24-2010 03:46 PM

Of course the above relies on trusting users to be truthful... I know for a fact sometimes my users will pretend to be the original poster, when they are not- because I'm the OP. :)

biome.pat 08-24-2010 04:07 PM

haha yeah, you're right, but you kicked up a fuss, right? As admin, I'd just go to the anonymous log and deal with the imposter, if it ever came to it

biome.pat 08-24-2010 04:07 PM

By the way, thanks Danny.VBT!


All times are GMT. The time now is 01:37 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.01445 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
  • (4)bbcode_html_printable
  • (11)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