vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - vBExperience 4 (https://vborg.vbsupport.ru/showthread.php?t=245023)

istvan 11-23-2011 10:07 AM

Quote:

Originally Posted by istvan (Post 2222739)
i'm having the same problem , how can i fix this myself ?

i think its stored in xperience_level

now it looks like 24200 68

so the experience level 24200 should have people at lvl 68 right? but when i do a recount people get level 22 while they should have 68 i think

i deleted it again, did a reset imported lvl 3 (or 4) then i did a recount and its like :

22 Bushmaster 56,161 99.8% 13 3,754 1,073 2,313 49,020
22 Istvan 24,299 100.0% 15 3,811 8,501 11,886 100
22 Thalin 22,255 77.0% -5 3,738 4,540 13,976 0
22 Illieth 17,138 99.9% 10 3,762 2,415 8,344 2,616
22 Atee 14,071 38.0% 10 3,755 3,487 6,827 0
22 Grovis 11,587 38.0% 10 3,756 1,928 5,902 0
22 Hyfk 7,950 42.0% 20 3,159 1,232 3,533 25
22 Roos 7,855 47.0% 0 3,133 688 4,034 0
22 P?nelop? 7,827 42.0% 20 3,790 940 3,097 0
22 Leeona 6,989 51.0% 10 3,787 1,768 1,434 0
22 Barkas 6,790 38.0% 10 3,751 991 2,047 0
22 Fjotte 6,647 38.0% 10 3,751 973 1,922 0
22 Armengar 6,633 38.0% 10 2,558 958 3,116 0
22 Layla 6,552 51.0% 10 3,753 672 2,126 0


i used the kill_xperience.php to delete the mod completly but when i reinstall everyone is stuk on lvl 22 again while he xperience_level reads

20800 20
22400 21
24000 22
25500 23
27200 24
28900 25
30500 26


so even tho the levels seem to have been imported into the database people cant level up past lvl 22

akibui 11-24-2011 02:37 PM

I removed vBExperience following the readme_install_uninstall_upgrade.txt then i get error when i try to remove all file from FTP. Please help.

Quote:

arning: require_once([path]/xperience/hooks/memberaction_dropdown.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/functions.php(3410) : eval()'d code on line 4

Fatal error: require_once() [function.require]: Failed opening required '/home/xxxx/public_html/xperience/hooks/memberaction_dropdown.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxx/public_html/includes/functions.php(3410) : eval()'d code on line 4
problem solved.

goxy63 11-30-2011 03:35 PM

So to exclude some inactive members just to create one usergroup and to move those users there as it looks weird that some user who is not with us 2-3 years get some rewards today :D
And after this to recount ?

Or there is option "Only active users?" within admin CP, but where to set in VB after how many days someone is active or not...so many options I just lost myself there :)
After this says please do not recount!

After any of these changes we again need to wait some time that everything get sorted out with data?

snowlion 12-01-2011 12:46 AM

Quote:

Originally Posted by goxy63 (Post 2273376)
So to exclude some inactive members just to create one usergroup and to move those users there as it looks weird that some user who is not with us 2-3 years get some rewards today :D
And after this to recount ?

Or there is option "Only active users?" within admin CP, but where to set in VB after how many days someone is active or not...so many options I just lost myself there :)
After this says please do not recount!

After any of these changes we again need to wait some time that everything get sorted out with data?

Use this mod :D
Move Inactive and Lurker Users To New Usergroup

https://vborg.vbsupport.ru/showthread.php?t=231874

tylerjmorrison 12-01-2011 01:41 AM

Got It!

Vowgaming 12-01-2011 04:46 AM

Hi Im trying to use vsa donate add on and have changed vBExperience VSa PayPal Donate to

PHP Code:

if ($DoDebug==1) echo "<br/>VSa PayPal Donate - Attachments";

