View Full Version : Add-On Releases - vBExperience
Pages :
1
2
3
4
5
6
7
8
[
9]
10
11
Morrus
10-13-2008, 04:19 PM
Question: (trying to decide whether to downlaod this or vBCredits) - is there a "per forum" setting? For example, can I allow users to earn points by creating a thread in my review forums (which power GARS), or news forums (which power VBA CMS), but not elsewhere?
In addition, when defining levels and experience points, can I define level titles also?
Thijmen1992
10-13-2008, 04:56 PM
I can't manage my settings in the AdminCP.
Like:
vBExperience
Settings: General
Settings: Bars
Settings: Points
Settings: Awards
Settings: Shop
Settings: Stats
Statistics: Level
When I click one, I only see:
vBulletin Options
vBulletin® v3.7.3 Patch Level 1, Copyright ©2000-2008, Jelsoft Enterprises Ltd.
Strange enough:
Statistics: Level
Delete Statistics
Recount
Manage Awards
Manage Shop
Manage Custom Points
Import another level product
Those are working correctly.
Anyone a solution?
biocyberman
10-14-2008, 07:06 AM
I would suggest to change hooks/templates to post instead misc. See for example addon_scrupulous_poster.xml.
I fixed it and save as addon_for_3.7.17_postrate.xml
Thanks for sharing. You will need to add the new Earn Points functionality introduced with 3.7.18 - the CDP has been extended with this.
Also, change the dependancy to 3.7.18 and lift the version to 1.1.0 to show that your hack is supporting Earn Points.
Just for confirmatiion, that change would be for 3.7.18 release. File has been updated and saved as addon_for 3.7.18_postrate.xml
-----------
POSSIBLE PROBLEMS:
There is might be a small problem if somebody installed my previous release of this hack:
This code doesn't seem to work:
if (field_exists('xperience_stats', 'points_misc_postrate')) $vbulletin->db->query_write("ALTER TABLE " . TABLE_PREFIX . "xperience_stats CHANGE points_misc_postrate points_post_postrate BIGINT");
So one may need to execute MySQL command to change "points_misc_postrate" to "points_post_postrate" by oneself.
AND THIS MAY BE A BUG FOR vBExperience:
awardfields for Awards are stored in table: <TABLE_PREFIX>xperience_awards
For Awards that take points_misc_postrate into account, it will store this fieldname in this awardfields. After I change the field to points_misc_postrate, the awardfields is not updated. So SQL query error is triggered say field points_misc_postrate doesn't exist (of course). This is true for any addon that update/upgrade containing changing of field names.
Will this mod be updated for vb 3.8 beta (maybe RC) or will you wait until vb 3.8 becomes final? Or is it possible for non coders to adjust vbExperience? Eg the security token has been changed during one of the last vbulletin updates and it is pretty easy to solve this problem.
I am asking, because the new vbulletin version has social group improvements which are badly needed. I know that you have released a very fine mod called social forums, which is even better in terms of social group messages, but it probably won' t get updated to vb 3.8.
Thank you!
Phalynx
10-14-2008, 07:49 AM
Question: (trying to decide whether to downlaod this or vBCredits) - is there a "per forum" setting? For example, can I allow users to earn points by creating a thread in my review forums (which power GARS), or news forums (which power VBA CMS), but not elsewhere?
You can use the CDP Interface to collect data on your own, f.e. just for some forums.
In addition, when defining levels and experience points, can I define level titles also?
Yes, in conjunction with usergroups.
I can't manage my settings in the AdminCP.
Use the default way for settings (AdminCP/Settings)
I fixed it and save as addon_for_3.7.18_postrate.xml
Thanks. I changed xperience_earn_postrate to xperience_earn_post to create a valid hook. 3.7.18 will include this addon.
There is might be a small problem if somebody installed my previous release of this hack:
This code doesn't seem to work:
if (field_exists('xperience_stats', 'points_misc_postrate')) $vbulletin->db->query_write("ALTER TABLE " . TABLE_PREFIX . "xperience_stats CHANGE points_misc_postrate points_post_postrate BIGINT");
You will have to increase the version of the code
<code version="1.0.0"> -> <code version="1.0.1">, or just simply do a <code version="*"> to execute it on every install.
awardfields for Awards are stored in table: <TABLE_PREFIX>xperience_awards. For Awards that take points_misc_postrate into account, it will store this fieldname in this awardfields. After I change the field to points_misc_postrate, the awardfields is not updated. So SQL query error is triggered say field points_misc_postrate doesn't exist (of course). This is true for any addon that update/upgrade containing changing of field names.
It should be avoided to change the fieldname. But if you change it, you will have to change possibly created awards on your own. Just go to awards, select new field and save.
Will this mod be updated for vb 3.8 beta (maybe RC) or will you wait until vb 3.8 becomes final? Or is it possible for non coders to adjust vbExperience? Eg the security token has been changed during one of the last vbulletin updates and it is pretty easy to solve this problem.
Beta 3 will already be adapted to 3.8 Beta 1.
gorentals
10-14-2008, 01:05 PM
Anyone know if you can just remove the Activity bar in the postbit?
Phalynx
10-14-2008, 01:25 PM
Anyone know if you can just remove the Activity bar in the postbit?
You will need to remove it from the template "xperience_gfx".
gorentals
10-14-2008, 03:11 PM
Thank you Phalynx
Thijmen1992
10-14-2008, 06:18 PM
Use the default way for settings (AdminCP/Settings)
Perhaps you have a solution?
WNxWakko
10-14-2008, 08:22 PM
Love the mod. I have one request. I don't like having the mini award show up next to the username in the postbit. I attempted to grab the code that goes there from the templates and insert it into my postbit directly at my preferred location however it doesn't work. It gives me a dead image. I viewed the image path and its not including the end of the image name.gif
What is the bit i can put in my postbit to have the award appear other than using the settings? I need to actually code if that is possible.
Thanks,
Phalynx
10-15-2008, 07:28 AM
Perhaps you have a solution?
As I cannot confirm that I cannot fix that. I can take a look on your forum, please provide me a temporary admin account via PM.
Love the mod. I have one request. I don't like having the mini award show up next to the username in the postbit. I attempted to grab the code that goes there from the templates and insert it into my postbit directly at my preferred location however it doesn't work. It gives me a dead image. I viewed the image path and its not including the end of the image name.gif
What is the bit i can put in my postbit to have the award appear other than using the settings? I need to actually code if that is possible.
You need to attach .PNG or .GIF - take a look at the function "GetAwards" in functions_xperience.php
dataman
10-15-2008, 12:52 PM
When exactly are "use of reputation" points calculated? I went in and repped someone, and their points didn't change, nor did mine. After 30 minutes, still no change. What about "rep" points; when does that recalc also, on-the-fly (realtime) or once a day? I couldn't see whether any of the cron jobs tallied "rep use" or "rep" points.
Phalynx
10-15-2008, 01:03 PM
Recalculation is beeing triggered by a new posting and the cron, regardless what you did.
dataman
10-15-2008, 02:12 PM
So if I rep a post, when exactly should points go up? I've set "use of rep" and "rep" to add points (via AdminCP), but I don't see the increase happen immediately after giving rep. I even went to the cron and hit "run now" on all 3 vBExperience crons, and still no increase.
Phalynx
10-15-2008, 02:15 PM
As I already said: A posting is the trigger. If you post something, then all stats, including rep are calculated. This has been done to avoid recalculating every time a user clicks somewhere.
dataman
10-15-2008, 02:54 PM
Ok, I understand now. Sorry for my slowness. People have to post to keep their points updated. It makes sense, and rewards/promtes active participation. Thanks for your prompt answer, and for a great product!!
WNxWakko
10-15-2008, 10:41 PM
As I cannot confirm that I cannot fix that. I can take a look on your forum, please provide me a temporary admin account via PM.
You need to attach .PNG or .GIF - take a look at the function "GetAwards" in functions_xperience.php
Im not figuring this out.
Here is what im manually putting in the postbit
<img border="0" src="$stylevar[imgdir_misc]/level/award_$awardname" title="$awardtitle">
Ive also tried this,
<img border="0" src="$stylevar[imgdir_misc]/level/award_$awardname.gif" title="$awardtitle">
However the image path that appears is this,
http://warriornation.net/Forum/images/misc/level/award_
and
http://warriornation.net/Forum/images/misc/level/award_.gif
Notice the actual image name is not appearing. What variable do I need to put in that image path to have it display?
crazzyustad
10-16-2008, 05:55 AM
@phlynx i have already marked it installed, long before.....
here are my queries
ok Phalynx, i am having some problem....
The VBexp tab in admin control is not working.....The Vbulltin options are working fine, but when i am clicking the VBexp tab and then cliking any of settings its totaly blank.
First i uploaded the VBexp 3717 version, it was not working, then i uploaded the Beta version and its same...what to do now??
Already clicked install
can we have a promotion system based on activity. Say if the user has over 50% activity he/she will be shifted to a new group and when the activity will fall below 50% he will again come back to the old group.
can we have a promotion system based on activity. Say if the user has over 50% activity he/she will be shifted to a new group and when the activity will fall below 50% he will again come back to the old group.
This has already been implemented long ago and the feature has been listed in the first post as well.
Promotion system
To motivate users to do more on your forum I created the promotion system. By reaching defined xperience points the user will be moved to another usergroup - where you can set graphics, shadows, highlighting, etc... What is interesting in combination with this: you can give the user more possibilities f.e. larger avatars or bigger PM box. A log of the promotions is available.
aproape
10-16-2008, 07:48 PM
Nice addon! Could you give some hints on how to make a plugin for vbexperience? For example, what hooks should be used, and for what goal? Or if this was already discussed, where should one read about it?
Nice addon! Could you give some hints on how to make a plugin for vbexperience? For example, what hooks should be used, and for what goal? Or if this was already discussed, where should one read about it?
There is an example in the extras directory.
4x4 Mecca
10-17-2008, 01:07 AM
This has already been implemented long ago and the feature has been listed in the first post as well.
thanks jerx, but i think they meant the "activity" catagory which measures how often a member visits and posts on the site. So if they come daily and post daily, they get access to the premium forum.
MissKalunji
10-17-2008, 03:07 AM
anyone can help me do a custom for Vbookie? i can provide test forum and all?
crazzyustad
10-17-2008, 04:35 AM
This has already been implemented long ago and the feature has been listed in the first post as well.
u got me wrong, i am talking about promotion by activity meter and not by the point system.
The fault of the point system is that once a user reaches a certain point value, he is promoted to a particular group, but after that he can remain inactive and enjy all the facilities.
But by activity meter, he/she always have to be active
Phalynx
10-17-2008, 07:00 AM
Im not figuring this out.
Here is what im manually putting in the postbit
<img border="0" src="$stylevar[imgdir_misc]/level/award_$awardname" title="$awardtitle">
Ive also tried this,
<img border="0" src="$stylevar[imgdir_misc]/level/award_$awardname.gif" title="$awardtitle">
However the image path that appears is this,
http://warriornation.net/Forum/images/misc/level/award_
and
http://warriornation.net/Forum/images/misc/level/award_.gif
Notice the actual image name is not appearing. What variable do I need to put in that image path to have it display?
Ok, I got your problem. You are trying to access $awardname in postbit, but that variable is beeing set on hook "fetch_musername". You will need to hook in "postbit_display_complete" and read the awards. Take a look at "fetch_musername" of vBExperience.
@phlynx i have already marked it installed, long before.....
Maybe. But it seems you clicked after that on "Mark as Uninstalled" as I cannot see your "Installed"-flag.
gamerfu
10-17-2008, 07:33 AM
How come since I upgraded to 3.7.3 P1 in AdminCP -> vBEscperience Drop Down menu the Settings: General, Settings: Awards, Settings: Bars, Settings: Points, and Settings: Shop links show blank pages when I click on them? :confused:
The links work fine if I use AdminCP -> vBulletin Options
I have uninstalled and killed, deleted files, played with version 17, and ersion 14 and the links are not displaying. :confused:
Phalynx
10-17-2008, 07:49 AM
I have no clue. It's definitly working with 3.8 Beta 1.
Now, I had some time to test drive vBExperience.
Here are some suggestions:
Display levels overview (how many points you need to reach a certain level)
Adjust breadcrump to vb' s look. Right now it looks like
homepage - forum
L vbexperience earn points
Whereas it should look like
homepage - forum - vbexperience
L earn points
Earn points for profile views (your own profile viewed by someone else).
Earn points for viewing album pictures.
Earn points for commenting album pictures.
Only earn points for received renomee, when positive renomee. Substract if negative?
Earn points for poll creation.
Earn points for received votes.
Earn points for voting.
Earn points for calendar events.
Earn points for avatar upload.
Earn points for profile picture upload.
Earn points for signature.
Earn points for birthday.
Earn points for custom profile fields.
Earn points for social group message.
Earn points for social group picture.
Earn points for private messages. Our users should use the visitor message feature in the first place. Therefore we like to substract points when a user sends a private messages.
It looks like you cannot set negative user points for actions. It would be nice to be able to do so, because by doing so, you would be able to limit certain actions. Eg private messaging, attachment views, creation of visitor messages, gallery views, etc.
Do not allow negative values for user points. This is to support the use of negative points for certain actions. Let' s say I have set negative points for private messages, users should not be able to send out private messages if they have less points than the substracted amount for sending private messages.
Starting balance and monthly balance for points. Eg if you set negative points for pms, new users would not be able to pm other people right away. Therefore they should get a certain amount of points for the beginning. To keep users participating on the forums, they should get a certain amount of points each month (like a paycheck).
Donations of points. Our members liked this feature pretty much. You were able to donate your own points to someone else.
Negative values will mess up the system quite a lot. Recounting points would most likely lead to false values. Eg by deleting private messages, you would be able to regain private message sending ability.
I noticed some problems with the level import, if you do not uninstall the level first it sometimes does not update the levels. If you uninstall first, recounting seems to be enough. No need to update points on the maintenance screen.
Is it possible that the instructions for finding the right level setting are not correct? These are the instructions:
What level would you advise with X members?
These depends on many other factors. Just import a product, run a recount and take a look at the rankings:
- Top Members are up to level 30-40: Import a higher level.
- Top Members are up to level 60-70: Great. Just keep the level.
- Top Members are up to level 80: There is only small room for growing.
- Top Members are above level 90: Take a lower level.
I think if you get 30-40 for your top users, you need to pick a lower level (if you used level 4, try using level 3). If you do the other way around your top levels will be smaller than 30-40.
If you get levels above 90, you should take a higher level. After the recount you should get levels below 90.
I would suggest taking a lower level, too, if you get top levels of up to 80. Then your top members will probably have a level of up to 60, which would give them the chance to participate in vBExperience a little bit longer.
I have no clue. It's definitly working with 3.8 Beta 1.
I did not know that. I thought it did not work, because you said that beta 3 will be adapted to 3.8 beta 1. I guess you meant the new features of vb 3.8. Then I might try updating to vb 3.8 before your next vbexperience release.
u got me wrong, i am talking about promotion by activity meter and not by the point system.
The fault of the point system is that once a user reaches a certain point value, he is promoted to a particular group, but after that he can remain inactive and enjy all the facilities.
But by activity meter, he/she always have to be active
I see. But I think you need to take other things into consideration, too. Right now, I am testing a new install and imported data from the real site. Therefore only the test users I log into have an activity of more than 50 %. But it is not hard to get over 50 %. I think if you register a new account and login daily, you will even get 100% activity.
Phalynx
10-17-2008, 10:47 AM
Thanks for your deep feedback.
- Display levels overview (how many points you need to reach a certain level)
Already implemented
- Adjust breadcrump to vb' s look. Right now it looks like
Uhm, if I have much much time.
- Earn points for social group message.
- Earn points for custom profile fields.
- Earn points for avatar upload.
- Earn points for profile picture upload.
- Earn points for birthday.
In 3.7.18 Beta 3 already implemented
- Earn points XXX
Maybe in a later release
- Earn points for private messages. Our users should use the visitor message feature in the first place. Therefore we like to substract points when a user sends a private messages.
Not possible as vBExperience calculates existing data. As users must delete message (inbox limits...) this is not very usefull.
- It looks like you cannot set negative user points for actions.
Correct.
- Do not allow negative values for user points. This is to support the use of negative points for certain actions. Let' s say I have set negative points for private messages, users should not be able to send out private messages if they have less points than the substracted amount for sending private messages.
This would need to hook in every process and also replace usergroup permissions. Just wait for the release which will include promotions based on other values than points and create a group which can send PM and one that cannot.
- Donations of points. Our members liked this feature pretty much. You were able to donate your own points to someone else.
Nice idea. Give aways are included since 3.7.18, but only for items.
I noticed some problems with the level import, if you do not uninstall the level first it sometimes does not update the levels. If you uninstall first, recounting seems to be enough. No need to update points on the maintenance screen.
Updating points IS recounting. It's the same action behind it.
Is it possible that the instructions for finding the right level setting are not correct? These are the instructions:
A similar description has been already posted somewhere in this thread. Will include it in readme_levels.txt.
I did not know that. I thought it did not work, because you said that beta 3 will be adapted to 3.8 beta 1. I guess you meant the new features of vb 3.8. Then I might try updating to vb 3.8 before your next vbexperience release.
Beta 3 will run with vB 3.8
I see. But I think you need to take other things into consideration, too. Right now, I am testing a new install and imported data from the real site. Therefore only the test users I log into have an activity of more than 50 %. But it is not hard to get over 50 %. I think if you register a new account and login daily, you will even get 100% activity.
That is not right. Activity is only calculated on base of postings, not logins.
vBExperience Beta 3 will be released in around one week, as I have many things on my todo list to make it more fit with vB 3.8
4x4 Mecca
10-17-2008, 03:02 PM
Hey there! I'm trying to make a conditional to insert something into the postbit or even forumdisplay using the activity field, here is my code
<if condition="$vbulletin->xperience_stats[points_user_activity] == 100">1</if>
<if condition="$xperience_stats[points_user_activity] == 100">2</if>
Neither one works, any ideas on how I would do it?
gamerfu
10-17-2008, 04:58 PM
I have no clue. It's definitly working with 3.8 Beta 1.The Modification works, but in the vBExperience drop down menu, those "Settings" do not display. Version 17 should work for 3.7.3 P1, right? :(
I will be testing version 18 Beta 2 and 3 *when released* on my test forums.
MissKalunji
10-17-2008, 06:04 PM
can someone guide me with the " Manage Custom Points"?
i've awarded someone 10 000 where does it go? i don't quite understand that...i'de like for it to be added in misc and been counted towards experience total point. How can i accomplish that?
on another hand everytime i add some i have to do a manual recount? seems like when i did it it was added to the misc?
sdfaheem
10-18-2008, 05:48 PM
Any update on resetting the points, useful for a contest?
Or rather making monthly archive so that users can see their points for each month.
biocyberman
10-18-2008, 06:12 PM
Thanks. I changed xperience_earn_postrate to xperience_earn_post to create a valid hook. 3.7.18 will include this addon.
You will have to increase the version of the code
<code version="1.0.0"> -> <code version="1.0.1">, or just simply do a <code version="*"> to execute it on every install.
Thanks for the fix.
It should be avoided to change the fieldname. But if you change it, you will have to change possibly created awards on your own. Just go to awards, select new field and save.
Edit the award didn't work. I had to delete the award and start over or edit it manually through phpmyadmin. Anyway it's not a common problem.
Dragonsys
10-19-2008, 06:15 AM
Would it be possible to have shop items be payable from the overall points instead of only one Point category or another?
appsfinder
10-19-2008, 09:14 AM
hi how do i get this to work with vbgallery 2.4.3:confused:
any help would be great.
MissKalunji
10-19-2008, 03:39 PM
Would it be possible to have shop items be payable from the overall points instead of only one Point category or another?
just choose "experience" as the point field it will use the WHOLE system. he just gave you the choice to choose between field
RenegadeFerret
10-19-2008, 09:34 PM
can someone guide me with the " Manage Custom Points"?
i've awarded someone 10 000 where does it go? i don't quite understand that...i'de like for it to be added in misc and been counted towards experience total point. How can i accomplish that?
on another hand everytime i add some i have to do a manual recount? seems like when i did it it was added to the misc?
It should already count toward the total experience point. It goes into the category of Custom which I think is a subcategory of Misc.
One thing I have found is that the user getting the points needs to make a new post, only then will they receive the custom points.
MissKalunji
10-20-2008, 12:14 AM
It should already count toward the total experience point. It goes into the category of Custom which I think is a subcategory of Misc.
One thing I have found is that the user getting the points needs to make a new post, only then will they receive the custom points.
ah i see that's what i didn't know thank you
4x4 Mecca
10-20-2008, 02:21 AM
anyone have an idea for me? My question is a few posts up https://vborg.vbsupport.ru/showpost.php?p=1647078&postcount=2031
SPARKS MAN
10-20-2008, 11:48 AM
after install it when i run the cron job i got this DB error
and if i use the recount the xperience points via maintenance tools i got the same one ????? please any help
Database error in vBulletin 3.7.3:
Invalid SQL:
SELECT
thankedcount
FROM user
WHERE userid=1;
MySQL Error : Unknown column 'thankedcount' in 'field list'
Error Number : 1054
Request Date : Monday, October 20th 2008 @ 07:42:16 AM
Error Date : Monday, October 20th 2008 @ 07:42:18 AM
Script : http://vb.ulkahf.net/ulkahfad/cronadmin.php?do=runcron&cronid=49
Referrer : http://vb.ulkahf.net/ulkahfad/index.php?loc=plugin.php%3Fdo%3Dproduct
IP Address : 80.255.40.163
Username : SPARKS MAN
Classname : vB_Database
MySQL Version : 5.0.51a-community
SPARKS MAN
10-20-2008, 11:53 AM
sorry i find my fault
thats because i use a level product not suitable to my forum
regards
eng. ali
simunaqv
10-20-2008, 02:45 PM
Hi Phalynx,
I have less that 2300 members on my board. I import the smalllest level (vbexperience_level_1_small.xml) but even then we start getting Internal Server Error 500 on the forum page. I always have to disable vbExperience to get rid of this error. Can you please guide me as how can I create a level that is suitable for our forum.
Thanks,
Phalynx
10-20-2008, 03:07 PM
Hey there! I'm trying to make a conditional to insert something into the postbit or even forumdisplay using the activity field, here is my code
<if condition="$vbulletin->xperience_stats[points_user_activity] == 100">1</if>
<if condition="$xperience_stats[points_user_activity] == 100">2</if>
Neither one works, any ideas on how I would do it?
It's "$xperience[ppd]". To see all the code, go to XML and search for the hook "postbit_display_complete".
hi how do i get this to work with vbgallery 2.4.3:confused:
any help would be great.
You mean PhotoPost Gallery? Support for this is already included.
after install it when i run the cron job i got this DB error
and if i use the recount the xperience points via maintenance tools i got the same one ????? please any help
Database error in vBulletin 3.7.3:
Invalid SQL:
SELECT
thankedcount
FROM user
WHERE userid=1;
MySQL Error : Unknown column 'thankedcount' in 'field list'
Error Number : 1054
Request Date : Monday, October 20th 2008 @ 07:42:16 AM
Error Date : Monday, October 20th 2008 @ 07:42:18 AM
Script : http://vb.ulkahf.net/ulkahfad/cronadmin.php?do=runcron&cronid=49
Referrer : http://vb.ulkahf.net/ulkahfad/index.php?loc=plugin.php%3Fdo%3Dproduct
IP Address : 80.255.40.163
Username : SPARKS MAN
Classname : vB_Database
MySQL Version : 5.0.51a-community
Did you had post thanks installed and uninstalled it? If yes, you need to remove the post thanks tables also.
Hi Phalynx,
I have less that 2300 members on my board. I import the smalllest level (vbexperience_level_1_small.xml) but even then we start getting Internal Server Error 500 on the forum page. I always have to disable vbExperience to get rid of this error. Can you please guide me as how can I create a level that is suitable for our forum.
Thanks,
An error does not appear if you had a "wrong sized" level. I need detailed error message to track that down.
Dragonsys
10-20-2008, 06:07 PM
just choose "experience" as the point field it will use the WHOLE system. he just gave you the choice to choose between field
ahh ok, I missed that. Thank you!
simunaqv
10-20-2008, 06:16 PM
Hi Phalynx,
Thanks for your reply. Actually the error is a general Internal Server Error 500, and it only occurs when vbExperience is enabled. I submitted a support request with our web hosting provider (DreamHost) and following is their answer:
It appears some scripts on your site are being killed by our process
watcher program. This keeps the CPU/Memory load balanced for all users
on the server. Unfortunately, while we can't change the settings on
that, there are ways to reduce the CPU and Memory footprint of your site.
One is to make sure you've disabled hotlinking of your images.
Sometimes the culprit is robot "crawlers", such as googlebot, which like
to get caught in loops on some dynamic sites, causing the load to jump on
the server.
Can you guess what part of vbExperience could be causing a CPU load?
Phalynx
10-20-2008, 07:29 PM
Hi Phalynx,
Thanks for your reply. Actually the error is a general Internal Server Error 500, and it only occurs when vbExperience is enabled. I submitted a support request with our web hosting provider (DreamHost) and following is their answer:
Can you guess what part of vbExperience could be causing a CPU load?
Uhm, every part? The whole thing is really database intensive. Worser if it's bad configured. I would suggest to uninstall vBExperience, as it is not intendet for low end and other limited servers.
robwestpdx
10-20-2008, 10:22 PM
does this have a donation system or does it work with vbcredits?
MissKalunji
10-21-2008, 12:07 AM
donation as in you can donate points to members manually? Yes
works with credits i don't think so...it has it's own point system
MyCTaK
10-22-2008, 07:30 AM
Hello,
i got problem with level gaining.
I made new file with new points for level up after 60th lvl and upload it via Import another level product, then i Recount but nothing happened with users that must be affected. So i try to import it via Manage Products and then recount from Scheduled Task Manager but nothing happened again.
When i download the level product it is the new one, but in forum it continue to calculate it from old level points :eek:
I hope you understand what i mean and will help me :)
Phalynx
10-22-2008, 07:55 AM
Hello,
i got problem with level gaining.
I made new file with new points for level up after 60th lvl and upload it via Import another level product, then i Recount but nothing happened with users that must be affected. So i try to import it via Manage Products and then recount from Scheduled Task Manager but nothing happened again.
When i download the level product it is the new one, but in forum it continue to calculate it from old level points :eek:
I hope you understand what i mean and will help me :)
You will need to uninstall existing level XML first.
bugriders
10-22-2008, 08:20 AM
I uploaded images->misc->level
but i can' t see any images of rewards. Can i enable them in the portbit please?
4x4 Mecca
10-23-2008, 12:28 AM
An error I got when trying to sell something.
Database error in vBulletin 3.7.0:
Invalid SQL:
UPDATE xperience_shop_ta
SET sell=1,125, dateline_sell=1224725100
WHERE taid=35;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '125, dateline_sell=1224725100
WHERE taid=35' at line 2
Error Number : 1064
Date : Wednesday, October 22nd 2008 @ 06:25:36 PM
Script : http://www..com/forum/xperience.php?go=shop&itemid=56&do=sell
Referrer : http://www..com/forum/xperience.php?go=shop&do=own
IP Address :
Username :
Classname : vb_database
MySQL Version : 5.0.67-log
bugriders
10-23-2008, 10:04 AM
I uploaded images->misc->level
but i can' t see any images of rewards. Can i enable them in the portbit please?
I only see 2 medals behind my username. I suppose I am the only user with that much points in total! I have about 1400 members. Maybe decrease the all points in settings??
simunaqv
10-23-2008, 12:38 PM
Hi Phalynx,
Is it possible to turn off all computation in vbExperience and use it solely as an awards system i.e. by manaully issuing awards?
biocyberman
10-24-2008, 01:03 AM
Anyone has any idea how to replace post-count by points of vbexp for "user rank" of vbulletin? we have to modify vb native files or any way better?
Anyone has any idea how to replace post-count by points of vbexp for "user rank" of vbulletin? we have to modify vb native files or any way better?
Make a rank out of your level?
SPARKS MAN
10-24-2008, 07:31 PM
Did you had post thanks installed and uninstalled it? If yes, you need to remove the post thanks tables also.
Yes, exactly i installed post thank hack
i delete the table thank u from the php my admin ?
rob01
10-25-2008, 06:40 AM
someone knows how i could add a new product (shop), where people will be able to buy it and when they buy it.. it will be added to a postbit term
example posbit:
buy : 0
when people use cash shop
buy : 1
Hey there! I'm trying to make a conditional to insert something into the postbit or even forumdisplay using the activity field, here is my code
<if condition="$vbulletin->xperience_stats[points_user_activity] == 100">1</if>
<if condition="$xperience_stats[points_user_activity] == 100">2</if>
Neither one works, any ideas on how I would do it?
This one works:
<if condition="$bbuserinfo[xperience_ppd] == 100">1</if>
mikkitine
10-26-2008, 07:21 PM
Hi Phalynx, your mod keeps getting greater.
Will there be any way to inform the "person below" about items being given away in addition to informing the recipient of the gift?
KorsatH
10-27-2008, 09:01 AM
In postbit is possible show only lvl's number?
And a small image for it?
KorsatH
10-28-2008, 11:24 AM
noone? :(
DIGER21
10-29-2008, 09:55 AM
My levels are going up after 50 points.how can i manage them to go up with x points?
The next vbexperience will be compatible to vb 3.8. How about vbulletin blog 2?
teamsupra
10-30-2008, 07:50 PM
Just upgraded to 371Beta 2 great mod! But I have a small issue I was hoping to get a fix for.
When I click Earn Points it brings me to the Ranking page. The url is correct:
http://www.domain.com/xperience.php?go=earn but shows rankings.
Any clues?
TamCaVBoy3
10-30-2008, 10:17 PM
i imported the WOW ranking sytem, how long does it take to just gain one level ??????
bluej
10-31-2008, 03:56 AM
phalynx,
how do i uninstall vbexperience? do i just upload the kill.php to my server (admincp)? what else? do i do anything at the forum ACP?
please be specific as i am not real savvy with this type thing and afraid to mess anything up...
want to wait for the 3.8 version to reinstall and start fresh
thanks so much
sectomy
10-31-2008, 01:14 PM
are there any thoughts bout putting an upload box and/or automatically make a thumbnail for the Manage Shop setting ?
its very uncomfortable to manually upload the pic, type in the url, make a thumb and do the same as before....
that would be very nice if theres such a mod/addon for next version....
ForYou
11-01-2008, 01:24 AM
My Vb is 3.8 beta 1 and when i need to do upgrade i can't do that becuase there is message tell me the vb 3.8beta1 can't work on vBExperience !!
Please try to help me ,
Regards
Phalynx,
Is it an idea to add an "achievement" option? Like give a certain award when a member reaches 1000 posts or when a member has been registered for a year.
Swapnil
11-02-2008, 10:15 AM
Thx dude great work, this mod interest the users to be more active in forum.
car20
11-02-2008, 03:38 PM
hello dear Phalynx:)
thanks again for the best HACK ( I love it ):)
PLEASE GUIDANCE ME .
i install ICash hack and i want to use money field at on this hack to vbxPerience's SHOP .
how do i can add custm field ( money field from i cash hack) in costfield in admin cp ?
thanks a lot for your support .
http://d.imagehost.org/0480/money.gif
gamextract
11-02-2008, 09:52 PM
You will need the template hooks. Take a look at readme_install_uninstall_upgrade.txt
I checked both postbit, and postbit_legacy and they both have $template_hook[postbit_userinfo_left] where the default template has it and I'm still experiencing the problem. The text is their for the bars, but not the image.
zombietom
11-03-2008, 12:30 PM
I'm trying to install this and when i try to import product i get this "You need to upload files first!" --but i have everything uploaded to my server --
any suggestions?
thanks
mousegeek
11-03-2008, 06:38 PM
How do I reset everything to where everyone's at 0 for everything? I hit reset stats and it makes me recount everything and then it's back to where it was.
ATVTorture
11-03-2008, 11:19 PM
I would like to know how when you're viewing a thread, and it has the member info block above the post, to make all of the items display in a single row rather than having 1 row per item. 1 row per item makes the member info block too tall.
Thanks!
Buster
pooslokka
11-04-2008, 03:57 PM
hai,
we really want admins from showin the vbexperience
http://img352.imageshack.us/img352/530/pscoj2.jpg
i did not see an option to exclude admin. pls help
Jaxel
11-06-2008, 11:26 PM
How do i get this mod to incorporate with the vBulletin Title system?
I want people's user titles to rank up based on their level within vBexperience...
Is this possible?
How do i get this mod to incorporate with the vBulletin Title system?
I want people's user titles to rank up based on their level within vBexperience...
Is this possible?
I don' t think you can do that, but it is possible to promote users to new user groups. You could set up the same user groups as your ranks and set each user group to display the group name instead of the rank title.
Install this mod translated to russian.
Translation made very clearly. No code were corrupted.
But in USERINFO there is no vbprase activity... =(
Where can be trouble?
Jaxel
11-07-2008, 06:48 PM
I don' t think you can do that, but it is possible to promote users to new user groups. You could set up the same user groups as your ranks and set each user group to display the group name instead of the rank title.
That would suck... cause I wanna do 99 levels, and I dont want to do 99 usergroups just to do it.
You could do it with images. Something like this:
<img src="level$vbexperience[level].jpg" alt="">
level1.jpg
level2.jpg
level3.jpg
...
zatzy
11-08-2008, 12:34 PM
I get this error:
Database error in vBulletin 3.7.4:
Invalid SQL:
UPDATE xperience_stats
SET
points_xperience=21405,
points_thread=5610.04,
points_threads=796,
points_thread_votes=0,
points_thread_replycount=1192.5,
points_thread_views=3621.54,
points_thread_stickies=0,
points_post=10439.5,
points_posts=7604,
points_post_thanks=0,
points_post_thanks_use=0,
points_user=5356.03960648,
points_user_infractions=0,
points_user_activity=5,
points_user_reputation=0,
points_user_reputation_use=0,
points_user_online=5356.03960648,
points_user_socialgroup=0,
points_user_friends=0,
points_user_visitormessages=0,
points_user_albumpictures=0,
points_user_referrals=0,
points_post_attachment=2835.5,
points_post_attachment_views=0,
points_thread_tags=0,
points_misc=0,
points_misc_ldm=0,
points_misc_dl2=0,
points_misc_ppg=0,
points_misc_ppd=0,
points_misc_vbblog=0,
points_misc_custom=0,
shop=0,
promoted=0,
dateline=1226154360
WHERE userid=1947;
MySQL Error : Unknown column 'points_xperience' in 'field list'
Error Number : 1054
Request Date : Saturday, November 8th 2008 @ 04:26:24 PM
Error Date : Saturday, November 8th 2008 @ 04:26:25 PM
Script : xxxxxxxxxcron.php?rand=1226154382
Referrer : xxxxxxxxxx
IP Address : xxxxxxx
Username : Oregistrerade
Classname : vb_database
MySQL Version :
Jaxel
11-09-2008, 04:37 AM
Okay... I found a problem with this mod... There is ONE user on my forums, for some reason, he has no stats... he is not listed in my ignored users, as I have no ignored users listed...
Every other user:
http://www.8wayrun.com/member.php?u=1
This particular user:
http://www.8wayrun.com/member.php?u=411
Click on the vBExperience tab and you will see that this guy has no information. Why? I have tried rebuilding the stats... but that didnt fix it.
jedi-jakeyboy
11-09-2008, 09:18 AM
Please help as i have uninstalled this now using kill experience and deleted all ftp files but now im getting this error...?
Database error in vBulletin 3.7.3:
Invalid SQL:
UPDATE user SET xperience_done=0 WHERE userid='1';
MySQL Error : Unknown column 'xperience_done' in 'field list'
Error Number : 1054
Request Date : Sunday, November 9th 2008 @ 03:03:22 AM
Error Date : Sunday, November 9th 2008 @ 03:03:22 AM
Script : http://consolehackz.info/newreply.php?do=postreply&t=1185
Referrer : http://consolehackz.info/showthread.php?t=1185
IP Address : 82.24.245.160
Username : Jedi-Jakeyboy
Classname : vB_Database
MySQL Version : 5.0.45-log
i have noticed also that when i click update counters in admincp vbexperience is still there at the bottom..??
this error comes up everytime someone posts.Everything else seems to be ok.
Jedi
installed and it's working great :)
wishing that if u can add the name of the sender for give away items
dmknights
11-10-2008, 11:50 PM
*installed*
Jennifer Marx
11-11-2008, 02:39 PM
I really love this mod -- thank you so much for making it! :D
I'm hoping for the next version soon, as my members are frustrated that they can't giveaway items from the shop once they've received them (and I know you said you fixed that in the next release).
Thank you again!!
gamerfu
11-12-2008, 08:01 AM
I have not heard a peep from Phalynx. I hope everything is alright. :cool:
rob01
11-14-2008, 09:06 PM
i have a question how the point system works?
on the main vbexperience website i have 587 points but when i click over shop button and try to buy something from the shop store i only have 9 points
any idea?
zombietom
11-15-2008, 01:09 AM
Items may have different prices and draw from different vbexperience points.
Example: a item in the shop cost 100 points (thanks sent points)
So if you don't have enough "Thanks points" you may not have enough to purchase the item.
Ever who set up the shop can determin what points to use -overall vbexperience points,thanks sent points,views points, rating points and so on.
Hope that helps
dapellegrini
11-17-2008, 04:28 AM
Ya Phalynx - any hope of seeing the new version finished before the end of the year? Hope all is well...
Jaxel
11-17-2008, 09:54 PM
Someone needs to make a mod to incorporate this into the user title system.
car20
11-18-2008, 02:19 PM
uninstalled
Well I was hoping to get some information from here, but it looks as if Phalynx is awol, so not much point, but I'll throw it out there anyway.
What do you guys make of the situation outlined in the attached images?
I've been screwing with this all day on my test board trying to get this skin running. I have three other styles installed with no problems, but for some reason, vbexperience isn't wrapping within the userinfo column in this one. Not just "not wrapping", but completely fubar.
Anyway check images. I'll hope against all hope for some kind of answer here while I keep looking into it on my own.
Sometimes I think I post here just to put a fire under my own a**:
Had to wrap template hook like so:
<td width="175">$template_hook[postbit_userinfo_left]</td>
skin likes vbexperience now.
All better... cookie time!
Quotaless
11-19-2008, 04:22 AM
Really awesome mod but I have a question, how do you edit promotions? How can I change value for it?
Quotaless
11-19-2008, 04:50 AM
Nevermind I've figure it out.
ceech
11-19-2008, 05:59 AM
thanks for this mod. just marked installed.
spiegelj
11-19-2008, 05:59 AM
how do you set it so it dosent promote my modorators and secondary admins member groups
car20
11-19-2008, 11:44 AM
uninstalled this mod and get some DATA BASE ERROR from google (because indexed by google bot ) .
installed again .
note:
i uninstall 3718 beta completely by kill_xperience.php script
(product_vbexperience3718BETA2\extras\Remove vBExperience\upload\admincp\kill_xperience.php)
and install 3717 all of my problems solved .
Vinyljunky
11-19-2008, 04:17 PM
Can we charge VBCredits for the gifts (Can it be made possible?)
Thanks
VJ
Quotaless
11-20-2008, 04:13 AM
OK I thought I got it but I still can't figure out the promotion system. What do I need to change to get the promotion to work. This is what I've done so far, I have replaced the value 2 for usergroupid to usergroupid 10, but when I tried to give a member misc. points he didn't get promoted. Am I missing something? What do I need to do to fix this? I have included the code from a level 4 xml file.
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (2750,15,10)");
Phalynx
11-21-2008, 05:57 AM
Sorry for beeing absent, I got a lot to do in RL. Will try to do regular support again from next week on.
gamerfu
11-21-2008, 09:33 AM
Sorry for beeing absent, I got a lot to do in RL. Will try to do regular support again from next week on.As long as you are around, I am happy. :cool:
ceech
11-22-2008, 07:28 AM
not sure if I did something wrong,
I installed, but my navbar does not display the vbExperience link. i had import the main product as well as the level product. What do I have to do to get the vbExperience link in my navbar ?
thank you in advance..
sirramza
11-22-2008, 03:38 PM
hellow i install the product, install the lvl 3 system, the exp works in the profile, but not show in the posts, ideas?
sorry for my bad english
ceech
11-22-2008, 06:44 PM
not sure if I did something wrong,
I installed, but my navbar does not display the vbExperience link. i had import the main product as well as the level product. What do I have to do to get the vbExperience link in my navbar ?
thank you in advance..
nevermind. i was able to find it in the admincp setting.
abroad
11-23-2008, 09:26 AM
Is it possible to exclude a certain member from the award system? I dont want to use usergroups for this
Jaxel
11-23-2008, 12:35 PM
I think this mod is only missing 2 thinkgs...
1. the ability to exclude users/groups...
2. integration with the user title system...
Lottis
11-23-2008, 07:07 PM
Thank you fore this. Great mod.
I have some things i dont find out how it works. Shop, and were i am suppose to upload the extras. Are there a support thread/forum somewere? I simply cant find it.
Thanx fore reelising this.
sirramza
11-23-2008, 07:30 PM
hellow i install the product, install the lvl 3 system, the exp works in the profile, but not show in the posts, ideas?
someone can help me with this?
StonePilot
11-24-2008, 11:13 AM
how do you set it so it dosent promote my modorators and secondary admins member groups
In the ACP you have the ability to exclude user IDs and also usergroups.
lian82
11-24-2008, 07:56 PM
Thanks for an awesome mod:)
I really want to use this mod for my contests. Are there any ways of reseting all points to 0?
I mean, if you are able to spend points, there must be a way of resetting them in the database or something?
I want all members to start at 0 points when i launch my contest. Members with the highest points are able to buy some contest items that i made in the shop.
What do i have to do to make this work?
Thanks
DarkGizmo
11-24-2008, 09:58 PM
I would like to install this but the last time I did, it didn't show the bars properly on all the skins even though I've added them in the right directories, any ideas why? :(
suewh
11-25-2008, 10:18 AM
I have a question regarding layout of shop items, on the user's profile page. Forgive me if this has been covered but I could not find the answer within this lengthy thread.
How do I fix the long horizontal list of items that seems to become cut off due to it's length?
I have attached a screen shot to demonstrate the problem.
gorentals
11-25-2008, 12:11 PM
Going to update my older version once Beta 3 comes out to fix this very important issue:
- Receiving a gift is disabling sell and give away of existing and new items of the same item as the gift. Beta 3 will address this.
Great mod
Kendothpro
11-26-2008, 03:03 PM
Not sure if this has been brought up before, but..
When using this with the "post thank you hack", members are only given points ONCE PER THANKED POST
Which means that a post that has been thanked ONCE will have the same point value of a post that's been thanked 100 times. Is it meant to be this way? It would be more logical for the 100-thanked post to be worth 100 times the once-thanked post
Thanks
Replicators
11-28-2008, 11:58 AM
I am having a problem uninstalling this mod, i run the kill_xperience.php and it works and all, then i go to delete all files associated with vbexperience, then whenever i go into a thread i get a white page. I looked inside the db and did notice some tables of vbexperience was still in there, i deleted the one in the user table, but there must be more.
EDIT: Nevermind, switching to horizontal, then back to vertical postbit seemed to fix it, odd.
Edit 2: Now i get a db error everywhere regarding vbexperience.
Database error in vBulletin 3.7.4:
Invalid SQL:
select
u.userid,
u.username,
u.xperience_level
from **_user as u
order by u.xperience DESC
limit 0,5;
MySQL Error : Unknown column 'u.xperience_level' in 'field list'
Error Number : 1054
Request Date : Friday, November 28th 2008 @ 08:53:36 AM
Error Date : Friday, November 28th 2008 @ 08:53:36 AM
Script : http://www.scifyrez.com/
Referrer :
IP Address : ***.***.***.***
Username : Replicators
Classname : vB_Database
MySQL Version : 5.0.22
Anyway to fix this?
kalleklorin
12-01-2008, 06:02 PM
kewl
SuperDave71
12-01-2008, 06:10 PM
Is this going to be update to work with 3.8 soon?
-Thanks in advance,
Dave
lian82
12-01-2008, 06:55 PM
Is it possible to make shop items disappear after a certain given time?
By that i mean, I want my user to lose his item after 30 days.
Great mod btw.
NikosN
12-03-2008, 11:27 AM
Τhank you~!
no mods
12-03-2008, 03:48 PM
Maybe this has already been answered. But is there a way to use Vb credits as the points system? So when purchasing items from the shop you use VB credits.:erm:
Come2Daddy
12-03-2008, 04:37 PM
Great hack, I've always widh to use it, and today I installed it, I just wish if you could tell me how to customize the bar location in my customized postbit?
appsfinder
12-05-2008, 01:29 PM
where do i define categories for the shop?
any help would be good.
nike.stars
12-05-2008, 03:29 PM
is it possible to automatically give multiple award for one member? or the system already do that for member that have highest SUM for all award criteria?
gamerfu
12-06-2008, 05:56 PM
Feature request. :cool:
Ignore Users Awards
List all UserID's that should not be able to recieve awards, seperate them by a comma, e.g. 4,5,8. This is useful for Bots & Spammers.
Dream
12-08-2008, 10:57 PM
can this be used with vbcredits?
a client asked me to install both this and vbcredits on his forum. Im guessing you cant, but there are no mention of it in the info in the first post.
Nadeemjp
12-09-2008, 06:41 AM
this is nice, i shall install it later this week:)
Phalynx
12-09-2008, 07:19 AM
No, it can't be used with vBCredits, as it uses it's own storage.
To Install on vB 3.8 Beta you will need to modify the XML and remove this part:
<dependencies>
<dependency dependencytype="vbulletin" minversion="3.6.8" maxversion="3.7.99" />
</dependencies>
Or just change maxversion="3.7.99" to maxversion="3.8.99" ....
Nintendo-Daily
12-09-2008, 10:48 AM
Before I install this I just want to know if it has a battle system where members can fight each other. I didn't see this anywhere.
chrissmith
12-09-2008, 06:32 PM
Feature Request !
Would be nice if i could buy in the shop myself in a new group so i could limit the arcade play times for user that do not post that much and the user that have points can buy them in a group where their allowed to play how offten they want ...
I hope its clear what i am talking about (sry 4 my weard english) and i hope that feature will be in the next version :D
thanks
greets,
chris
juanpablo
12-10-2008, 12:06 PM
how i see the medals ID and how to add new medals for new awars?
gamerfu
12-12-2008, 08:10 PM
Problem 1:
The vBExperience Bar over-writing a drop-down menu in left_postbit.
Problem 2:
Multiple users are still displaying 100% activity.
Pictures attached.
chrissmith
12-14-2008, 02:53 PM
how i see the medals ID and how to add new medals for new awars?
you only have an award id ... its in the link in admin cp - award management of each award : id=....
adding new medals is easy ... create some icons with your fav. graphics editor and upload it in your medal directory (/images/misc/level/). and read whats in the new medal editor stands, first row ...
DebtFree
12-15-2008, 02:21 AM
First off, thanks Phalynx for a fantastic addon :)
2nd, I will admit that I have not read every post in this thread so sorry if I repeat something that has already been asked.
A couple of questions/requests ...
1. Does a purchase permanently deduct points or are the total points simply calculated minus any purchase transactions? eg I have 100 points and purchase an item for 20 points. Do I still have 100 points but it only shows as 80 or do I only have 80 points left?
2. If the points are actually removed, can we please get some form of 'point convertor' so that a member can change 1 point type for a second point type, therefor allowing them to purchase items they may not have enough specific points for.
3. An alternative to number 2 would be another option in Costfield that would spread the cost over all point types.
4. There are points awarded for referrals but could we please also have an option where points are awarded when your referred member makes a 'paid subscription' payment. ie a commission payment. This would need to be based on the payment being made and possibly being recurring (PayPal subscription)
Thanks again for a fantastic addon. Keep up the great work :)
LGKeiz
12-15-2008, 05:52 PM
for some reason it's not leveling up people at all.
website: http://gamingsync.com
MrFlicks
12-15-2008, 08:38 PM
Does this mod/addon VBExperience integrate with VBCredits by any chance?
I mean do the two work together in any way?
LGKeiz
12-15-2008, 08:54 PM
Does anyone know why :S
DebtFree
12-15-2008, 09:23 PM
Does this mod/addon VBExperience integrate with VBCredits by any chance?
I mean do the two work together in any way?
From what I have read, no they don't interact with each other because they are both doing the same thing (basically)
3Down
12-16-2008, 09:11 AM
Great mod however, I hve two major issues.
1) it's not auto-assigning the awards over, I am admin and I have all three awards, someone has now over taken me on the post count yet I have the award still?
2) in the admincp vBEperience tab, ALL of the sub sections come up blank apart from ReCount. everything else just open a blank page to the right :(
Any help please, I had the last one and updated with this one. still no good :(
cptrek
12-16-2008, 06:38 PM
Wow, this is awesome.
Thanks!
LGKeiz
12-17-2008, 05:50 AM
I wish someone answered my question..
3Down
12-17-2008, 08:53 AM
lol yep, same here LGKeiz :(
3Down
12-17-2008, 09:37 AM
I just looked and non of the "Settings" tabs are working in the admincp > vBExperience part.
i.e.:
Settings: General
Settings: Bars
Settings: Points
Great mod however, I hve two major issues.
1) it's not auto-assigning the awards over, I am admin and I have all three awards, someone has now over taken me on the post count yet I have the award still?
The award is calculated based on various criterias, not only post count. See manage awards section in admin cp.
3Down
12-17-2008, 11:44 AM
ohh I see, thanks jerx, sorted that now (thanks again) I've just got to get the vbexperience settings to work now lol :)
Dreagnout
12-18-2008, 12:33 PM
Hi, I have a doubt, how can have in the postbit_legacy (profile in each post), a tab that says what number of rank in the vbExperience's rank is the user of the post?
Thanks
hostmela
12-18-2008, 04:30 PM
i have installed this mod and facing problem.
I have set a member to moderator group but after 5 to 10 minute his user group gets changed to member again....can any one help me please....using VB 3.7.4 PL1.
DebtFree
12-19-2008, 01:56 PM
i have installed this mod and facing problem.
I have set a member to moderator group but after 5 to 10 minute his user group gets changed to member again....can any one help me please....using VB 3.7.4 PL1.
If you are certain that the problem is not being caused by Usergroup Promotions, then you could try setting the vBExperience setting 'Use the promotion system?' to No and see if the problems continues.
DebtFree
12-19-2008, 01:58 PM
Any chance of a comment on this ...First off, thanks Phalynx for a fantastic addon :)
2nd, I will admit that I have not read every post in this thread so sorry if I repeat something that has already been asked.
A couple of questions/requests ...
1. Does a purchase permanently deduct points or are the total points simply calculated minus any purchase transactions? eg I have 100 points and purchase an item for 20 points. Do I still have 100 points but it only shows as 80 or do I only have 80 points left?
2. If the points are actually removed, can we please get some form of 'point convertor' so that a member can change 1 point type for a second point type, therefor allowing them to purchase items they may not have enough specific points for.
3. An alternative to number 2 would be another option in Costfield that would spread the cost over all point types.
4. There are points awarded for referrals but could we please also have an option where points are awarded when your referred member makes a 'paid subscription' payment. ie a commission payment. This would need to be based on the payment being made and possibly being recurring (PayPal subscription)
Thanks again for a fantastic addon. Keep up the great work :)
DanTHEGREAT
12-20-2008, 07:59 PM
why doesn't it work for 3.8...............................................
I know its a 3.7 hack but im waiting here..
LGKeiz
12-21-2008, 01:40 AM
why doesn't it work for 3.8...............................................
I know its a 3.7 hack but im waiting here..
I know right? But I think we should wait, it'll be released soon.
momo2
12-21-2008, 03:45 AM
Very high resource for forums over 100K removed !!!
MissKalunji
12-21-2008, 04:02 AM
There's a readme file about optimizing it to work properly with big boards did you read it?
GlitterKill
12-21-2008, 11:02 PM
Regarding the Award feature, can an admin assign more than one person an award? Can you create new awards that are not based on any data source?
The reason I am asking is because, if the answer to those two questions are yes, I can install your mod and eliminate the one I use expressly for awards. :)
http://www.forumapex.com/awards.php
You can see that we have awards that are given to groups of individuals. Can your award feature be used in this manner? Would that award method be a performance hit on a busy (300 - 500 active) board?
DanTHEGREAT
12-22-2008, 01:31 AM
dude, where is 3.8?!?!?! I've been waiting like crazay!
ebiltyler
12-22-2008, 03:33 AM
I'm trying to import the xml after I added in all the files and it says, "You need to upload files first!" and now I'm stuck and it's pissing me off.
Phalynx
12-22-2008, 08:44 PM
3.7.18 has been updated to Beta 3:
- Compatible with vBulletin 3.8
- Several fixes
Please download at first post.
DanTHEGREAT
12-22-2008, 08:47 PM
THANK YOU!!!!! I've been waiting!
- dan
Phalynx
12-22-2008, 08:51 PM
Beta 3 has been also posted as an addon for vBulletin 3.8:
https://vborg.vbsupport.ru/showthread.php?t=199556
ebiltyler
12-22-2008, 10:46 PM
I'm trying to import the xml after I added in all the files and it says, "You need to upload files first!" and now I'm stuck and it's pissing me off.
Help please?
Jaxel
12-23-2008, 12:33 AM
Since installing this UPDATE, server load on my forums have DOUBLED...
Not to mention, in Internet Explorer, pages lag now. They load, and then they freeze for a few seconds.
mikeo9043
12-24-2008, 05:48 AM
I installed this mod, I think its great but does it update stats automatically or do I have to keep hitting Recount? Also I'm not sure if this a glitch or not..but a member of mine has 100% activity and I don't but he doesn't come on the site nowhere near as much as I do..?
LGKeiz
12-24-2008, 07:25 AM
You said beta 3 works with 3.8.0 is there a reason people can't level? they have 99% everything, but they don't level.
nike.stars
12-24-2008, 04:18 PM
@phalynx
you write above that there is 3rd party addon for DownloadsII, where do i find this? i can't find it using the search feature :-/
LGKeiz
12-24-2008, 09:29 PM
Why doesn't anyone level up ??
slinkyman
12-25-2008, 01:32 AM
I'm running into 2 bugs (using vBulletin 3.7.3) on the new BETA 3:
1. Admin Panel links are showing to everyone. I know nobody but admins can get it, but still...
http://i41.tinypic.com/2mdh400.png
2. The redirection page from buying an item says (buying still works though):
http://i43.tinypic.com/wqttes.png
slinkyman
12-28-2008, 08:33 PM
Is there going to be any fix for those issues? I've seen them on other vB sites too.
Jaxel
12-30-2008, 08:03 AM
I'm having problems uninstalling this mod... I ran kill_xperience.php and deleted all the files...
Now I get an uncached template error: Uncached templates: xperience_vbnav_quicklink (1)
Also the Update vBExperience points section in Update Counters is still there as well.
And whenever anyone tries to make a post... they get the following error:
Database error in vBulletin 3.7.4:
Invalid SQL:
UPDATE user SET xperience_done=0 WHERE userid='1';
MySQL Error : Unknown column 'xperience_done' in 'field list'
Error Number : 1054
This shouldn't be happening if the mod was uninstalled.
First of all: thanks for this great mod. I just installed it (v37.18 BETA3) yesterday and people already love it.
I do however have problems with the promotions: all my mods were 'promoted' to the registered usergroup. Just like with the admingroup, this should have been disabled by default.
So I edited class_xperience.php with this line:
if ($level_current['usergroupid']<>0 AND $user['usergroupid']<>$level_current['usergroupid'] AND $user['usergroupid']<>6 AND $user['usergroupid']<>5)
I used to promote users when they reached 2000 posts to usergroupid 28. I have deleted the old (vb) promotion before enable the vbexperience promotion system. So I edited vbexperience_level_2_average.xml and decided to levelup everyone with level 50 (and up) to this usergroupid 28:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6150,51,28)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6350,52,28)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6550,53,28)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6750,54,28)");
and so on up to level 100.
What am I doing wrong here? Is anyone getting the promotions to work?
Vaupell
12-31-2008, 02:24 PM
Tx love it.. installed.
useakme
12-31-2008, 04:59 PM
I've tried installing/unistalling a few times. I keep getting this:
Points: 1, Level: 1 Points: 1, Level: 1 Points: 1, Level: 1
Activity: 0% Activity: 0% Activity: 0%
On each member....
I'd rather just pay someone a couple of greenbacks to go in and fix it, if anyone is interested.
Hi Phalynx,
I'm using $bbuserinfo[xperience] to show the amount of exp in non-supported templates. The only problem is that it doesn't show the decimal seperator. (123.456 is displayed as 123456).
Do you know how it can be fixed? :)
caggla
01-02-2009, 01:11 PM
Hi,
Is there way to define the activity% and points for a chosen period of time; like showing the stats month by month, monthly hall of fame etc...
I am trying to apply this great mod to pick up the member of the month to be able to give actual awards.
Old members have higher levels and the new yet zealous ones can not catch up with them.
Also I noticed a folder named vBAdvanced 3 GOLD modules. Does my answer lay in it?
Thanks & regards
Vaupell
01-02-2009, 04:23 PM
ok mod is working, the shop is not.. when looking at the shop there are
link to admin panel and moderation panel from all level of users.
link is wrong and graphics are borked, but its still there.
http://www.evisystems.org/forums/xperience.php?go=shop
And when buying from the shop i made a test item
the confirm pruchase just hits a 404 url not found, but the purchase is still made..
any suggestions ?
----------
Hmm infact several funktions dont work in the shop,
- cant sell back
- cant give item
gorentals
01-02-2009, 08:05 PM
Very disappointing. Was really looking forward to the next release but it seems like it breaks everything.
creativepart
01-02-2009, 09:54 PM
What all is contained in the "Activity" points shown??
johnlittle
01-04-2009, 08:02 PM
the member lvl and exp is not accurate is there a way to correct?
old member registered on 2007 jan he posted only 4 post and get 1000+ exp and 10+ lvl compare to new member who joined in 2007 december who posted 700+ posts and getting alot lesser????
First of all: thanks for this great mod. I just installed it (v37.18 BETA3) yesterday and people already love it.
I do however have problems with the promotions: all my mods were 'promoted' to the registered usergroup. Just like with the admingroup, this should have been disabled by default.
So I edited class_xperience.php with this line:
if ($level_current['usergroupid']<>0 AND $user['usergroupid']<>$level_current['usergroupid'] AND $user['usergroupid']<>6 AND $user['usergroupid']<>5)
I used to promote users when they reached 2000 posts to usergroupid 28. I have deleted the old (vb) promotion before enable the vbexperience promotion system. So I edited vbexperience_level_2_average.xml and decided to levelup everyone with level 50 (and up) to this usergroupid 28:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6150,51,28)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6350,52,28)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6550,53,28)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (6750,54,28)");
and so on up to level 100.
What am I doing wrong here? Is anyone getting the promotions to work?
Greek76
01-06-2009, 09:05 AM
Item sold out? How can I make it so its not sold out? Great mod by the way.
Ski-Whiz
01-06-2009, 11:28 AM
I'm not sure if anyone else is getting this but when I have vBe enabled I get a redirect page when I post a Quick Reply.
I changed to the original template and it still does the redirect.
I enable vBe and the redirect comes back.
Like I said, it's when I post a quick reply.
I'm running vb 3.8 (latest) and the beta 3 of vBe..
I didn't see the quick reply redirect issue posted before so I'm wondering why it's just my site. :D
Stryker412
01-06-2009, 02:50 PM
How do you disable the Earn Points section? I'd rather my members not know how to gain points so they start spamming.
dizzine
01-06-2009, 03:23 PM
i have 2 little questions..
1. my awards system is working great but how do i set the trigger for the awards.?
2. i have created an award for those who donate via AWCoding Software LITE. in the Fields selection list what should i select? i have Donations and Paypal Donate selected but still the award is not being displayed. All transactions have been confirmed in AWCoding LITE admincp..
many thanks..great mod..!
creativepart
01-06-2009, 04:07 PM
Asking again... does anyone know what all is included in the Activity points section. There is a description for all the other points sections like threads, posts, User. But no description at all about what, exactly, is contained in Activity.
My users are asking and I have no real answer for them.
DebtFree
01-07-2009, 03:58 AM
Still no answer (or even a response) to any of this ...
First off, thanks Phalynx for a fantastic addon :)
2nd, I will admit that I have not read every post in this thread so sorry if I repeat something that has already been asked.
A couple of questions/requests ...
1. Does a purchase permanently deduct points or are the total points simply calculated minus any purchase transactions? eg I have 100 points and purchase an item for 20 points. Do I still have 100 points but it only shows as 80 or do I only have 80 points left?
2. If the points are actually removed, can we please get some form of 'point convertor' so that a member can change 1 point type for a second point type, therefor allowing them to purchase items they may not have enough specific points for.
3. An alternative to number 2 would be another option in Costfield that would spread the cost over all point types.
4. There are points awarded for referrals but could we please also have an option where points are awarded when your referred member makes a 'paid subscription' payment. ie a commission payment. This would need to be based on the payment being made and possibly being recurring (PayPal subscription)
Thanks again for a fantastic addon. Keep up the great work :)
I take it what was looking like a very promising product is now a dead project?
Phalynx
01-07-2009, 12:08 PM
vBExperience 3.8 RC has been released. A final version will be released at the end of the next week.
Full Changelog:
- Now compatible with vBulletin 3.7.x and 3.8.x - support for vBulletin 3.6.x has been dropped
- New Experience: Socialgroup Discussions (Discussions, Posts)
- New Experience: Completing Profile (per editable profile fields, excluded are fields with a default value)
- Awards: Fixed handling of awards for ignored usergroups (thanks goes to Abe1)
- Awards: You can now define the max awards a user can get (thanks goes to Abe1)
- Awards: Award for activity is beeing set only to one user (more experience points wins), all other users are getting 99%.
- Awards: You can exclude usergroups from getting Awards. Administrators (Group ID 6) are excluded by default.
- Fixed margin of vBExperience tab in profile
- Settings: Removed links in AdminCP, please go directly to "vBulletin Options"
- Rankings: Fixed XSS Vulnerability (thanks to snunhuck and Y4I)15)
- Experience: Changed "post_thanks_thanked_times" to "post_thanks_user_amount" (post thank you hack)
- Experience: Handling of "Post Thank You" data now via CDP Addon. Support in Experience core has been dropped. You will need to import the addon from extras/addons.
- Shop: Fixed AdminCP Links visible to everyone
- Shop: Fixed AdminCP, Manage Shop, "Transactionlog (Page %1$s/%2$s) | There are %3$s Entries."
- Shop: Fixed missing BBUrl Prefix
- Shop: Give Away is sending PM to receiver (setable)
- Shop: Selling item is sending PM to defined list (setable)
- Shop: Writing a PM upon a purchase can now be deactivated
- Shop: Improved "give away" and display in postbit/profile
- Shop: Set if points from purchased products should be substracted
- Shop: User can sell item back to shop and get 75% points back (amount setable)
- Shop: User can give away item (gift) to someone
- Shop: Transactions in AdminCP are now paged
- Shop: User can see own transactions
- Shop: Categories have now an icon and a description
- Shop: Description of Costfield in AdminCP with default value if translation is empty
- Fixed unchached templates
- New feature: Earn Points. It tells the user where and how he can get points. Title and description are pulled from phrases of the settings
- CDP: New revision of CDP to support Earn Points
- CDP: All addons have been upgraded to support "Earn Points"
- Added row breaker for profile shop items
- Smaller fixes and changes
Phalynx
01-07-2009, 12:27 PM
1. Does a purchase permanently deduct points or are the total points simply calculated minus any purchase transactions? eg I have 100 points and purchase an item for 20 points. Do I still have 100 points but it only shows as 80 or do I only have 80 points left?
You can control that for yourself, check setting "Subtract points?"
2. If the points are actually removed, can we please get some form of 'point convertor' so that a member can change 1 point type for a second point type, therefor allowing them to purchase items they may not have enough specific points for.
Uhm, sounds like a lot of work :>
3. An alternative to number 2 would be another option in Costfield that would spread the cost over all point types.
You can already substract from the main experience points.
4. There are points awarded for referrals but could we please also have an option where points are awarded when your referred member makes a 'paid subscription' payment. ie a commission payment. This would need to be based on the payment being made and possibly being recurring (PayPal subscription)
Feel free to use the CDP to create an addon.
Regarding the Award feature, can an admin assign more than one person an award? Can you create new awards that are not based on any data source?
Yes.
I'm trying to import the xml after I added in all the files and it says, "You need to upload files first!" and now I'm stuck and it's pissing me off.
It seems you didn't copied the files to the correct folder. xperience.php should be where your forum.php is.
is there a reason people can't level? they have 99% everything, but they don't level.
Seems you imported a too small level file. Try to import a bigger one, don't forget to recount.
@phalynx
you write above that there is 3rd party addon for DownloadsII, where do i find this? i can't find it using the search feature :-/
It's already included and installed in the main installation.
Phalynx
01-07-2009, 12:36 PM
2. The redirection page from buying an item says (buying still works though):
http://i43.tinypic.com/wqttes.png
Will take a deeper look for the final version.
I'm having problems uninstalling this mod... I ran kill_xperience.php and deleted all the files...
You will need to manually uninstall the product.
I do however have problems with the promotions: all my mods were 'promoted' to the registered usergroup. Just like with the admingroup, this should have been disabled by default.
Included in 3.8 RC.
I used to promote users when they reached 2000 posts to usergroupid 28. I have deleted the old (vb) promotion before enable the vbexperience promotion system. So I edited vbexperience_level_2_average.xml and decided to levelup everyone with level 50 (and up) to this usergroupid 28:
(....)
and so on up to level 100.
What am I doing wrong here? Is anyone getting the promotions to work?
Yes, working on all sites I manage.
I've tried installing/unistalling a few times. I keep getting this:
Points: 1, Level: 1 Points: 1, Level: 1 Points: 1, Level: 1
Activity: 0% Activity: 0% Activity: 0%
On each member....
Did you run the maintenance tools after installation? Pleae read the file readme_install_uninstall_upgrade.txt
I'm using $bbuserinfo[xperience] to show the amount of exp in non-supported templates. The only problem is that it doesn't show the decimal seperator. (123.456 is displayed as 123456).
Do you know how it can be fixed? :)
Not without doing a modification for this. vBulletin pulls this data from the db at the very beginning, vBExperience is not involved in this process.
Phalynx
01-07-2009, 12:40 PM
Is there way to define the activity% and points for a chosen period of time; like showing the stats month by month, monthly hall of fame etc...
No, not supported currently.
Very disappointing. Was really looking forward to the next release but it seems like it breaks everything.
Please tell me what exactly is broken. I'm hoping you don't compare a beta to a stable product.
What all is contained in the "Activity" points shown??
readme.txt:
Calculation of the activity
The system calculates the activity by taking the average post count of the ten most active user and comparing it to own post count. This can be set to count only the last X days, f.e. 21 days (controlable via AdminCP) .
Item sold out? How can I make it so its not sold out? Great mod by the way.
Just print a high number in the itemcount, like 99999
I'm not sure if anyone else is getting this but when I have vBe enabled I get a redirect page when I post a Quick Reply.
Cannot confirm this. You should check vBulletin's setting for redirects.
Phalynx
01-07-2009, 12:47 PM
How do you disable the Earn Points section? I'd rather my members not know how to gain points so they start spamming.
Has been included in 3.8 RC.
1. my awards system is working great but how do i set the trigger for the awards.?
What do you mean exactly with "trigger"?
2. i have created an award for those who donate via AWCoding Software LITE. in the Fields selection list what should i select? i have Donations and Paypal Donate selected but still the award is not being displayed. All transactions have been confirmed in AWCoding LITE admincp..
Did you clicked on generate Awards?
Stryker412
01-07-2009, 01:12 PM
How do you remove the previous versions vbe from the admincp menu, now that it is only in the vbulletin options?
Phalynx
01-07-2009, 01:16 PM
I refreshed the ZIP after few minutes.
Please re-download the ZIP, it seems you have the outdated cpnav_xperience.xml
Sorry!
Stryker412
01-07-2009, 01:27 PM
I refreshed the ZIP after few minutes.
Please re-download the ZIP, it seems you have the outdated cpnav_xperience.xml
Sorry!
I redownloaded your newest zip, and updated the xml with overwrite on. It's still in the admincp under the Users tab. There's nothing in there if you click on any of the options but the menu itself is still there.
Phalynx
01-07-2009, 01:31 PM
In this case we are talking about different things. If the shortcut to the settings does not work, use the vBulletin Options directly. I cannot confirm this behaviour.
Stryker412
01-07-2009, 01:40 PM
http://img132.imageshack.us/img132/1362/admincptt5.jpg
This is what I mean.
Phalynx
01-07-2009, 01:43 PM
Yes, me too. It was not displayed with the first released ZIP of 3.8 RC, but has been fixed a few minutes later.
If the shortcut to the settings does not work, use the vBulletin Options directly.
Subah
01-07-2009, 02:32 PM
waiting for the final version ;) , thanks a lot :D
Pokerbanter
01-07-2009, 09:43 PM
.....................
gorentals
01-08-2009, 12:30 AM
WOW great job. Going to wait for the final before I upgrade. Really looking forward to this.
Phalynx
01-08-2009, 02:07 PM
Update to 3.8.0 RC2 has been released. I've tested this on vBulletin 3.7.5 and vBulletin 3.8 GOLD.
Rough changes from the RC:
- "Social Group Messages" and "Profile filled" are now also showing up as points
- In vBulletin 3.8 you can enable a link in the "Community Links" popup on the navbar
- German language file has been updated - other languages are very welcome
- Fixed language in Earn Points
- Fixed Addons's dependency
- Fixed several other minor bugs
Subah
01-08-2009, 02:32 PM
Thanks again and waiting for the final version ;)
Phalynx
01-08-2009, 02:37 PM
I hope there are people out there who are not waiting for the final until they install. Otherwise I get no feedback regarding this RC :o
sonokai
01-08-2009, 06:03 PM
hey
i installed this
it's an amazing addition to my forums
but can anyone tell me how to set up my shop?
Phalynx
01-08-2009, 06:38 PM
Sure, if you click Mark as Installed :)
sonokai
01-08-2009, 09:20 PM
Oops
Lol,sorry
I went to sleep as soon ad I installed it
Phalynx
01-09-2009, 09:46 AM
but can anyone tell me how to set up my shop?
AdminCP, vBExperience, Manage Shop
There you will need to define categories and items.
Phalynx
01-09-2009, 12:12 PM
vBExperience has been released as 3.8.0 GOLD. The new features are Earn Points (It tells the user where and how he can get points), Give Aways and Sells in Shop and a lot of improvement, minor changes and fixes.
Please upgrade to 3.8.0 as soon as possible. Only vBExperience 3.8.0 is fully compatible with vBulletin 3.8!
3.8.0 GOLD, 9th January 2009
- Now compatible with vBulletin 3.7.x and 3.8.x - support for vBulletin 3.6.x has been dropped
- New Experience: Socialgroup Discussions (Discussions, Posts)
- New Experience: Completing Profile (per editable profile fields, excluded are fields with a default value)
- New feature: Earn Points. It tells the user where and how he can get points. Title and description are pulled from phrases of the settings
- New feature: Shop: User can give away item (gift) to someone
- New feature: Shop: User can sell item back to shop and get 75% points back (amount setable)
- New feature: Shop: User can see own transactions
- Awards: Fixed handling of awards for ignored usergroups (thanks goes to Abe1)
- Awards: You can now define the max awards a user can get (thanks goes to Abe1)
- Awards: Award for activity is beeing set only to one user (more experience points wins), all other users are getting 99%.
- Awards: You can exclude usergroups from getting Awards. Administrators (Group ID 6) are excluded by default.
- Fixed margin of vBExperience tab in profile
- Rankings: Fixed XSS Vulnerability (thanks to snunhuck and Y4I)15)
- Experience: Handling of "Post Thank You" data now via CDP Addon. Support in Experience core has been dropped. You will need to import the addon from extras/addons.
- Shop: Fixed AdminCP Links visible to everyone
- Shop: Fixed AdminCP, Manage Shop, "Transactionlog (Page %1$s/%2$s) | There are %3$s Entries."
- Shop: Fixed missing BBUrl Prefix
- Shop: Give Away is sending PM to receiver (setable)
- Shop: Selling item is sending PM to defined list (setable)
- Shop: Writing a PM upon a purchase can now be deactivated
- Shop: Improved "give away" and display in postbit/profile
- Shop: Set if points from purchased products should be substracted
- Shop: Transactions in AdminCP are now paged
- Shop: Categories have now an icon and a description
- Shop: Description of Costfield in AdminCP with default value if translation is empty
- Fixed unchached templates
- CDP: New revision of CDP to support Earn Points
- CDP: All addons have been upgraded to support "Earn Points"
- Added row breaker for profile shop items
- Minor fixes and changes
Subah
01-09-2009, 12:53 PM
Thank you for the final version ;)
gorentals
01-09-2009, 02:32 PM
ok did the upgrade to 3.8 gold everything seem to have went good I am on 3.7.3
Having a couple issues:
1. A user is attempting to sell an item and is getting this error:
Database error in vBulletin 3.7.3:
Invalid SQL:
UPDATE vbforum_xperience_shop_ta
SET sell=1,125, dateline_sell=1231517160
WHERE taid=33;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '125, dateline_sell=1231517160
WHERE taid=33' at line 2
Error Number : 1064
Request Date : Friday, January 9th 2009 @ 10:06:41 AM
Error Date : Friday, January 9th 2009 @ 10:06:41 AM
Script : http://xxxxxx/xperience.php?go=shop&itemid=9&do=sell
Referrer : http://xxxxxxx/xperience.php?go=shop&do=own
IP Address :
Username : Classname
: vB_Database
MySQL Version : 5.0.67-community
2. The transaction log in the admincp is not refreshing with latest transactions when selling an item. It's possible this doesn't get recorded anyways.
Love the new additions! Let me know what I am doing wrong. thank you
Nadeemjp
01-09-2009, 02:41 PM
works fine with 3.8
Nadeemjp
01-09-2009, 02:49 PM
does it work with 3.8?
Phalynx
01-09-2009, 03:44 PM
1. A user is attempting to sell an item and is getting this error:
Ok, this happens because your server is using a , as a delimiter. Will fix this for next version.
2. The transaction log in the admincp is not refreshing with latest transactions when selling an item. It's possible this doesn't get recorded anyways.
Will take a look.
does it work with 3.8?
Nadeemjp, why do you ask in 3 different threads of 3.7 hacks where you could take a look at the 3.8 hacks and find it there? Yes, it is compatible, just check the 3.8 mod section.
dizzine
01-09-2009, 04:53 PM
been looking at the postbit template and want to move the award icon to directly below the username (instead of to the right of) in the legacy postbit..
what bit of code should i use..?
many thanks..
Phalynx
01-09-2009, 09:02 PM
To get support, you will need to click "Mark as Installed".
zombietom
01-10-2009, 03:35 AM
any reported problems upgrading to the newest version of vbexperience on vb version 3.7.1
thanks for this great mod
cykelmyggen
01-10-2009, 07:43 AM
Hi
Upgrading to 3.8.0 and so far everythings seems to be working fine, except Shop Categories has moved to the right side of page. Please take a look at the attached screenshot.
And thanks for a great Mod:up:
dizzine
01-10-2009, 10:01 AM
To get support, you will need to click "Mark as Installed".
sorry..marked as installed now..:up:
original post;
been looking at the postbit template and want to move the award icon to directly below the username (instead of to the right of) in the legacy postbit..
what bit of code should i use..?
many thanks.
digitalhawk
01-10-2009, 03:46 PM
Is there away to set it up so members can donate points to each other?
Thank You
WoGuziczek
01-10-2009, 06:50 PM
Hmmm... Not work from the VS Hide Hack Ressurection :/ Thanks for the user is 0 on vBExperience. User normally has more than 3000. Why?
cykelmyggen
01-10-2009, 08:22 PM
Hi
Upgrading to 3.8.0 and so far everythings seems to be working fine, except Shop Categories has moved to the right side of page. Please take a look at the attached screenshot.
And thanks for a great Mod:up:
Problem solved - template needed to be reverted;)
mikeinjersey
01-11-2009, 04:58 AM
can someone tell me what the 'per day' stat refers to ? all it says is Per Day.
Phalynx
01-11-2009, 07:33 AM
been looking at the postbit template and want to move the award icon to directly below the username (instead of to the right of) in the legacy postbit..
what bit of code should i use..?
The Award Icon is attached to the username. Take a look at the hook "fetch_musername"
Is there away to set it up so members can donate points to each other?
Currently not supported, but will do in one of the next versions.
Hmmm... Not work from the VS Hide Hack Ressurection :/ Thanks for the user is 0 on vBExperience. User normally has more than 3000. Why?
Did you run maintenance tools, recalculate points?
can someone tell me what the 'per day' stat refers to ? all it says is Per Day.
To get support, you will need to click "Mark as Installed".
dizzine
01-11-2009, 08:00 AM
The Award Icon is attached to the username. Take a look at the hook "fetch_musername"
ah..great, many thanks Phalynx..:up:
Greek76
01-11-2009, 08:30 AM
How about a way where users can purchase gifts from the shop for other users?
WoGuziczek
01-11-2009, 09:44 AM
Did you run maintenance tools, recalculate points?
Of course.
Thanks are not displayed at all.
In the options I have set for the granting of credits thanks.
mikeinjersey
01-11-2009, 02:37 PM
To get support, you will need to click "Mark as Installed".
Its been marked as installed. so 'Per Day' means ?
Also, can someone tell me how to change "white" background color of the bars ?
Phalynx
01-11-2009, 06:56 PM
How about a way where users can purchase gifts from the shop for other users?
Already included, they can use "Give Away" for this.
Thanks are not displayed at all.
In the options I have set for the granting of credits thanks.
If you still need help in this than you need to provide me a temporay admin account on your board.
'Per Day' means ?
It says how many days the user is registered multiplied with the value you defined in settings.
Also, can someone tell me how to change "white" background color of the bars ?
If you have a dark style, you need to extract from the ZIP/Extras the bars with dark background.
mikeinjersey
01-11-2009, 07:25 PM
If you have a dark style, you need to extract from the ZIP/Extras the bars with dark background.
I already changed the color of the Bars...thats done. I just dont like the "white" background color of the bars that arent filled up yet. I'd like to change that to black. can u tell me how ?
Phalynx
01-11-2009, 07:57 PM
Ok, now I know what you mean. You will need to edit the files *_faded.gif
mikeinjersey
01-11-2009, 11:53 PM
Ok, now I know what you mean. You will need to edit the files *_faded.gif
Thanks...just 1 more.
How come we cant use the same identificator award twice ? It says there not to use them twice.
Phalynx
01-12-2009, 06:31 AM
It's beeing used as a keycolumn.
mikeinjersey
01-12-2009, 04:53 PM
How about "Points for User" ? Could you help me with that one ? I dont understand it.
sonokai
01-12-2009, 06:07 PM
hey
i've done everything
and it's all smooth
but when someone buys something, the image doesn't show up
how do you fix this?
Phalynx
01-12-2009, 06:37 PM
How about "Points for User" ? Could you help me with that one ? I dont understand it.
Just see "Earn Points"
but when someone buys something, the image doesn't show up
You need to enter a small and a big image in the AdminCP by creating new items.
leeman
01-13-2009, 06:36 AM
A little interesting add on that would make this mod even better.
Now in 3.8 we have the adsense support.
If it was possible to toggle the view of ads to the activity rating...
So for example : You get your activity over 50% the ads disapear, drop down below again and the ads are back ....
Sounds like a hard thing ???
Phalynx
01-13-2009, 07:22 AM
Sounds nice, but I don't think that this is a thing that can be done easily. Adsense integration is not included in the default installation.
leeman
01-13-2009, 07:48 AM
Sounds nice, but I don't think that this is a thing that can be done easily. Adsense integration is not included in the default installation.
As a add on module ...??
I was thinking since the function kinda exists already in the VBAdsense settings for guests.
I know it's lotsa work but I was just planting a seed ...
Sweeks
01-14-2009, 11:37 PM
The bars in the postbit are not showing for 2 of our users and they are not ignored in the settings. Any ideas please?
Thank you
________
Michigan dispensaries (http://michigan.dispensaries.org/)
gushil
01-15-2009, 05:38 AM
the awards images are not showing up.
am i missing something?
Phalynx
01-15-2009, 07:54 AM
As a add on module ...??
I was thinking since the function kinda exists already in the VBAdsense settings for guests.
I know it's lotsa work but I was just planting a seed ...
Maybe some one will pick this up... ?
The bars in the postbit are not showing for 2 of our users and they are not ignored in the settings. Any ideas please?
Thank you
the awards images are not showing up.
am i missing something?
To get support, you will need to click "Mark as Installed".
Sweeks
01-15-2009, 09:15 AM
Maybe some one will pick this up... ?
To get support, you will need to click "Mark as Installed".
I thought I already had lol any ideas?
Thank you
________
Italian cooking (http://www.cooking-chef.com/italian/)
Phalynx
01-15-2009, 09:23 AM
Now you are showing up as installed, thanks :)
Do the users have negative points?
Phalynx
01-15-2009, 02:05 PM
vBExperience 3.8.1 has been released.
Changelog:
- French language updated - thanks to mitch84
- Turkish language updated - thanks to AdemGENÇ
- Shop: Fixed error on selling items with "," as delimiter
- AdminCP: Ability to define a User ID where the User recount should start at
- Optimization for large boards: Average Posts per day (forum) is beeing calculated once per night, optionally Admin can set a predefined value and disable the cron
- Optimization for large boards: Average Posts per day (user) is beeing calculated once per night
- Rankings: Displaying reputation points, setable
- AdminCP: Fixed hardcoded AdminCP Path
Sweeks
01-15-2009, 05:02 PM
For some reason when someone has an infraction the bars disappear from the postbit. Is this a setting I have missed?
________
Herbalaire Vaporizer Review (http://herbalairevaporizer.com/)
sonokai
01-15-2009, 05:36 PM
hey
how do you add more awards?
Phalynx
01-15-2009, 08:36 PM
For some reason when someone has an infraction the bars disappear from the postbit. Is this a setting I have missed?
Yes, just disable the points for infractions.
hey
how do you add more awards?
AdminCP, vBExperience, Manage Awards
Adem GEN?
01-15-2009, 10:00 PM
New/Edit Turkish Language files
Yeni/Düzeltilen Türkçe Lisan dosyası
Mevcut Türkçe lisan dosyanızın üzerine yazmalısınız.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.