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)

cykelmyggen 08-16-2009 05:37 AM

Sometimes users are asking why they have been losing certain amounts of Expirience-points, which they notice at the Activities page. When I take a look at the Point-settings in the ACP, the only thing set for subtracting points is the Infration parameter. The users losing points hasn't been given any infractions. Could anybody please explain this. My only guess so far, is that is has to do with the amount of time they spend online?

jkcerda 08-16-2009 05:42 AM

reserved

Dutch_Boy 08-16-2009 07:45 PM

Is there someone who using the promotion system? If tried to get it running but no one gets a promotin to a new group :(

Tried this but i didnt work:


Quote:

Originally Posted by Phalynx (Post 1865702)
First of all, disable the vBulletin Promotions. Make also sure you'r Administrator Usergroup is on the excluded list, otherwise you will lose it.
2. Edit the level xml file. Take a look at that part:
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (56,1,2)");
The bold 2 is the usergroupid of the group the user will be switched to whenever he has at least 56 Experience points.

Another example:
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (600,6,3)");
The user will be switched to usergroup #3 when he has at least 600 Experience points.

The usergroupid 2 must be entered for every point/level statement up to the next level:
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (56,1,2)");
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (100,2,2)");
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (200,3,2)");
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (300,4,2)");
....
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (600,6,3)");
3. Import that level file
4. Recount


Kayden 08-16-2009 10:45 PM

Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

SEW810 08-17-2009 02:12 AM

Quote:

Originally Posted by Kayden (Post 1868780)
Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

Yeah, no problem.
Go to your xperience page and you'll see the correct version at the bottom.
Regards :)

KEKforce 08-17-2009 07:32 AM

Quote:

Originally Posted by Kayden (Post 1868780)
Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

Here Also... 3.8.4. not 3.8.4.1. :confused:

Phalynx 08-17-2009 07:52 AM

Quote:

Originally Posted by Matt Lathrop (Post 1867177)
Hey I have a question about the CDP. This is what I have so far on my chat mod... currently I have it working so that when I recount the code it changes points_misc_cdp to 1 if they are in the chat room at the time of the recount. The problem is it won't do it constantly... it only updates when I hit recount and when I do that it dose not add on to the current # (which I guess is what recount is supposed to do) Do you have any suggestion on how to solve the issue?

The Experience Points are only recalculated if the user is logging into vBulletin or ist doing a post. It's not triggered by a chat application...


Quote:

Originally Posted by mikeo9043 (Post 1867208)
I updated that file, but no % still shows up on the xperience page.

Please upload the functions_xperience.php and re-import the product xml. It seems you imported the product with the old functions_xperience.php and therefore it did not update the tables.

Quote:

Originally Posted by gamerfu (Post 1867252)
I noticed vBExperience 3.8.4 counts posts in my "SPAM Games" board towards the user's experience. :(

I have this board set to not to count posts towards the user's final post count. :confused:

You will have to enter the board into the exclusion list of vBExperience


Quote:

Originally Posted by Joshkrz (Post 1867330)
Just a question...

Is there anyway to make it so that some shop items can be like so...



And things like custom title item or exclusive display pictures and stuff like that. If so that would be great!

Sounds great, but will not be included soon.

Quote:

Originally Posted by Joshkrz (Post 1867330)
Also could you add "Achivment" type awards, where more than one user can have an award, for lets say... 100 posts or Active for 1 year ect?

Sorry if I'm asking too much but it would be really great, and thanks for the update, I was about to ask about the activity problem.

Yes, Achievements are already in work as they will come with 3.8.5

Quote:

Originally Posted by ConfusedCartman (Post 1867380)
One more quick thing: Activity doesn't seem to behave as expected. A member half my Average Posts Per Day has twice the Activity percentage as I do, and I have toggled off everything except posts and last activity date (he's active daily, like I am). It's not just this one isolated case either - it seems to be very inconsistent across the board. Isn't there a way to just average out the top X number of members' Average Posts Per Day, then just compare each member's average Posts Per Day to that number and draw a percentage from it? If that's what's supposed to be happening, then I don't think it's working. It's not urgent, but if you could make improvements in future releases, that would be great.

Activity does NOT take the average posts per day, as this is not a value that says if a user is very active. It depends just how long and how many posts the user has written in the past, but not in the last days.

You should check how long the timeframe for the activity is, increase or decrease it and test the result via recount activity.

Phalynx 08-17-2009 07:58 AM

Quote:

