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)
-   -   Major Additions - vBExperience 4 (https://vborg.vbsupport.ru/showthread.php?t=245023)

raymondblog 03-08-2011 11:36 PM

The latest VBSEO 3.6 RC2 has maxcdn integration.
However I noticed that the images from vbexperience are not automatically served from maxcdn. Can you make a support it?

DevOne5555 03-09-2011 05:39 AM

Quote:

Points: 4,390, Level: 15

Level completed: 68%,
Points required for next Level: 160

Overall activity: 99.7%
Hey, is there any way to remove the first line? "Level completed: 68%" in postbit?

Thanks

gregory_clayton 03-09-2011 04:09 PM

Not to sure whats going on at my forum but the points system is going crazy..

03-09-2011
12:15 PM Shorty has lost -15 Points for Misc points
12:15 PM Shorty has earned 1 Points for User points
10:42 AM Shorty has lost -1000 Points for Misc points
10:42 AM Shorty has earned 10 Points for Posts points
10:42 AM Shorty has earned 1 Points for User points
09:08 AM Shorty has earned 804 Points for Posts points
09:08 AM Shorty has earned 230 Points for User points
09:08 AM Shorty achieved 1000 Experience Points
09:08 AM Shorty achieved 500 Experience Points
09:08 AM Shorty achieved 3 months registered
09:08 AM Shorty achieved 31 days registered
05:51 AM Shorty has earned 1 Points for Posts points
02:14 AM Shorty has earned 2 Points for User points
02:14 AM Shorty has earned 2 Points for Posts points

All in one day..Any idea why the system could be doing this? my site is wwehq.com

Thanks
Greg

white_tiger 03-10-2011 07:32 AM

hi,

i'm using vbulletin 4.1.2 with vBExperience 4.0.4
i notice that post from deleted topic is calculated.

so for example, user A creates 20 spam topic, he will have 20 posts
even moderator deletes that 20 topics, his 20 posts still calculated toward his point

it is because while a thread deleted, table_post.visible still have value 1, but table_thread.visible have value 2

and vb experience recount calculation algorithm is (at class_xperience.php line 140)

PHP Code:

$posts $vbulletin->db->query_read("SELECT
        COUNT(*) AS count_posts
        FROM " 
TABLE_PREFIX "post AS p
        INNER JOIN " 
TABLE_PREFIX "thread as t ON p.threadid=t.threadid
        WHERE p.visible=1"
.$IgnoreForum."
        AND p.userid="
.$user['userid']); 

it didn't check whether the post belong to deleted thread or not (didnt check thread.visible); compared to vbulletin post calculation algorithm at misc.php line 268

PHP Code:

$totalposts $db->query_first("
            SELECT COUNT(*) AS posts
            FROM " 
TABLE_PREFIX "post AS post
            INNER JOIN " 
TABLE_PREFIX "thread AS thread ON (thread.threadid = post.threadid)
            WHERE post.userid = 
$user[userid]
                AND thread.forumid IN (0
$gotforums)
                AND thread.visible = 1
                AND post.visible = 1
        "
); 

it check thread.visible =1 on where clauses

currently i change

PHP Code:

WHERE p.visible=1".$IgnoreForum." 

to

PHP Code:

WHERE p.visible=1".$IgnoreForum." AND t.visible=

it fixed the problem; hope this bug (if it is really a bug) fixed on next build

vidan 03-11-2011 11:23 AM

i believe phalynx is not interested in this mod anymore.

Dozer826 03-12-2011 03:57 PM

Does this work with 4.1.2?

Sadikb 03-12-2011 04:58 PM

Quote:

Originally Posted by vidan (Post 2172226)
i believe phalynx is not interested in this mod anymore.

That's a pretty silly comment to make.

Sadikb 03-12-2011 04:58 PM

Quote:

Originally Posted by Dozer826 (Post 2172580)
Does this work with 4.1.2?

It's working fine for me on 4.1.1 and since there hardly are any changes from 4.1.1 to 4.1.2 I am sure it will work just fine.

Paidy 03-12-2011 05:03 PM

Apologies if that has been asked. Currently, I am showing the level bar with description, so it is showing the points and level with the total bar (out of 100 levels) underneath it like so:

Points: 16,876, Level: 31
OVERALL LEVEL BAR HERE

What I want is to still show the points and level but have the bar for the number of points until the NEXT level like so:

Points: 16,876, Level: 31
AMOUNT TILL NEXT LEVEL BAR

I have the text and bar showing up underneath the users rank and I like the text being on one line (rather than 2 lines underneath the users posts). Is it possible to have the text I have, but change the bar to the amount till the next level?

Thanks

RollaJedi 03-15-2011 03:40 PM

anybody seen the P man 'round these parts lately?

MrsTryst 03-15-2011 05:16 PM

EDIT:
never mind.. found out how to fix it, thanks for this great plugin ! :D

Alan_SP 03-16-2011 06:03 PM

Achievements are visible for some users, for some aren't. Don't know why. :(

Alan_SP 03-17-2011 03:15 PM

Also, even if I'm saying that achievements are replaced with others, they still appear for some users.

Only solution I see is to strictly restrict achievements between certain range and say that users can loose them. :(

Many, many bugs with achievements system. :(

msorin 03-17-2011 08:33 PM

I get a blank page on /xperience.php?go=awards and

Jack.D 03-19-2011 10:15 AM

I believe there is a bug in 4.1.2

Points: 53, Level: 1
Level completed: 99%,
Points required for next Level: 0

It states it's 99% to the next level, with 0 points remaining, yet I am still level 1, Any fix for this?

smilewbrian 03-19-2011 11:41 AM

I had a problem but figured it out.

rishimodi 03-21-2011 12:40 AM

Quote:

Originally Posted by Alan_SP (Post 2174088)
Achievements are visible for some users, for some aren't. Don't know why. :(

I'm facing the same problem. In fact in my observation achievements cannot be seen for old members and can be seen for new members.

Fix will be appreciated.

Anyways very nice mod.

skol 03-22-2011 09:41 AM

Quote:

Originally Posted by rishimodi (Post 2175637)
I'm facing the same problem. In fact in my observation achievements cannot be seen for old members and can be seen for new members.

Fix will be appreciated.

Anyways very nice mod.


Delete all achievements and rebuild counters.

weetabx 03-22-2011 07:02 PM

runing 4.12 and still on level one even tho i have 7000 od points any ideas ? tried delete and recount cant seem to find were the level up setting is

Paidy 03-22-2011 11:56 PM

I had the problem with some users not having their achievements show up. I found out that they would appear again when a user would earn a new achievment so I just made an easy achievement like ">0 posts" and then they showed up for everyone.

I have another weird problem. For some of my users, their points disappear from the postbit_legacy template when they buy something from the shop. Points show up fine for everyone else, it's just the odd person and the only thing they have in common is it happened after they bought something. Ideas?

Alan_SP 03-25-2011 11:13 PM

Quote:

Originally Posted by weetabx (Post 2176304)
runing 4.12 and still on level one even tho i have 7000 od points any ideas ? tried delete and recount cant seem to find were the level up setting is

Did you install any levels? You need to install levels separately. Choose which levels you need and install it.

Phalynx 03-29-2011 08:03 AM

Thanks for all people providing answers to questions of the users. Sadly to say, my time for this project is still limited. Currently I can provide real support just within the demo site vbaddict.net

The current version of vBulletin.org does not allow me to track down every request. No tracker, no subforum, nothing. Just a long thread that spans over 122 pages.... I would invest more time managing this stuff than I currently invest in coding.

guest9 03-30-2011 08:09 PM

Hi there

great plugin and thanks for your contribution to many vbulletin owners..

is there any change that you include an addon for this mod https://vborg.vbsupport.ru/showthread.php?t=233618 (the paid version). I spoke to that developer and he said he will release new version after 10-15 days..

leclownos 04-04-2011 06:22 AM

Merci pour ce hack !

mybetinfo 04-04-2011 09:02 AM

Quote:

Originally Posted by nitra1000 (Post 2057720)
Nominated and installed, will give a little donation when it goes live too :)

Good work!

One request though, can you make a monthly leaderboard (or a definable period), as I'd like to use this to run monthly or bi-monthly competitions.

Doesn't have to be pretty and can be a backend thing, I'd just like to know the top 3 users for any given period.


I would love to see this feature, i also need this so i can make a monthly competitions based on points they will earn.

Can be done ?

Alan_SP 04-05-2011 08:35 AM

It certainly can be done, but it needs to be programmed. :)

mybetinfo 04-05-2011 02:18 PM

I will pay if needed, also i will pay the guy who made this to help me with this tool to make users to post, i like quality and i don't mind to pay for it.

decentplayboy 04-07-2011 05:56 AM

Hi All, i am currently using this mod with Vbulletin 4.1.0 and i plan to upgrade it to 4.1.3. Does this mod support 4.1.3? Thanks

decentplayboy 04-07-2011 05:58 AM

recently there one of the user experience point gone up to sky high in 1 night (20,300,343 points). How to fix this bug? thanks

madshark 04-12-2011 12:36 PM

Any hack for the Achievements displayed on the postbit be centered? Thanks

stevey123321 04-12-2011 04:33 PM

I am unable to add custom achievements. I put my icon in the xperiance icon folder and it does not show when I get to the point where I choose the icon.

Also with custom achievements, is ther a way admins can just grant them without them being automattic.

If anyone can help please PM me. I will keep checking back here though if you just want to post. Thanks

janvm 04-14-2011 06:53 AM

Poorly it does not work with vBulletin V 4.1.2

bela-meaad 04-16-2011 05:42 AM

this does not work with 4.1.3

any updates?

Skyrider 04-18-2011 01:44 PM

Sooo.. this doesn't work with the latest v4.1.3 version?

Staxed 04-18-2011 02:14 PM

Quote:

Originally Posted by bela-meaad (Post 2185175)
this does not work with 4.1.3

any updates?

Quote:

Originally Posted by FF|Skyrider (Post 2185967)
Sooo.. this doesn't work with the latest v4.1.3 version?

working just fine for me on 4.1.3.

DonosOdD 04-18-2011 05:26 PM

Question: I want to reset everyone's points, levels and achievements. How can I do that?

PS: I use 4.1.2 and it's working fine, everyone.

vitrag24 04-18-2011 06:28 PM

is this working for vb 4.1.3?

Staxed 04-18-2011 07:03 PM

Quote:

Originally Posted by vitrag24 (Post 2186051)
is this working for vb 4.1.3?

did you even READ any of the last few posts? (i dunno, like the one 2 posts up where I said it's working fine for me on 4.1.3?...)

vitrag24 04-18-2011 07:12 PM

i've upgraded from 3.8.3 version i had in vb 3.7.1 to 4.0.4 in vb 4.1.3.. kept 3.8.3 version disabled after i upgraded vb to 4.x..

NOW AFTER I'VE UPGRADED TO 4.0.4 VERSION , IT'S showing both 3.8.3 and 4.0.4 as separate in admincp..

i had even vBExperience - Post Thank You Hack Integration - 1.1.0 in vb 3.7.1, unable to uninstall it too.

now tell me how to uninstall 3.8.3??

very confusing uninstallation process.. unable to run kill_xperience.php file..giving error..

========
update:

i uninstalled 4.0.4 and all 3 uninstalled..
now doing fresh install..each upload again..

vitrag24 04-18-2011 08:27 PM

seems workinh fine on vb 4.1.3..
i'll update l8r if any bugs..
========

does it take count of "likes" received (link button by vbseo)..including facebook likes..?


All times are GMT. The time now is 02:07 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.05139 seconds
  • Memory Usage 1,834KB
  • 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_php_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (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