vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - vbBux / vbPlaza v1.5.8 (Points + Store System) (https://vborg.vbsupport.ru/showthread.php?t=106953)

X-Files 03-01-2006 05:05 PM

Quote:

Originally Posted by LBSources
does not work in FF .. seems to work in IE with no problems :nervous:

Works in both for me.

X-Files 03-01-2006 05:06 PM

Glow does not seem to be right.

I set the glow to white and it shows up fine in the member profile.
For posts it shows as red.

stamos2003 03-01-2006 05:12 PM

same prob. here with the glow, it's all red at the post :p

exilera 03-01-2006 05:15 PM

Another question... this may have been asked before, but I can't seen to find any reference to it. Anyway, what is the tag I'd use to display the total number of points for a user? I'd like to put a line for that below 'private messages' in the navbar. Also, where exactly would I need to place this code to make it work? :)

Thanks!

X-Files 03-01-2006 05:19 PM

Quote:

Originally Posted by exilera
Another question... this may have been asked before, but I can't seen to find any reference to it. Anyway, what is the tag I'd use to display the total number of points for a user? I'd like to put a line for that below 'private messages' in the navbar. Also, where exactly would I need to place this code to make it work? :)

Thanks!

Here is how I did it.

Code:

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>&nbsp;You have $bbuserinfo[points] chips!<br />

LBSources 03-01-2006 06:35 PM

Quote:

Originally Posted by X-Files
Works in both for me.

then there is an issue somewhere..

CMX_CMGSCCC 03-01-2006 07:10 PM

Quote:

Originally Posted by flypaper
I should have been more clear. AFTER purchasing the tickets, the money is never deducted, the person never gets the tickets, and the item HISTORY shows the cost as 'free'.

I'll upgrade to 1.2.4 today and see if its fixed, but you might want to look into that. It's really weird. I only noticed it happening with one user and that user had purchased tickets normally in other weeks, so its something in an upgrade that was done.

EDIT: The upgrade fixed the free issue, but its def reporting the wrong number of tickets sold for the daily lottery. The user who was having the problem bought 5 tickets, yet the admincp only shows 2 sold. I'm guessing that its showing the number of people who bought tickets, not the actual tickets sold.

Good catch, it will be fixed in v1.2.5

Quote:

Originally Posted by Red Blaze
Found alittle template bug. It's small, but still wanted you to know.

When shutting off the store, it gives a little alert at the top as if you turned off the entire boards. Well, instead of bolding the "Alert", it leaves it as:
Code:

<b>Alert</b>
It shows the bold tags. Just thought to let you know.

Will be fixed in v1.2.5

Quote:

Originally Posted by stamos2003
just updated to 1.2.4 but now all the glowing names from all users show up in red, but before they had other colors.

did you change smth. with the glow table?!

p.s. just donated some bucks to you ;)

The template edit had changed, did u update the postbit/postbit_legacy and MEMBERINFO templates with the new one?

Quote:

Originally Posted by Impreza04
Hey CMX,

The forumrules edit displays on the edit signiture page..
Fixed simply by adding <if condition="!$show['codeonly']"></if>

:squareeyed:

Ok, I'll add that change into v1.2.5

Quote:

Originally Posted by influence
upgraded to 1.2.4 and everyone's gift disapear.

I ran the fix but nothing.

I just bought a cookie gift with my account and that gift shows on postbit but my other gifts I had dont show and everyone else gifts dont show anymore.

any reason why? Looks like it force everyone to start over with the gifts feature

Try to run the Fix All Gift Postbits with the number really high, like 100000 and see if it fixes the gifts.

Quote:

Originally Posted by Replicators
I don't know, i just did a clean install on a subforum to test somethings and it is still not working. The mods i have installed on it are...

v3 Arcade
v3 Arcade - Leader Board
v3 Arcade - Who's Online in the Arcade?
vBadvanced CMPS
and of course eBux / eStore

Something is definantly wrong as most people have these mods on their boards. I even thought it was because of the skin i use, i use extremepixels Plasma skin. I did your instructions correctly, that i can assure. I also added 2 more skins to the test forum and applied the template edits to them, still won't work. It just doesn't make sense why it is not working.