Originally Posted by Itchy Nips (Post 1867461)
i just realized that the awards images are not appearing for users that have the "user name images" modification.

I even don't know that modification, but I assume it is using the same hooks.

Quote:

Originally Posted by Harley D (Post 1867952)
Add this to your CONFIG.PHP That should get you back into your ADMINCP.

Thanks for this help to the user.

Quote:

Originally Posted by milsirhc (Post 1868191)
Thanks Harley!

I've manually add a new column xperience_done in my user DB and that allows me to login.

I re-install the mod and uninstall it by first using the kill_xperience.php and then remove the product but the error came back again...

I guess I just leave xperience_done column in there for now...

That was the problem. In the readme for uninstall is written that you have to uninstall it first by removing the product.


Quote:

Originally Posted by cykelmyggen (Post 1868331)
Sometimes users are asking why they have been losing certain amounts of Expirience-points, which they notice at the Activities page. When I take a look at the Point-settings in the ACP, the only thing set for subtracting points is the Infration parameter. The users losing points hasn't been given any infractions. Could anybody please explain this. My only guess so far, is that is has to do with the amount of time they spend online?

Losing points can be caused by deleted posts/threads/discussions, removed buddies/friends, threads that are not pinned anymore, etc...
Also if you have RadioActivity installed, it is removing points...


Quote:

Originally Posted by Dutch_Boy (Post 1868698)
Is there someone who using the promotion system? If tried to get it running but no one gets a promotin to a new group :(

Tried this but i didnt work:

Yes, I know some boards who are using this actively. Also, the Inside SupCom Demoboard is using it.

Phalynx 08-17-2009 07:59 AM

Quote:

Originally Posted by Kayden (Post 1868780)
Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

Yes, as the version of the XML did not change.

Quote:

Originally Posted by KEKforce (Post 1869008)
Here Also... 3.8.4. not 3.8.4.1. :confused:

Overwrite the xperience.php if you want the version number, but it is not needed as the fix for 3.8.4.1 is in the class_xperience.php

RaZoRShawN 08-17-2009 08:46 AM

Quote:

Originally Posted by Phalynx (Post 1869021)
Yes, I know some boards who are using this actively. Also, the Inside SupCom Demoboard is using it.

Yes. And It is working on TripDealers.org too :)

It is hard to understand at the beginning how to make it work ... but readme.thx modifications will be done soone to help all out.

:)

Another thing concerning the readme.txt

SUGGESTION 1
Add the links to mods/hack that are being supported by vBeXperience.

It will give a chance to expand the vBeXperience hack to its maximum potential faster and it would avoid the confusions during the expanding process.

Example: Readme.txt


Additionally there is support for 3rd party addons (some are already installed):
.
.
.
.
.
.
- ibProArcade Highscorer Points (via CDP Addon)
https://vborg.vbsupport.ru/showthrea...ghlight=arcade
.
.
.
.
- Post Thank You / Use of Post Thank You (via CDP Addon)
https://vborg.vbsupport.ru/showthrea...Post+Thank+You

Q: is the last one I gave is correct one, meaning this one is being supported by vBeXperience ? <<- this is what I ment by being confused in expanding process :).

SUGGESTION 2
Name of the hack small/big letters, my vote is:

vBeXperience

There is different naming being used in different files/forums etc.
There should be one name, since this might be one of the best hack ever...
Think about it :)

And THX again for great HACK!
Support is also unbelievable !!!

Phalynx 08-17-2009 09:05 AM

Quote:

Originally Posted by RaZoRShawN (Post 1869045)

SUGGESTION 1
Add the links to mods/hack that are being supported by vBeXperience.

Sounds nice, but this would mean to keep all links updated, also during updates. Too much work for me.



Quote:

Originally Posted by RaZoRShawN (Post 1869045)
SUGGESTION 2
Name of the hack small/big letters, my vote is:

vBeXperience

There is different naming being used in different files/forums etc.
There should be one name, since this might be one of the best hack ever...
Think about it :)

And THX again for great HACK!
Support is also unbelievable !!!

Some users are naming that product like they want. It has been called earlier "xPerience", but I named it with a more vBulletin touch "vBExperience".

Dutch_Boy 08-17-2009 09:34 AM

In the readme file there is a line saying that i have to turn off the vbulletin promotion mod. Where can i turn it off? I cant find it.

Dont know if thats the problem why my promotion stuff didnt work.

Phalynx 08-17-2009 09:44 AM