if (
$user['usergoupid'] != "55" or $user['usergoupid'] != "56" )
{
    
$attq $vbulletin->db->query_read("SELECT
        SUM(amount) as myamount
        FROM " 
TABLE_PREFIX "vsa_ppdonate
        WHERE confirmed=1 AND userid="
.$user['userid']."
        GROUP BY userid
    "
);

    if (
$vbulletin->db->num_rows($attq) > )
    {
        
$att $vbulletin->db->fetch_array($attq);
        
$xperience['count_user_vppd'] = $att['myamount'] * $vbulletin->options['xperience_points_vppd'];
        
$xperience['count_user'] += $xperience['count_user_vppd'];
    }


I'm trying to exclude a user group or two from getting points for donations. but this does not seem to work can anyone give me a few more pointers please.

Vowgaming 12-01-2011 09:17 AM

Looks like I worked it out

the ' ' marks in if ($user['usergoupid'] != "55" or $user['usergoupid'] != "56" ) should not be there it should read

if ($user[usergoupid] != "55" or $user[usergoupid] != "56" )

the code I'm using on my site that works is

PHP Code:

if ($DoDebug==1) echo "<br/>VSa PayPal Donate - Attachments";

if (
$user[usergroupid] > "55")
{
    
$attq $vbulletin->db->query_read("SELECT
        SUM(amount) as myamount
        FROM " 
TABLE_PREFIX "vsa_ppdonate
        WHERE confirmed=1 AND userid="
.$user['userid']."
        GROUP BY userid
    "
);

    if (
$vbulletin->db->num_rows($attq) > )
    {
        
$att $vbulletin->db->fetch_array($attq);
        
$xperience['count_user_vppd'] = $att['myamount'] * $vbulletin->options['xperience_points_vppd'];
        
$xperience['count_user'] += $xperience['count_user_vppd'];
    }



OldSchoolDSL 12-02-2011 09:54 PM

Installed and working

4.1.8 :D

Although I did notice a few typing errors. Not the spelling per say, but rather a few words running into one another

Example.... On the Award tab, the description for The Community Award reads

Points for posting Visitormessages ....

Should be: Points for posting Visitor messages ....

A few other places here and there.

K!nG 12-04-2011 04:26 AM

Hi guys,

Well i know i have done it before or have seen it before and now i searched around but i can't seem to find out .... i need a lil bit of help. Right now my awards are currently showing under user name and i wants to bring them down with users activity and all that but i can't seem to find where to do the template edit for this and what will be the exact code that i have to move.. I want am attaching an image to make it more clear. Thanks.

https://vborg.vbsupport.ru/

ozione 12-08-2011 08:33 AM

hello!

i just upgraded to 4.1.0 RC and I get the following error when trying to recount experience points:

Code:

SELECT
                                        COUNT(*) AS count_threads,
                                        SUM(votetotal/votenum) AS count_votes,
                                        SUM(replycount) AS count_replycount,
                                        SUM(views) AS count_views,
                                        SUM(sticky) AS count_stickies
                                        FROM vb4_thread
                                        WHERE visible=1 AND forumid = 54
                                        AND postuserid=2
                                        AND thread.dateline > 315532800;

MySQL Error  : Unknown column 'thread.dateline' in 'where clause'
Error Number  : 1054
Request Date  : Thursday, December 8th 2011 @ 10:27:48 AM
Error Date    : Thursday, December 8th 2011 @ 10:27:49 AM
Script        : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=xperience_admin_recount_xp
Referrer      : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=recount
IP Address    : xxx.xxx.xxx.xxx
Username      : xxx
Classname    : vB_xxx
MySQL Version : 5.1.54-log

any help would be appriciated.

bryanb 12-08-2011 10:30 AM

Hi all,

I've been searching this threads for the past hour and haven't found the answer so forgive me if this has been asked already :)

I'm trying to customize the "Insight" page. I want other "Awards" listed besides the default "Most Active User" for the week, "Best Group", "Most achieved Achievement" etc. I want other awards or achievements to appear here. Is there something I need to modify in the php file, or can this be done via the administration functions? I can't find it.

thanks in advance!

ozione 12-12-2011 08:06 AM

Quote:

Originally Posted by ozione (Post 2275823)
hello!

i just upgraded to 4.1.0 RC and I get the following error when trying to recount experience points:

Code:

SELECT
                                        COUNT(*) AS count_threads,
                                        SUM(votetotal/votenum) AS count_votes,
                                        SUM(replycount) AS count_replycount,
                                        SUM(views) AS count_views,
                                        SUM(sticky) AS count_stickies
                                        FROM vb4_thread
                                        WHERE visible=1 AND forumid = 54
                                        AND postuserid=2
                                        AND thread.dateline > 315532800;

MySQL Error  : Unknown column 'thread.dateline' in 'where clause'
Error Number  : 1054
Request Date  : Thursday, December 8th 2011 @ 10:27:48 AM
Error Date    : Thursday, December 8th 2011 @ 10:27:49 AM
Script        : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=xperience_admin_recount_xp
Referrer      : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=recount
IP Address    : xxx.xxx.xxx.xxx
Username      : xxx
Classname    : vB_xxx
MySQL Version : 5.1.54-log

any help would be appriciated.

still busting my head with this one.
HALP!
:confused:

Phalynx 12-12-2011 12:18 PM

1 Attachment(s)
Quote:

Originally Posted by OldSchoolDSL (Post 2274135)
Installed and working

4.1.8 :D

Although I did notice a few typing errors. Not the spelling per say, but rather a few words running into one another

Example.... On the Award tab, the description for The Community Award reads

Points for posting Visitormessages ....

Should be: Points for posting Visitor messages ....

A few other places here and there.

These are simply names of the awards and achivements, you can edit them via AdminCP.

Quote:

Originally Posted by K!nG (Post 2274486)
Hi guys,

Well i know i have done it before or have seen it before and now i searched around but i can't seem to find out .... i need a lil bit of help. Right now my awards are currently showing under user name and i wants to bring them down with users activity and all that but i can't seem to find where to do the template edit for this and what will be the exact code that i have to move.. I want am attaching an image to make it more clear. Thanks.

http://img853.imageshack.us/img853/6196/awardsx.png

Please check the settings, specially "Display award showcase in postbit?". There are a few locations that maybe fit your needs.

Quote:

Originally Posted by ozione (Post 2275823)
hello!

i just upgraded to 4.1.0 RC and I get the following error when trying to recount experience points:

Code:

SELECT
                                        COUNT(*) AS count_threads,
                                        SUM(votetotal/votenum) AS count_votes,
                                        SUM(replycount) AS count_replycount,
                                        SUM(views) AS count_views,
                                        SUM(sticky) AS count_stickies
                                        FROM vb4_thread
                                        WHERE visible=1 AND forumid = 54
                                        AND postuserid=2
                                        AND thread.dateline > 315532800;

MySQL Error  : Unknown column 'thread.dateline' in 'where clause'
Error Number  : 1054
Request Date  : Thursday, December 8th 2011 @ 10:27:48 AM
Error Date    : Thursday, December 8th 2011 @ 10:27:49 AM
Script        : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=xperience_admin_recount_xp
Referrer      : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=recount
IP Address    : xxx.xxx.xxx.xxx
Username      : xxx
Classname    : vB_xxx
MySQL Version : 5.1.54-log

any help would be appriciated.

It seems you are using "Advanced_Forum_Points". Please install the attached product XML, replace existing.

Quote:

Originally Posted by bryanb (Post 2275846)
Hi all,

I've been searching this threads for the past hour and haven't found the answer so forgive me if this has been asked already :)