U dont have a plugin accelerator installed at all? because I seen a site that had problems with this too and they have to "rebuild plugins" when installing something new.

Quote:

Originally Posted by LBSources
i cant seem to get back the ebux info in the memberinfo template even with the latest upgrade nor can i allow my supermods the ability to admin donate .. anyway to fix this..

is there also any reason why me an admin cant see the recent lottery winners?

thanks

Lenny :)

First off, check to make sure the template edit is matching the one in the readme.txt file.

Second, yes, because there is a Usergroup Setting now for "Can View Item History" & "Can View Lottery Winners".

Quote:

Originally Posted by NoRespect
Is there anyway for us to add our own gifts?

Say I want to add a 15x15 GIF of my own...anyone know how to add it manually?

Simply upload the files to images/gifts

Quote:

Originally Posted by LBSources
does not work in FF .. seems to work in IE with no problems :nervous:

The glow/filter will not work in firefox unless the makers Add support for it.

Quote:

Originally Posted by X-Files
Glow does not seem to be right.

I set the glow to white and it shows up fine in the member profile.
For posts it shows as red.

Typo inside plugins/estore_postbit_complete.php

Find:
Code:

                        $filter .= "glow(Color=" . $userinfo['glowcolor'] . ",Strength=" . $vbulletin->options['estore_glowstrengthvalue'] . ")";
Replace With:
Code:

                        $filter .= "glow(Color=" . $post['glowcolor'] . ",Strength=" . $vbulletin->options['estore_glowstrengthvalue'] . ")";
Will be fixed in v1.2.5 if u do not want to do the edit and wait.

Quote:

Originally Posted by LBSources
then there is an issue somewhere..

The shadow/filter will not work in Firefox. The Firefox browser doesnt support the style "filter:" command.

-CMX

LBSources 03-01-2006 07:18 PM

CMX .. i know sometimes i move too quick.. but i use the template edit code as written in the latest release zip file .. :)

what isnt showing up in FF is the memberinfo ebux/estore info .. but shows in IE .. dont understand why

shadows and glows, etc im well aware will not work in FF ..

Anyway to have the super mods use the admin donate? ive added the ID to the estore options for admin donate, but no luck..

any ideas?

CMX_CMGSCCC 03-01-2006 07:32 PM

Quote:

Originally Posted by LBSources
CMX .. i know sometimes i move too quick.. but i use the template edit code as written in the latest release zip file .. :)

what isnt showing up in FF is the memberinfo ebux/estore info .. but shows in IE .. dont understand why

shadows and glows, etc im well aware will not work in FF ..

Anyway to have the super mods use the admin donate? ive added the ID to the estore options for admin donate, but no luck..

any ideas?

That doesnt make sense how the actual code would not show in Firefox as there are no conditions in the template edit that check for IE vs Firefox though... hmm.

Yes, you can edit the eBux Setting... "Usergroups that have access to Admin Donate".. put 5,6,7 or whatever usergroups you want to put in there..

-CMX

Gallio 03-01-2006 07:36 PM

In my custom template I have the this code, align="center"> in the line I have to replace with <div id="postmenu_$post[postid]" <if condition="$post['namestyle']">style="$post[namestyle]"</if>> My question is can align="center"> be added to this PHP line, I have no clue where I would ad it I don't know PHP so can someone help me out, Thanks -Dylan

LBSources 03-01-2006 07:39 PM

Quote:

Originally Posted by CMX_CMGSCCC
That doesnt make sense how the actual code would not show in Firefox as there are no conditions in the template edit that check for IE vs Firefox though... hmm.

Yes, you can edit the eBux Setting... "Usergroups that have access to Admin Donate".. put 5,6,7 or whatever usergroups you want to put in there..

-CMX

I dont understand the memberinfo issue either.. you can feel free to roam some profiles on my site to see for yourself..

as for the admin donate.. are you talking about the below?

Quote:

Administrator Usergroups?
Enter your Administrator Usergroup ID/IDs to be able to use Admin Donate. Separate groups by commas. (Default is 6.)
if so ive added my supers to this and still no ability..

MAVerbal 03-01-2006 07:39 PM

CMX,

Just curious, when is the next version going to be ready? Also, is there a way that I can display the points as "$". I feel that this would make the point system look a little more interesting with the $ sign.

