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)
-   -   Add-On Releases - vBExperience 3.8 (https://vborg.vbsupport.ru/showthread.php?t=199556)

madmaca 03-06-2009 12:52 PM

We have installed and enabled this mod - but when we do - some of our users (maybe only the ones with awards) get duplicate posts everytime they post using quick reply. ????

We have disabled it for now - any ideas?

We are using VB 3.8.1

Phalynx 03-06-2009 01:05 PM

Quote:

Originally Posted by madmaca (Post 1761756)
We have installed and enabled this mod - but when we do - some of our users (maybe only the ones with awards) get duplicate posts everytime they post using quick reply. ????

We have disabled it for now - any ideas?

We are using VB 3.8.1

Sounds very strange. Which modifications are installed? Which vBExperience version are you using?

madmaca 03-06-2009 01:10 PM

Quote:

Originally Posted by Phalynx (Post 1761759)
Sounds very strange. Which modifications are installed? Which vBExperience version are you using?

Cyb - Advanced Forum Statistics 6.4

Cyb - PayPal Donate 4.8.2

Inactive Users 3.7.001

Inferno vBShout Lite 2.5.0

Log Logins Hack 2.0

Maximum New Threads/Replies 1.0.2

Multiple Account Registration Prevention 1.0.2

Multiple Login Detector 1.03

PMs Sender 2.0

Prevent Doubleposts 1.0 Beta 4

Real ip detection 2.25

Sakera's Hide Poll Result 1.1

User age Based Permissions 1.0.3

vBadvanced CMPS 3.1.0

Welcome Thread 1.5

vBExperience 3.8.2

Phalynx 03-06-2009 01:18 PM

Please update Prevent Doubleposts 1.0 Beta 4 to the new version:
https://vborg.vbsupport.ru/showthread.php?t=203705

madmaca 03-06-2009 01:34 PM

Quote:

Originally Posted by Phalynx (Post 1761766)
Please update Prevent Doubleposts 1.0 Beta 4 to the new version:
https://vborg.vbsupport.ru/showthread.php?t=203705

OK - I've updated that now - the duplicate posts have gone but now we are getting the redirection page messages each time we post:

"Thank you for posting! You will now be taken to your post. If you opted to post a poll, you will now be allowed to do so."

The redirection messages are switched off in the vbulletin options though.

Which is mentioned as a problem in this thread: http://www.vbulletin.com/forum/proje...uenoteid=74228

Sounds like it's still posting twice but the redirection page is now interrupting the second post...

:confused:

Phrost 03-06-2009 07:47 PM

Quote:

Originally Posted by Phalynx (Post 1761743)

The Awards are attached to the username, not to postbit.

What I'm asking though is where in the templates can we remove them from next to the username, and put them somewhere else?

My forums have a custom postbit that includes a space for such awards above the post content, as you can see here:

https://vborg.vbsupport.ru/

This is where we'd like to move the awards. Which bits of code or templates do we need to adjust to move them?

Phalynx 03-06-2009 08:31 PM

Quote:

Originally Posted by madmaca (Post 1761776)
OK - I've updated that now - the duplicate posts have gone but now we are getting the redirection page messages each time we post:

"Thank you for posting! You will now be taken to your post. If you opted to post a poll, you will now be allowed to do so."

The redirection messages are switched off in the vbulletin options though.

Which is mentioned as a problem in this thread: http://www.vbulletin.com/forum/proje...uenoteid=74228

Sounds like it's still posting twice but the redirection page is now interrupting the second post...

:confused:

Thanks for pointing me to this. Will take a deeper look for next version.

Quote:

Originally Posted by Phrost (Post 1761995)
What I'm asking though is where in the templates can we remove them from next to the username, and put them somewhere else?

My forums have a custom postbit that includes a space for such awards above the post content, as you can see here:

http://www.bullshido.net/images/postbit-example.jpg

This is where we'd like to move the awards. Which bits of code or templates do we need to adjust to move them?

As I said, it's beeing attached to the username, there is no template you can edit to gain what you want.
I will try to include a variable like $xperience_awards for postbit for the next version.

Lord Raiden 03-07-2009 06:22 PM

Promotion system:

can i creat the goups or creat the system the groups ?

when i create how?

RadioErewan 03-07-2009 08:27 PM

Quote:

Originally Posted by MonkYZ (Post 1759596)
Hello everyone ! Can somebody tell me how can i substract points from some members ? For example, i have members that are not active anymore, but they still keep beeing first in the Experience charts... and i want them to lose points for not beeing active. Is there a way (beside giving them infraction points) ?

We have managed it, by multiplying activity by count_post and count_thread

You need to change class_experience.php
Add one line about line no 642
PHP Code:

    $user['xperience_ppd'] = $this->GetPPD($user$vbulletin->options['xperience_avgppd']); 

and then multiply Summary Thread
PHP Code:

    //Summary Thread
    
$xperience['count_thread'] += $xperience['count_threads'];
    
$xperience['count_thread'] += $xperience['count_threads_sg'];
    
$xperience['count_thread'] += $xperience['count_thread_votes'];
    
$xperience['count_thread'] += $xperience['count_thread_replycount'];
    
$xperience['count_thread'] += $xperience['count_thread_views'];
    
$xperience['count_thread'] += $xperience['count_thread_stickies'];
    
$xperience['count_thread'] += $xperience['count_thread_tags'];
    
$xperience['count_thread'] = floor($xperience['count_thread']*$user['xperience_ppd']/100); 

and

PHP Code:

    //Summary Post
    
$xperience['count_post'] += $xperience['count_posts'];
    
$xperience['count_post'] += $xperience['count_posts_sg'];
    
$xperience['count_post'] += $xperience['count_post_thanks'];
    
$xperience['count_post'] += $xperience['count_post_thanks_use'];
    
$xperience['count_post'] += $xperience['count_post_attachment'];
    
$xperience['count_post'] += $xperience['count_post_attachment_views'];
    
$xperience['count_post'] = floor($xperience['count_post']*$user['xperience_ppd']/100); 

(just last lines were added).
You can do it in different point groups too.

BTW, would like to see it by default in Phalynx mod. :-)

It makes ranks more dynamic, and forces users to be active.
Regards

DobieGillis? 03-08-2009 04:20 PM

still loving this mod. One tiny weird issue: I have a user named lex_351 and I cannot give him a gift I bought from the shop. The Mod doesn't recognize that name I assume because he has the _ in the name and user ID does not work. Minor, I know.


All times are GMT. The time now is 11:46 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.02307 seconds
  • Memory Usage 1,774KB
  • 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
  • (3)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)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