Quote:

Originally Posted by Dutch_Boy (Post 1869059)
In the readme file there is a line saying that i have to turn off the vbulletin promotion mod. Where can i turn it off? I cant find it.

Dont know if thats the problem why my promotion stuff didnt work.

No, it says:
This will replace the internal vB promotions. If you enable this system, make sure that you delete any promotions that could collide with Experience. Also, take care that the promotions are overwritten the primary group of every user.

RaZoRShawN 08-17-2009 10:50 AM

Quote:

Originally Posted by Phalynx (Post 1869051)
Sounds nice, but this would mean to keep all links updated, also during updates. Too much work for me.

Nah... all the hacks has one supporting site (main one)... once You give direction for the link everybody will be able to track the supported hack by them-self, no need to update.
The problem is that some of the hacks are difficult to target, once targeted there will be no problem.

There is lots of people who can support You in doing things. (updating readme.txt etc.)

-----------------------------

If You really think that links might be a problem, my idea is that we can add coder name at least
ex.:
- ibProArcade Highscorer Points (via CDP Addon) Origin Hack by MrZeropage --- will be enough to target the proper hack.

Quote:

Originally Posted by Phalynx (Post 1869051)
Some users are naming that product like they want. It has been called earlier "xPerience", but I named it with a more vBulletin touch "vBExperience".

I have suggestion for You nick also

Ph4LynX

since You R c0d3R and h4ckZ0R (joke)
:p

Quote:

Originally Posted by Phalynx (Post 1869064)
No, it says:
This will replace the internal vB promotions. If you enable this system, make sure that you delete any promotions that could collide with Experience. Also, take care that the promotions are overwritten the primary group of every user.

Meaning:

-Create new User Groups
-Add new ranks to the proper groups (original vb promotions are based on post count, so add new ranks with Minimum Posts 0 --- will not create problems with the vBeXperience promotion system.
-update(edit) ex.: vbexperience_level_2_average.xml with the proper usergroupid values (from the new groups that you have created)

Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,9)");
-import new(updated by You) vbexperience_level_2_average.xml

DONE

Enabling internal promotion system of vBeXperience will promote users to usergroups based on eXperience level (values) from now.

See Also
https://vborg.vbsupport.ru/showpost....postcount=1013

for details of editing and rules of doing such.

Phalynx 08-17-2009 11:08 AM

Yes, naming the coder would be good.

Quote:

There is lots of people who can support You in doing things. (updating readme.txt etc.)
Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

RaZoRShawN 08-17-2009 11:17 AM

Quote:

Originally Posted by Phalynx (Post 1869102)
Yes, naming the coder would be good.

ISSUE1
OK. Help me to identify all for first time I will update the readme.txt for You.

Quote:

Originally Posted by Phalynx (Post 1869102)
Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

ISSUE2
Do not /dev nuLL me!

PM me with the infos about ISSUE1, i will extract the support informations and will do the update the readme.txt and others if necessary and will send you back to be implemented.
I will use as a basis the ones from vBExperience_3841.zip

Dutch_Boy 08-17-2009 12:27 PM

Quote:

Originally Posted by Phalynx (Post 1869102)
Yes, naming the coder would be good.


Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

Why dont you put it in your main post. In red so everyone see it :)

And im still busy translating to dutch. Damn allot of text to translate :P Gonna translate the readme to.

EidolonAH 08-17-2009 01:48 PM

Greetings Marius, I was wondering if you are still going to add the ability to have shop items link to actual downloads. If memory serves you said it might be released in 3.8.4 version, but I see it didn't make it in that time around. I would like very much to be able to use your mod on our Skin site but we really need linked items before I can install this, is there a real estimation of when you might include the items being able to link to download files?

SEW810 08-17-2009 02:11 PM

Welcome back Phalynx

Phalynx 08-17-2009 05:41 PM

Quote:

Originally Posted by Dutch_Boy (Post 1869126)
Why dont you put it in your main post. In red so everyone see it :)

And im still busy translating to dutch. Damn allot of text to translate :P Gonna translate the readme to.

Waiting for your Translation :) In normal case the language file is enough.

Quote:

Originally Posted by EidolonAH (Post 1869154)
Greetings Marius, I was wondering if you are still going to add the ability to have shop items link to actual downloads. If memory serves you said it might be released in 3.8.4 version, but I see it didn't make it in that time around. I would like very much to be able to use your mod on our Skin site but we really need linked items before I can install this, is there a real estimation of when you might include the items being able to link to download files?