Thanks,
Daniel

exilera 03-01-2006 07:49 PM

Quote:

Originally Posted by X-Files
Here is how I did it.

Code:

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>&nbsp;You have $bbuserinfo[points] chips!<br />

In which template and what part of said template did you add the code?

Thanks, by the way :)

stamos2003 03-01-2006 08:22 PM

i fixed the typo and the glow works fine now, thx. :)

but the postbit gift thingy wont work. i rebuild them all, but gifts show up only to some members but not to all (to the most the wont show up in the postbit)

templates etc. all re-hacked.

LBSources 03-01-2006 08:59 PM

is this named incorrectly? should be heart .. no?

NoRespect 03-01-2006 09:40 PM

On 1.2.4, in the member profile...I see...

Points: 268.78
Bank: 116.77
Total %1$s: 385.55

XanTrax 03-01-2006 10:01 PM

For anyone who doesnt knows or wants to know this hooooooooooogs the server loads and CPU usage. Im hosted by dreamhost and I had/have to disable and remove this plugin because 3 days after I put it in it was putting the CPU usage up to 100% almost all day. I dont know if the creators knew that or could fix that but thats what Jeff from DreamHost has been telling me.

chairman miaow 03-01-2006 10:05 PM

Quote:

Originally Posted by NoRespect
On 1.2.4, in the member profile...I see...

Points: 268.78
Bank: 116.77
Total %1$s: 385.55

There's a template edit you have to do - MEMBERINFO

Twigz 03-01-2006 10:36 PM

Quote:

Originally Posted by XanTrax
For anyone who doesnt knows or wants to know this hooooooooooogs the server loads and CPU usage. Im hosted by dreamhost and I had/have to disable and remove this plugin because 3 days after I put it in it was putting the CPU usage up to 100% almost all day. I dont know if the creators knew that or could fix that but thats what Jeff from DreamHost has been telling me.

I'm not sure if this is quite True or Not with this plugin. As I am also hosted with dreamhost and have had this plugin installed since cmx first released it and have updated everytime. I have yet to see any increase on my cpu usage as I check it daily as I had problems running the shoutbox on it as it raised it dramatically for me. Now I have no problem with this plugin and my cpu usage. DreamHost is a great host but chincy on there cpu usage rules and should stop and realize that it's hurting them in the long run with us users that have and or run big sites with Forums.. I just wanted to chime in and put my .02 cents in as I am one using it and on the same host to try and weigh the odds of this.

Other then that like I said above this is a great plugin and cmx is a great developer and supporter of his creations. Keep up the Great Work.

alexhue 03-01-2006 10:38 PM

is there a way to mass clear/delete history logs?

Thanks

X-Files 03-01-2006 10:40 PM

Quote:

Originally Posted by exilera
In which template and what part of said template did you add the code?

Thanks, by the way :)


navbar


You can find this in the navbar template.
Code:

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
I replced it wit this.

Code:

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>&nbsp;You have $bbuserinfo[points] chips!<br />

CallieJo 03-01-2006 10:44 PM

Quote:

Originally Posted by stamos2003
but the postbit gift thingy wont work. i rebuild them all, but gifts show up only to some members but not to all (to the most the wont show up in the postbit)

templates etc. all re-hacked.

I did as CMX suggested about rebuilding with way high numbers...I kept changing the amount of gifts to display to higher numbers too and then rebuilt the gift maintanance thingie several times with high numbers and now all seems to work so far...crossing fingers and toes it stays...

Thanks CMX for that suggestion...I was trying the opposite - setting the number to lower numbers like 1, 50, etc.

I should note: It took doing this many, many times before gifts would show for all...not sure why...but gifts to show is now on 36 and I rebuilt with high numbers like 99999 and 999990

jilly 03-01-2006 11:58 PM

when you purchase a gift for someone, in the confirmation message it says :

Purchase Give Gifts?
Item was successfully purchased

I'd like to have a link on the same line that says "Purchase another gift for this user?"

that way if we wanted to buy another gift, we wouldnt have to go all the way back through the estore to gift again.

*Comedy /Joke feature suggestion.. You know how on Seinfeld they talked about 'regifting', giving a gift you got away to someone else? It would be funny to have a 'regift' option, to give a gift to another user instead of keeping it. Not really necessary now, with all the real work going on, but just something to keep in mind for the future, as something funny.