I'm trying to customize the "Insight" page. I want other "Awards" listed besides the default "Most Active User" for the week, "Best Group", "Most achieved Achievement" etc. I want other awards or achievements to appear here. Is there something I need to modify in the php file, or can this be done via the administration functions? I can't find it.

thanks in advance!

There is no way to customize Insight. You would need to modify the xperience.php and the template "xperience_insight"

maxxamillion 12-12-2011 11:29 PM

im new to this i dont have a clue how to upload this, i have read install but i still have no clue where i am uploading the files to on my server

ozione 12-14-2011 06:59 AM

Quote:

Originally Posted by Phalynx (Post 2277044)
It seems you are using "Advanced_Forum_Points". Please install the attached product XML, replace existing.

hi, Phalynx and thanks for your feedback.
after overwriting the "advanced_forum_points" I get a (another) new error:

Code:

Database error in vBulletin 4.1.8:

Invalid SQL:
SELECT COUNT(highscorerid) as countchampionships
                        FROM `vb4_v3arcade_games`
                        WHERE highscorerid = '2'
                        AND v3arcade_games.dateadded > 315532800;

MySQL Error  : Unknown column 'v3arcade_games.dateadded' in 'where clause'
Error Number  : 1054
Request Date  : Wednesday, December 14th 2011 @ 08:56:12 AM
Error Date    : Wednesday, December 14th 2011 @ 08:56:13 AM
Script        : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=xperience_admin_recount_xp
Referrer      : http://www.xxx.xxx/vb4/admincp/xperience_admin.php?do=recount
IP Address    : xxx.xxx.xxx.xxx
Username      : xxx
Classname    : vB_Database
MySQL Version : 5.1.54-log