Yes, it is still on my todo list. For 3.8.5 there will be reworked User promotion system, additionally achievement (which are almost finished) and also the linkable items. As to the linked items we need to talk seperatly via PM.

Quote:

Originally Posted by SEW810 (Post 1869167)
Welcome back Phalynx

Thanks :)

veenuisthebest 08-17-2009 06:26 PM

Hello Phalynx, I wanted to know why did you decided to put xperience folder in root.

Because its containing just images, wouldn't it had been better to put it like images/xperience/ ?

Thanks

Phalynx 08-17-2009 08:14 PM

Quote:

Originally Posted by veenuisthebest (Post 1869317)
Hello Phalynx, I wanted to know why did you decided to put xperience folder in root.

Because its containing just images, wouldn't it had been better to put it like images/xperience/ ?

Thanks

It was already there and confused many user. Read a little in the past...

Also, this folder will contain in the future plugins/addons and other stuff.

EidolonAH 08-17-2009 10:23 PM

Quote:

Originally Posted by Phalynx (Post 1869292)
As to the linked items we need to talk seperatly via PM.

PM sent Marius.

Tarfandestan 08-18-2009 01:36 AM

Tanx Phalynx.
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.

mikeo9043 08-18-2009 02:24 AM

Hmm..I did everything you said still doesn't seem to be showing up the % on the xperience page but it's fine, no biggie, it still shows it on the post bit, so that is fine. I'll wait till the next update. Thanks tho!

SEW810 08-18-2009 05:13 PM

Quote:

Originally Posted by Tarfandestan (Post 1869496)
Tanx Phalynx.
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.

Ouch !, same here.
Any way, I don't use activities.

Dutch_Boy 08-18-2009 05:42 PM

1 Attachment(s)
Quote:

Originally Posted by RaZoRShawN (Post 1869091)
Meaning:

-Create new User Groups
-Add new ranks to the proper groups (original vb promotions are based on post count, so add new ranks with Minimum Posts 0 --- will not create problems with the vBeXperience promotion system.
-update(edit) ex.: vbexperience_level_2_average.xml with the proper usergroupid values (from the new groups that you have created)

Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,9)");
-import new(updated by You) vbexperience_level_2_average.xml

DONE

Enabling internal promotion system of vBeXperience will promote users to usergroups based on eXperience level (values) from now.

See Also
https://vborg.vbsupport.ru/showpost....postcount=1013

for details of editing and rules of doing such.

I did this but no one gets a promotion.

Usergroup: WannaBe Member* (test usergroup. Same rights as registerd member)
Usergroup id: 62
Use the promotion system? Yes
Promotions: check picture.

Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,62)");

SEW810 08-18-2009 06:39 PM

Quote:

Originally Posted by Phalynx (Post 1869102)
Yes, naming the coder would be good.
Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

I never saw those posts dude.
Leave Spanish translation on my hands.

Translating..... 25% Done.


Atenci?n Hispano hablantes
Pronto estar? disponible para Espa?ol (Mx) y Espa?ol (Arg)

Regards

scrap19 08-18-2009 11:53 PM

thanks for the hack...is there any fuction as to when an award is given it e-mails member directly? or is this already an option?

thanks

ConfusedCartman 08-19-2009 12:47 AM

Thanks for the earlier clarification Phalynx. :)

I have a small feature request, if possible: what do you think of a "discard" option for items, both purchased and received as a gift? That way, people can get rid of the things they buy even if the "Sell item back to shop" option is disabled. This would also provide a way for users to discard items that were gifted to them. Currently, they are stuck with the items they've been given, which can be a nuisance.

On a slightly related note, what do you think about allowing us to enable the "Sell item back to shop" option per shop item? Maybe have a checkbox next to each item listing in the "Edit Items" view which would enable or disable the "Sell item back to shop" option per each item. Along with this should be a checkbox at the very top of the column which would enable or disable all items in a category, making it easy to switch on and off entire categories.

TubeOfMommment 08-19-2009 05:43 AM

1 Attachment(s)
hi . i hawe problem with mod... my level is not rising . always 99% and need to another lwl 0 points .. pls help

yeshoward 08-19-2009 08:09 AM

Quote:

Originally Posted by Tarfandestan (Post 1869496)
Tanx Phalynx.
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.

yes, we have the SAME issues

VBexp:3.8.41
VB: 3.8.0

When we activate "activity" it shows errors when click member's profile