Also, in the area where you can first purchase gifts, I would like a way to add some text in, to explain that gift messages will be publicly viewable in the reciever's profile, so people know before they write something that should be kept private. Is there a template I can edit and put this into?

CMX_CMGSCCC 03-02-2006 12:07 AM

Quote:

Originally Posted by LBSources
I dont understand the memberinfo issue either.. you can feel free to roam some profiles on my site to see for yourself..

as for the admin donate.. are you talking about the below?


if so ive added my supers to this and still no ability..

The memberinfo I'll have to get access to ur forums admin cp + styles + plugins to further research it.

The Admin Donate, make sure you add the options in the eBux Options for the setting u r talking about, as well as Manage Options -> Admin Donate -> Additional Usergroups... Check the Usergroups here u want to access it as well. It has a double check for security purposes.

Quote:

Originally Posted by MAVerbal
CMX,

Just curious, when is the next version going to be ready? Also, is there a way that I can display the points as "$". I feel that this would make the point system look a little more interesting with the $ sign.

Thanks,
Daniel

Based on the fact that 5 new PS2 games came out today, I'm busy hacking them for Code Breaker codes.

v1.2.5 Update:
1) Bugfix: Fix All Gift Postbits updates properly. It was missing the last user every pass through.
2) Bugfix: Lottery Purchases didnt update the ticketssold column properly with the amount of tickets that were purchased.
3) Bugfix: Fixed typo in plugin for postbit_display_complete.

Those are the only updates I have for v1.2.5 so far, and its not ready for a release, so probably tomorrow I'd say I'll have time to add the extra stuff I want to in v1.2.5

Quote:

Originally Posted by LBSources
is this named incorrectly? should be heart .. no?

Yes, but unfortunately this file was packaged with the eBux release so if I renamed it, u would have 2 of the same gifts in the gifts folder and if u delete the old heartje files, then the people who sent the heart when it was the old image would show a broken image in their profile/postbit, so I'll have to make it rename the "heartje to heart" in the database and havent had time to do this change, I'll see about doing it for v1.2.5

Quote:

Originally Posted by NoRespect
On 1.2.4, in the member profile...I see...

Points: 268.78
Bank: 116.77
Total %1$s: 385.55

Redo the template edit for MEMBERINFO.

Quote:

Originally Posted by XanTrax
For anyone who doesnt knows or wants to know this hooooooooooogs the server loads and CPU usage. Im hosted by dreamhost and I had/have to disable and remove this plugin because 3 days after I put it in it was putting the CPU usage up to 100% almost all day. I dont know if the creators knew that or could fix that but thats what Jeff from DreamHost has been telling me.

I havent seen anything about CPU usage, but it used to use a lot of memory for the plugins, but now that they are included in files, it uses a LOT less.

Quote:

Originally Posted by alexhue
is there a way to mass clear/delete history logs?

Thanks

There is to Clear User History, but not Item History.

Quote:

Originally Posted by CallieJo2
I did as CMX suggested about rebuilding with way high numbers...I kept changing the amount of gifts to display to higher numbers too and then rebuilt the gift maintanance thingie several times with high numbers and now all seems to work so far...crossing fingers and toes it stays...

Thanks CMX for that suggestion...I was trying the opposite - setting the number to lower numbers like 1, 50, etc.

I should note: It took doing this many, many times before gifts would show for all...not sure why...but gifts to show is now on 36 and I rebuilt with high numbers like 99999 and 999990

Yes, there was a slight bug in how it fixed the gifts it would miss the last one every time it redirected, it will be fixed in v1.2.5.

With the work around using 1000000 as the number to process, it only misses the very last one.

Quote:

Originally Posted by jilly
when you purchase a gift for someone, in the confirmation message it says :

Purchase Give Gifts?
Item was successfully purchased

I'd like to have a link on the same line that says "Purchase another gift for this user?"

that way if we wanted to buy another gift, we wouldnt have to go all the way back through the estore to gift again.

*Comedy /Joke feature suggestion.. You know how on Seinfeld they talked about 'regifting', giving a gift you got away to someone else? It would be funny to have a 'regift' option, to give a gift to another user instead of keeping it. Not really necessary now, with all the real work going on, but just something to keep in mind for the future, as something funny.