i tried to overwrtie v3 arcade plugings again, but w/o success.
:(

Phalynx 12-14-2011 08:11 AM

1 Attachment(s)
Please download and install the attached plugin.

ozione 12-14-2011 09:55 AM

Quote:

Originally Posted by Phalynx (Post 2277633)
Please download and install the attached plugin.

flawless!
THANKS!

bryanb 12-15-2011 03:40 PM

Quote:

Originally Posted by Phalynx (Post 2277044)
...There is no way to customize Insight. You would need to modify the xperience.php and the template "xperience_insight"

Thanks, I'll do that.

Also, when and how are tags being updated in the stats page. I'm running a contest on my site - the person who creates the most tags by x date wins a prize. The thing is the stats for the tags aren't updated in real time. I've tried troubleshooting it by updating the counters and running scheduled maintenance by hand.

So simply, how do I manually update the tag stats, or have them updated hourly. Please let me know. Thanks!

bryanb 12-15-2011 03:59 PM

Never mind - figured it out. The only counter I didn't run was the "Update Experience Points" - naturally that was it. :p

bryanb 12-16-2011 03:12 PM

In the admin control panel for Experience: Points - it states "Counts only referrals from users that have made at least x posts"

How do I make "x" a number - like 5?

If I understand it correctly, I can issue 25 points for each member referred, and if that member makes x amount of posts, the referring member can be awarded x points on top of the original 25 points they received for referring that person. Right?

Or is it either points for members referred or referred members that post? Not a combination of the two.

DS MrSinister 12-16-2011 03:51 PM

if my memory serves me right each referral a person received, you get 25pts.

so if you have 3 referrals it will be 75pts

bryanb 12-16-2011 05:04 PM

Quote:

Originally Posted by DS MrSinister (Post 2278356)
if my memory serves me right each referral a person received, you get 25pts.

so if you have 3 referrals it will be 75pts

Yes, but there is an additional option to give points to referred members who make x amount of posts. I'm trying to figure out how to indicate what "x" is, and if these points are combined with the points given to the number of referrals. Make sense? :D

Phalynx 12-16-2011 08:02 PM

Just put the number of required posts in it - in your case put the 5 in. How many points the use get you get set with "Points that are added for every referral"

So one setting is for posts required, the other how many points a valid referral will get.

Phalynx 12-16-2011 08:06 PM

vBExperience 4.1.0 has been now released as final / GOLD.

- Introduced the feature to start the calculation by a defined date. By default all data will be considered for calculation. Please keep in mind that there are some data that cannot be filtered by date, like added friends. You need to re-install all plugins to have them obeying the new calculation limit. This feature has been sponsored by BryanB. Thanks!
- Fixed Discussion Ender, can be now disabled by setting value to 0
- Fixed Arm of Law, can be now disabled by setting value to 0
- Insight: Optimized layout
- Insight: Optimized colours for darker styles
- Achievement "Three Friends" renamed to "Social" (does not affect existing achievement)
- Renamed point descriptions so they can be identified better as point system (f.e. Days since registered -> Points for every day since registration)
- Added: Romanian Translation (thanks to Teascu Dorin)
- Custom Points can now have a category, can be used as entry point for other modifications using vBExperience points, eg. Market/Shop purchases
- Fixed several smaller issues

Strauss 12-18-2011 05:55 PM

For some reason it displays on top of my avatar... is there a way to make is display under my avatar?

GPOClan 12-20-2011 12:11 PM

Hey,

great mod, I'm using it almost a year now, but after updating it, I get a database error:

Datenbankfehler in vBulletin 4.0.8:

Invalid SQL:
SELECT
COUNT(fid) AS iresult
FROM formresults
WHERE userid=1
AND formresults.dateline > 315532800;

MySQL-Fehler : Unknown column 'formresults.dateline' in 'where clause'
Fehler-Nr. : 1054
Fehler-Zeit : Tuesday, 20.12.2011 @ 14:08:19
Datum : Tuesday, 20.12.2011 @ 14:08:19
Skript : http://gpo-clan.com/admincp/xperienc...min_recount_xp
Referrer : http://gpo-clan.com/admincp/xperienc...php?do=recount
IP-Adresse : ?.?.?.?
Benutzername : ?
Klassenname : vB_Database
MySQL-Version : 5.1.49-3~bpo50+1-log


IP-Adress and Username censored...
Could you help me? What's the problem here?

Thanks!

OldSchoolDSL 12-21-2011 06:30 PM

Quote:

Originally Posted by Phalynx (Post 2278434)
vBExperience 4.1.0 has been now released as final / GOLD.

- Introduced the feature to start the calculation by a defined date. By default all data will be considered for calculation. Please keep in mind that there are some data that cannot be filtered by date, like added friends. You need to re-install all plugins to have them obeying the new calculation limit. This feature has been sponsored by BryanB. Thanks!
- Fixed Discussion Ender, can be now disabled by setting value to 0
- Fixed Arm of Law, can be now disabled by setting value to 0
- Insight: Optimized layout
- Insight: Optimized colours for darker styles
- Achievement "Three Friends" renamed to "Social" (does not affect existing achievement)
- Renamed point descriptions so they can be identified better as point system (f.e. Days since registered -> Points for every day since registration)
- Added: Romanian Translation (thanks to Teascu Dorin)
- Custom Points can now have a category, can be used as entry point for other modifications using vBExperience points, eg. Market/Shop purchases
- Fixed several smaller issues

Installed and working

4.1.9 :)