yeshoward 08-19-2009 08:24 AM

feature request

please put a "sarch" function on

http://abc.com/forum/xperience.php

We have 100,000 members, it is hard to click "next page" all the time to look up someone's level

thanks

Phalynx 08-19-2009 10:19 AM

Quote:

Originally Posted by Tarfandestan (Post 1869496)
Tanx Phalynx.
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.

Fixed in 3.8.4.2, which will be released in few minutes.

Quote:

Originally Posted by mikeo9043 (Post 1869518)
Hmm..I did everything you said still doesn't seem to be showing up the % on the xperience page but it's fine, no biggie, it still shows it on the post bit, so that is fine. I'll wait till the next update. Thanks tho!

Very strange. Cannot reproduce it here.

Quote:

Originally Posted by Dutch_Boy (Post 1869970)
I did this but no one gets a promotion.

Usergroup: WannaBe Member* (test usergroup. Same rights as registerd member)
Usergroup id: 62
Use the promotion system? Yes
Promotions: check picture.

Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,62)");

I see a promotion screen from the vBulletin Promotions. This will not work with it.

Quote:

Originally Posted by SEW810 (Post 1870008)
I never saw those posts dude.
Leave Spanish translation on my hands.

Translating..... 25% Done.


Atenci?n Hispano hablantes
Pronto estar? disponible para Espa?ol (Mx) y Espa?ol (Arg)

Regards

Great, looking forward to it.

Quote:

Originally Posted by scrap19 (Post 1870166)
thanks for the hack...is there any fuction as to when an award is given it e-mails member directly? or is this already an option?

thanks

It's already on my todo list.

Phalynx 08-19-2009 10:23 AM

Quote:

Originally Posted by ConfusedCartman (Post 1870185)
Thanks for the earlier clarification Phalynx. :)

I have a small feature request, if possible: what do you think of a "discard" option for items, both purchased and received as a gift? That way, people can get rid of the things they buy even if the "Sell item back to shop" option is disabled. This would also provide a way for users to discard items that were gifted to them. Currently, they are stuck with the items they've been given, which can be a nuisance.

On a slightly related note, what do you think about allowing us to enable the "Sell item back to shop" option per shop item? Maybe have a checkbox next to each item listing in the "Edit Items" view which would enable or disable the "Sell item back to shop" option per each item. Along with this should be a checkbox at the very top of the column which would enable or disable all items in a category, making it easy to switch on and off entire categories.

The shop gift's will be reworked in one of the next bigger version, I will also include some new options for this.


Quote:

Originally Posted by TubeOfMommment (Post 1870267)
hi . i hawe problem with mod... my level is not rising . always 99% and need to another lwl 0 points .. pls help

Did you imported a level xml?

Quote:

Originally Posted by yeshoward (Post 1870321)
feature request

please put a "sarch" function on

http://abc.com/forum/xperience.php

We have 100,000 members, it is hard to click "next page" all the time to look up someone's level

thanks

It is already there, take a look at the right side.

Phalynx 08-19-2009 10:26 AM

There is an bugfix release of vBExperience available:

3.8.4.2, 19th August 2009
- Fixed GetActivityAll() on Profiles

3.8.4.1, 14th August 2009
- Fixed issues with low/high activity
- Improved speed by recounting activity
- Included french translation by mitch84 - thanks!

yeshoward 08-19-2009 11:36 AM

thanks for fix of 3.8.4.2, do we need to upload ALL files or some files only? if so, which are them? thanks

Phalynx 08-19-2009 11:40 AM

If you upgraded from 3.8.4.1, you need only to re-import the product xml. Upgrade from 3.8.4 needs also the class_xperience.php
If you want to show the version number, upload also xperience.php

yeshoward, you will need to click "Mark as Installed", thanks.

avsunforum 08-19-2009 12:15 PM

ooowww thanks guys very update :)

Limode 08-19-2009 01:44 PM

Quote:

Originally Posted by Phalynx (Post 1870373)
There is an bugfix release of vBExperience available:

3.8.4.2, 19th August 2009
- Fixed GetActivityAll() on Profiles

3.8.4.1, 14th August 2009
- Fixed issues with low/high activity
- Improved speed by recounting activity
- Included french translation by mitch84 - thanks!

Thanks for updated


All times are GMT. The time now is 12:42 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.03327 seconds
  • Memory Usage 1,924KB
  • 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
  • (11)bbcode_code_printable
  • (45)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