Also, in the area where you can first purchase gifts, I would like a way to add some text in, to explain that gift messages will be publicly viewable in the reciever's profile, so people know before they write something that should be kept private. Is there a template I can edit and put this into?

You could add attempt to add it to one of the templates.. or easier yet.. add a plugin to.... estore_action_gift_confirm_complete

People dont realize that eBS has a TON of hooks just like vBulletin, u can make ur own addons to modify damn near everything, and if u need any new hooks, drop me a PM and it WILL make it into the next version, simple as that..

As far as what u want to do, u would simply add a plugin to the above location and do something like this..

Code:

$extra_fields .= "<br />Your messages will be viewable to the public, so dont type anything here you want to remain private.";
And boom, it should work :)

-CMX

Reeve of shinra 03-02-2006 12:38 AM

I hate to sidetrack the thread but I wanted to get some input from estore users about a possible add-on.

Back in our vb2 days, we had a link where members could "recommend this post for points". I had some requests from my mods to readd this feature and I've been thinking about a better way of doing it than our previous method.

I was thinking about a seperate table with:
- recommenders userid
- posters userid
- postid
- paid status (open / closed)

With a seperate php file to display in tabular / row format:
- forum name
- recommers user name
- recommender
- the actual post
- field to give manual points
- check box for quick mass points / open and close

Would anyone else be interested in something like this? Any comments about this?

XanTrax 03-02-2006 12:57 AM

Im not saying I didnt like this plugin/extension, god I loved it and so did my members. We do have alot of plugins and it was the day I put in the security product from vBulletin.com and your plugin, plugin was earlier in teh week then I put the security product in, and then all of a sudden our CPU ussage shot up to almost 100% daily. I took out vBPager and this is going next if CPU Ussage doesnt go down soon.... Im just saying that when I installed this my server coincidentally shot up to 100% CPU usage.

I hope I dont have to get rid of this, me and my members loved it.

Hornstar 03-02-2006 12:58 AM

The only template change I had trouble with is this one

C) Inside template 'MEMBERINFO':

Find:
Code:

<div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>



Replace With:
Code:

<div class="bigusername" <if condition="$post['namestyle']">style="$post[namestyle]"</if>>$userinfo[musername] $userinfo[onlinestatus]</div>



Here is what my template looks like at that part, (ive copied a bit above it and a bit below it to make sure i had the lot.) I tried changing it but got errors when trying to save it.

Code:

<if condition="$userinfo['reputationdisplay']"><div align="center">$userinfo[reputationdisplay]</div></if>
                                        </div>
                                </if>                       
                                <if condition="$userinfo['glowcolor']"><div class="bigusername" style="filter:Glow(Color=$userinfo[glowcolor],Strength=$userinfo[glowstrength]); width:100%;"><else /><div class="bigusername"></if>$userinfo[musername] $userinfo[onlinestatus]</div>
                                <if condition="$userinfo['usertitle']"><div class="smallfont" <if condition="$post['titlestyle']">style="$post[titlestyle]"</if>>$userinfo[usertitle]</div></if>
<div class="smallfont"><strong>$WWU002_ranktext</strong></div>
                        </td>

I have done all the other template edits for now, and everything seems to be working okay.


I think you said there wont be as many template edits from now on, but if you do, can you also give us template edits from version to version as well, as its hard to find code thats already been changed sometimes.

Thanks

proxx 03-02-2006 02:37 AM

I would like my moderators to earn more eBux when they post in certain forums.

Is this possible?

How can I set this up?

For example, I'd like them to have a multiplier. So, they will get paid 5 times more than non-moderators when they post in that particual forum.

please let me know

lairnoc 03-02-2006 05:46 AM

some how i am not BLE AYMORE TOO SEE LOTTERY HISTORY (oops caps) i have the admin right on my forum ofcourse, but i cannot find the settings anymor e it is since i upgraded from 1.23 to 1.2.4

VBUsers 03-02-2006 06:18 AM

hey cmx,

on the main ebux page i still get this . can you help me out??

Current %1$s Total: 117,546
Current Bank %1$s: 0