sivaganeshk 12-24-2011 12:57 PM

Is it enough to upload (upgrade the plugin ) with this file vBExperience410_20111216_GOLD.zip or other file is also needed ?

savraot 12-25-2011 06:38 AM

I get Database Errors when I use the vbsoccer Plugins.

Code:

Datenbankfehler in vBulletin 4.1.9:

Invalid SQL:

                        SELECT (_wr * 0) +
                        ((_count - _wr - _rr - _rd) * 1) +
                        (_rd * 2) +
                        (_rr * 3) AS points
                        FROM (
                                SELECT userid, COUNT(*) AS _count,
                                SUM(score_key != bet_score_key) AS _wr,
                                SUM(bet_home=points_home AND bet_away=points_away) AS _rr,
                                SUM(CAST(bet_home - bet_away AS SIGNED)=(points_home - points_away)
                                AND NOT (bet_home = points_home AND bet_away = points_away)) AS _rd
                        FROM vb4soccer_user_bet AS b
                        INNER JOIN vb4soccer_match AS m ON(m.id=b.match_id)
                        WHERE userid=1 AND score_key>0 AND match_is_finished=1
                        AND b.dateline > 315532800
                        AND m.dateline > 315532800
                        GROUP BY userid) AS userpoints;

MySQL-Fehler  : Unknown column 'b.dateline' in 'where clause'
Fehler-Nr.    : 1054
Fehler-Zeit  : Saturday, 24.12.2011 @ 20:02:04
Datum        : Saturday, 24.12.2011 @ 20:02:04
Skript        : http://www.yyy.eu/cron.php?rand=1324753321
Referrer      : http://www.yyy.eu/forum.php
IP-Adresse    : 77.2.186.155
Benutzername  : Unregistriert
Klassenname  : vB_Database
MySQL-Version :

How can I solve this Problem?. I have temporary the two vbsoccer Plugins disabled, but I need this Plugins.

domenicd 12-25-2011 05:16 PM

I am trying to show the same user stats that are displayed next to a users thread post in a custom template.

I have this code in the template. But it only displays the word Level.

Code:

<div class="bppostbit"><dt>{vb:rawphrase xperience_level}</dt> <dd>{vb:raw xperience.level}</dd></div>
What is needed in my custom php file to allow this to show correctly?

Thanks for the help.

MySaltyreef 12-27-2011 06:07 AM

Hi

firstly awesome hack, i have installed and its working properly and i'm impressed at how easy it was to install for such an involved hack, you guys have done a flawless work here congrats to all involved here and thanks for the hack

i have a question

Quote:

Q: When installing vBExperience, does everyone start from scratch, or will it automatically configure everyone's points based on actions before the install?
A: If you recount, vBExperience will calculate ALL existing data since the beginning of the board. If you used vBCredits, vBActivity, uCash and similar systems - there is no need to convert the points.
is there anyway i can restart the calculation ? i want to use experience for a competition and start the point calculation from a specific date, i have been through the settings and found this

Quote:

Start calculation of points from given date (MM/DD/YYYY)

Limit the calculation of points to begin from the given date. Please keep this date format: Month/Day/Year. A value of 0 calculates from the beginning (default). Keep in mind: Users will lose points if they had previously collected points before that date. After a change to this value, you will need to run calculation of points.
just to be clear, if i set that date to say the "1st of jan 2012" all members who are already registered will start at zero and where do i find the recount ?

many thanks
hope you have had a wonderful festive season :)

pokusek 12-29-2011 08:07 PM

Good mod!

I just noticed that when I am changing the Awards, the URL of a small icon is reseted to the first in the list.

onealien 12-30-2011 12:59 AM

any idea why wen i activate the system i get this error?
Warning: require([path]/xperience/hooks/postbit_display_complete.php) [function.require]: failed to open stream: No such file or directory in [path]/includes/class_postbit.php(345) : eval()'d code on line 2

any assistance would be appreciated...

LukeH 12-30-2011 11:42 AM

Can anyone give me a dumb-user guide to creating my own set of levels?

I don't want 100 levels, I want this much lower as we only have 20 ranks, so I would like the level to correspond to the rank. I have tried a custom XML document with the edited level/points and then changed the "Maximum Level" in the AdminCP, but this doesn't seem to have any effect.

Many Thanks
LukeH

Nelson58 12-30-2011 03:24 PM

This needs to uninstall cleanly without manual intervention.
I had numerous database errors after uninstalling it- ruined the forum.

I uninstalled it because my users found it distracting and confusing.

Nelson

OldSchoolDSL 01-03-2012 02:35 AM

https://vborg.vbsupport.ru/external/2012/01/71.png

It seems the background areas for Awards and Achievements doesn't play nice with the customized background settings.

The "Recent Visitors" section is the way the two sections above it should look.

MySaltyreef 01-04-2012 05:59 AM

Quote:

Originally Posted by MySaltyreef (Post 2281291)
Hi

firstly awesome hack, i have installed and its working properly and i'm impressed at how easy it was to install for such an involved hack, you guys have done a flawless work here congrats to all involved here and thanks for the hack

i have a question



is there anyway i can restart the calculation ? i want to use experience for a competition and start the point calculation from a specific date, i have been through the settings and found this



just to be clear, if i set that date to say the "1st of jan 2012" all members who are already registered will start at zero and where do i find the recount ?

many thanks
hope you have had a wonderful festive season :)

hey guys

i am battling a bit with the start date i think i am missing something (probably a brain)

i set the date for "Start calculation of points from given date (MM/DD/YYYY)" to 1st of jan this year, i then run a recount and points are not changed as if the setting is still at zero

i tried deleting activities and stats and then recounting but its still showing the same points etc, is there something i have done wrong ?

gamersplatoon 01-04-2012 07:26 AM

Quote:

Originally Posted by MySaltyreef (Post 2283654)
hey guys

i am battling a bit with the start date i think i am missing something (probably a brain)

i set the date for "Start calculation of points from given date (MM/DD/YYYY)" to 1st of jan this year, i then run a recount and points are not changed as if the setting is still at zero

i tried deleting activities and stats and then recounting but its still showing the same points etc, is there something i have done wrong ?

i have tried all this but nothing is gonna work

only way it so read how to kill it(uninstall readme) you will find it in the plugin folders
cause it resets the mysql tables which has the points

and install it again. "reconfigure"

pokusek 01-04-2012 03:42 PM

Is there another plugin that I can use as a shop for users which would let them spent the earned points?
Point Market System does not work for me.

Thanks.

Diablo-Sat 01-05-2012 12:31 AM

i have version 4.0.4 and my level dosent seem to move from 1 anyone help me here. none of the 3 bars move


All times are GMT. The time now is 10:58 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03955 seconds
  • Memory Usage 1,923KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (2)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete