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 - Zoints Anonymous Posting - Improved privacy for members (https://vborg.vbsupport.ru/showthread.php?t=129108)

dirtycrow 04-30-2008 09:37 PM

using 3.7.0 gold

very sad, this is still not working for me no matter what i do. the template edits, the
Quote:

$vbulletin->GPC['setting']

and replace with:

$settings
edit

when i go to the plug in setting and select the forums i want to apply it to in
Quote:

Select the forums you want to have Anonymous posting enabled in
and then click save the setting simply do not appear to take.

Mum 04-30-2008 10:11 PM

I did the 'fix'
Quote:

A solution for 3.7 users has been found https://vborg.vbsupport.ru/external/2008/04/1.gif

Go to your AdminCP > Plugin Manager > Zoints Anonymous Forum Selection (admin_options_processing)

Find
$vbulletin->GPC['setting']
and replace it with
$settings


But it doesn't work :( It will not remember the forums you have selected for anon posting.

dirtycrow 04-30-2008 10:33 PM

Quote:

Originally Posted by Mum (Post 1503926)
I did the 'fix'

But it doesn't work :( It will not remember the forums you have selected for anon posting.

EXACTLY! same issue over here!

Zoints 05-01-2008 04:46 AM

<a href="https://vborg.vbsupport.ru/showthread.php?t=177694" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=177694</a>

3.7 Compatible version.

lostgirl815 06-12-2008 01:02 AM

I wish I had read the end of this thread first. lol

The 3.7 version does work. Thanks!

Namaless 07-22-2008 10:25 PM

Quote:

Originally Posted by Zoints (Post 1504158)

Works correctly with 3.7 thanks. :)

PGAmerica 10-11-2008 03:12 AM

Is there an option somewhere to have usergroup control on this? I would love to allow only certain usergroups the option to post anonymously.

Coling 01-16-2009 10:51 PM

Any development work for version 3.8 and beyond to 4.0+?

tuwebfacil 01-17-2009 04:31 PM

Would be great to have news about it.

vespillo 08-19-2009 10:20 PM

for those of you having problems with the Anonymous Log not containing information when people use the Quick Reply box, here is a solution. Chances are that you are using the AJAX quick reply and there simply isn't a hook setup for it in this mod. Luckily the fix is very easy.

1. Go to your admincp
2. Navigate to Plugins & Products, and then into Add New Plugin
3. Enter the following:

Product: Zoints Anonymous Posting
Hook Location: newreply_post_ajax
Title: Unload Anonymous (AJAX)
Execution Order: 5
Plugin PHP Code:
Code:

if ($vbulletin->GPC['anonymous'])
{
        $vbulletin->userinfo = $olduser;
        $vbulletin->db->query_write("
                INSERT INTO " . TABLE_PREFIX . "anonymous_log
                        (userid, dateline, postid, threadid, forumid)
                VALUES (
                        " . intval($vbulletin->userinfo['userid']) . ",
                        " . TIMENOW . ",
                        " . intval($newpost['postid']) . ",
                        " . intval($threadinfo['threadid']) . ",
                        " . intval($foruminfo['forumid']) . "
        )");
}

Plugin is active: Yes

4. Save.

Now go and make a post using the quick reply, and you should see it being properly logged into the Anonymous Log! Hope it helps someone out there :)

https://vborg.vbsupport.ru/


All times are GMT. The time now is 03:08 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.01243 seconds
  • Memory Usage 1,740KB
  • 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
  • (1)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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