Next Bank Interest: You have no Points in the eBank yet.

All %1$s Total: 20,125,253
All Bank Total: 22,222
All Overall Total: 20,147,474

OAndrea 03-02-2006 06:26 AM

Theif Immunity issue.

It seems that theif immunity doesn't expire and there is no way to shut it off. I have tried just about everything to make it work. I even took it off the market so no one else buys it. My forumers don't want the option of buying an immunity and those who did what it to be taken off. So How do I take their immunity off since it is long expired yet still working?

proxx 03-02-2006 06:28 AM

Quote:

Originally Posted by proxx
I would like my moderators to earn more eBux when they post in certain forums.

Is this possible?

How can I set this up?

For example, I'd like them to have a multiplier. So, they will get paid 5 times more than non-moderators when they post in that particual forum.

please let me know


Could someone help with this please

MorrisMcD 03-02-2006 07:02 AM

Quote:

Originally Posted by lairnoc
some how i am not BLE AYMORE TOO SEE LOTTERY HISTORY (oops caps) i have the admin right on my forum ofcourse, but i cannot find the settings anymor e it is since i upgraded from 1.23 to 1.2.4

Its in the usergroup permissions now.. Under the ebux settings..

Quote:

Can this group view entries from the Lottery Winners?

Zelda-King 03-02-2006 08:22 AM

I just bought myself a green glowname (used hexidecimal value). It shows the right colour in my profile but is red in the postbit. The intensity setting doesn't seem to have any affect there either.

gwhooooey 03-02-2006 08:39 AM

Request
Can someone please make it so you'd be able to buy to change your post colour/font maybe even post glow colour as well. Also if it's not too difficult, add an override option so you can pay to not see the effects of other people's settings for this.

You've got Username/Usertitle stuff for this, so I doubt it would be too difficult to add it for posts as well. Thanks. Great store.

lairnoc 03-02-2006 10:38 AM

Quote:

Originally Posted by MorrisMcD
Its in the usergroup permissions now.. Under the ebux settings..

hmmm cannot find it redone the import in admincp of the xml overwrite yes but no go anyone out there that can help me? plz thnx again

Rickie3 03-02-2006 11:11 AM

Quote:

Originally Posted by lairnoc
hmmm cannot find it redone the import in admincp of the xml overwrite yes but no go anyone out there that can help me? plz thnx again

i would try re-uploading all files to your server again,make sure when you FTP that you select over write yes to all,then after all is uploaded re import the product,select yes to over write,also make sure you redo template edits postbit and or postbiy_legacy and memberinfo

X-Files 03-02-2006 11:55 AM

Quote:

Originally Posted by lairnoc
some how i am not BLE AYMORE TOO SEE LOTTERY HISTORY (oops caps) i have the admin right on my forum ofcourse, but i cannot find the settings anymor e it is since i upgraded from 1.23 to 1.2.4

See this post.

https://vborg.vbsupport.ru/showpost....postcount=2633

Guest0321 03-02-2006 12:11 PM

I'm trying to see in the admin where to set the "$action['estore_thiefsuccessrate']". It seems its the percentage that is used to determine if the thief action is sucessful, but I can't find it anywhere.

Also noticed that sometimes admins still have thief protection even when the userids aren't listed as protected.

UPDATE: Oops, found it, the thief settings are in "Option Settings (Advanced Users Only!)" area of Mange Options for the "thief" item. The "thief protection" for admins is also in that area.

1numara 03-02-2006 12:43 PM

hi, it's me again :)

thank you for your help CMX, now i ?an use the hack correctly :nervous:

but now, i have some problems with gifts.

at the bottom of the avatars, only one gift can seen :surprised:

i choose "20 gifts can seen at the bottom of the avatars" on the admin panel options, but there is something wrong i think ...

by the way, when i edit the "Gifts" on the "eBux eStore Editing Options" in user profiles admin panel, ( i mean, writing " superman,cookie " to gift screen ), the gifts i wrote can be seen.

but the automic ways, it won't work, and seen only the last gifts user took.

i hope, i can explain my problem.

thanks for your help.


All times are GMT. The time now is 01:52 PM.

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

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05060 seconds
  • Memory Usage 1,920KB
  • 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
  • (9)bbcode_code_printable
  • (36)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