PDA

View Full Version : Profile Enhancements - MyLs1 Gifts ( Send gifts or drinks! )


Pages : 1 [2]

GlamRockTalk
11-24-2008, 11:23 PM
PM sent Christian! :D

Edited: How can you edit the 'background color' (sort of that yellowish background) when someone doesn't have a 'gift' yet?

GlamRockTalk
11-27-2008, 03:11 AM
Christian, in this profile....

http://www.glamrocktalk.com/member.php?u=3

....you'll notice that you can't read the 'send gift' and other links at the bottom. Are those in black only? How can we make those links take on the color of the actual text being changed with the customized profiles?

RedTrinity
11-27-2008, 09:06 AM
I'm currently getting bombarded with this same error in numerous emails, for this add-on (https://vborg.vbsupport.ru/showpost.php?p=1628133&postcount=159). Would appreciate a fix.

BUMP. I came home from work today and had 30 odd VB error emails all related to this same error. I'm getting my email box flooded at the moment on a regular basis.

Please help!!! :confused::confused::confused:

christian8a
11-29-2008, 01:20 PM
Christian, in this profile....

http://www.glamrocktalk.com/member.php?u=3

....you'll notice that you can't read the 'send gift' and other links at the bottom. Are those in black only? How can we make those links take on the color of the actual text being changed with the customized profiles?

It is on ALT2 the same as the other small blocks, I see on the friends list and all other boxes you have the same problem, just change on AlT2 a brighter color, know what I mean?

BUMP. I came home from work today and had 30 odd VB error emails all related to this same error. I'm getting my email box flooded at the moment on a regular basis.

Please help!!! :confused::confused::confused:

Im not sure really why this would be happening to you, if everything is as described then another product might be causing this problem. Did you try to remove it and see if everything works correct, and then try to re add the plugin?

GlamRockTalk
11-29-2008, 01:59 PM
For folks using this mod....what do your members give themselves gifts for? Just wanted some suggestions so that I can pass on some of those suggestions onto my members. :D

christian8a
11-29-2008, 03:04 PM
For folks using this mod....what do your members give themselves gifts for? Just wanted some suggestions so that I can pass on some of those suggestions onto my members. :D

:D not necesary man but just to keep the facebook tradition, that can be removed easily though, just to remove the conditionals on that send gift button

Ohiosweetheart
11-29-2008, 11:01 PM
Yea for the next version ill add more gifts ;)We can't add our own?

AuroraStorm
11-29-2008, 11:26 PM
This would be great if one, the gifts could show in the postbit and two, if we didn't have to manually upload each gift and name it...if you have a lot of gifts, it would be tedious to have to create the categories...

GlamRockTalk
11-30-2008, 12:07 AM
Yes, you can add your own Peggy! I've done it. :D

I agree Aurora, if there was a different way to upload the gifts, it would be better. And, I think that a postbit option to show the gifts (or a couple at least) would be cool as well. :)

RedTrinity
11-30-2008, 01:12 AM
Im not sure really why this would be happening to you, if everything is as described then another product might be causing this problem. Did you try to remove it and see if everything works correct, and then try to re add the plugin?

Yes, everything works fine when its disabled/uninstalled, so its definitely an issue with the plugin - somebody was reporting the same problem before with it, so I am not alone.

TNCclubman
11-30-2008, 01:48 PM
We can't add our own?

Thats what Im saying... its so easy to make your own, just google image what you want, crop it down to 70X70 and upload it. Hardly worth bothering the coder to do something so simple.

puregraf
11-30-2008, 09:35 PM
Yes, you can add your own Peggy! I've done it. :D

I agree Aurora, if there was a different way to upload the gifts, it would be better. And, I think that a postbit option to show the gifts (or a couple at least) would be cool as well. :)


is there a way to show the gifts, each one on the postbit? can you give me a code i can make this happen please? i really need them to show on postbit_legacy

thanks!!!

MrEyes
12-01-2008, 08:46 AM
Found a minor bug:

If PM inbox of the gift recipient is full the gift will fail, having looked at the code it seems that this was thought about but not implemented correctly:

Original Code (gifts.php)

// Force the PM through
$doit['adminpermissions'] = 2;

// create the DM to do error checking and insert the new PM
$pm->set('fromuserid', $senderid);
$pm->set('fromusername', $sender);
$pm->set('title', 'You have a new gift!');
$pm->set('message', $pmcontents);
$pm->set_recipients($recipient['username'], $do);
$pm->set('dateline', TIMENOW);
$pm->save();


Updated Code (gifts.php)

// Force the PM through
$doit['adminpermissions'] = 2;

// create the DM to do error checking and insert the new PM
$pm->set('fromuserid', $senderid);
$pm->set('fromusername', $sender);
$pm->set('title', 'You have a new gift!');
$pm->set('message', $pmcontents);
$pm->set_recipients($recipient['username'], $doit);
$pm->set('dateline', TIMENOW);
$pm->save();


I have marked the changes in bold

EDIT 1:
Also, although it would be great to show gift count in postbit the suggestion made is a really bad idea, especially if you have a busy forum. If you use this hack it will increase your SQL query calls dramatically as an additional query will be made for every member that has posted in a thread every time that thread page is displayed.

EDIT 2:
Just spotted that one of the templates is not being cached:

Original Code (gifts.php):

// pre-cache templates used by all actions
$globaltemplates = array(
'GIFTS',
'gifts_list_bit',
'gifts_list_row_start',
'gifts_list_row_break'

);



Updated Code (gifts.php):

// pre-cache templates used by all actions
$globaltemplates = array(
'GIFTS',
'gifts_list_bit',
'gifts_list_row_start',
'gifts_list_row_break',
'gifts_add_category_select'

);


Changes in bold

GlamRockTalk
12-01-2008, 02:30 PM
Thanks for the tips Mr Eyes! :D

Chris, you might want to adjust and reupload that gifts.php file for future folks using this mod.

christian8a
12-01-2008, 03:21 PM
^ It won open the link when you click on My Gifts with that fix

GlamRockTalk
12-01-2008, 03:24 PM
Christian, which fix causes that? I just noticed that error message myself.

Is it the $do and $doit, one?

Should we do the other fix for the cache though?

MrEyes
12-01-2008, 03:25 PM
^ It won open the link when you click on My Gifts with that fix

Odd, seems to be working fine on my site.

Which one of the two fixes? The template or the PM permissions?

Also whats the error you see?

EDIT 1: If it is the template fix it might be the comma that needs to be added after 'gifts_list_row_break'. Although I made it bold it wasn't immediately obvious it needed adding, so I have changed the post to mark the changes in red.

christian8a
12-01-2008, 05:44 PM
Odd, seems to be working fine on my site.

Which one of the two fixes? The template or the PM permissions?

Also whats the error you see?

EDIT 1: If it is the template fix it might be the comma that needs to be added after 'gifts_list_row_break'. Although I made it bold it wasn't immediately obvious it needed adding, so I have changed the post to mark the changes in red.

Oh I see, the ( , ) Now I see, Ill try it and update the php file, thanx for your help man :up:

christian8a
12-01-2008, 05:51 PM
Yea now it worked fine.. What about that issue of the Postbit Gift count?
What do you mean, needs to be corrected or it will be an issue for busy forums?

GlamRockTalk
12-01-2008, 06:01 PM
Chris, what do we have to do to upgrade? Just overwrite the gifts.php file?

christian8a
12-01-2008, 06:43 PM
Chris, what do we have to do to upgrade? Just overwrite the gifts.php file?

Ops yea just upload the gift.php file. Ill put that on the update too

MrEyes
12-01-2008, 08:15 PM
Yea now it worked fine..

Good news

What about that issue of the Postbit Gift count?
What do you mean, needs to be corrected or it will be an issue for busy forums?

The way the postbit hack works is to perform a query every time vbulletin builds a postbit, this query retrieves the count of gifts that the person (relevant to that postbit) has made. By default a typical thread will display 15 posts, so that is 15 additional queries (assuming that there are at least 15 post). However it is possible for members to configure anything between 5 & 40. So that is alot of extra queries.

Unfortunately right now I can't offer an alternative as everything I have looked at requires considerable reworking

RedTrinity
12-01-2008, 08:52 PM
Yes, everything works fine when its disabled/uninstalled, so its definitely an issue with the plugin - somebody was reporting the same problem before with it, so I am not alone.

Well, I suppose I am not going to get any support for this, so I have no choice but to uninstall it.

christian8a
12-01-2008, 10:24 PM
Well, I suppose I am not going to get any support for this, so I have no choice but to uninstall it.

Yea, sorry but I have no idea what could be causing that issue, it is obviously another hack wich is crashing with it, it works on all other sites.
Besides that as MrEyes was saying it will add alot of queries using that postbit hack, better if you wait for a better release of this plugin.

MrBig
12-01-2008, 10:41 PM
thank you for sharing this :] any other cool [.gif] gifts that we can use?

puregraf
12-02-2008, 03:57 PM
i removed the gift count in postbit legacy and my site is still very slow when your plugin is enabled. memory goes up instantly to over 80% on my dedicated server, and also server load goes from normal under 5.00 to crazy over 55% used up.

actually it might be the "activity modification" causing this ..

christian8a
12-02-2008, 07:57 PM
i removed the gift count in postbit legacy and my site is still very slow when your plugin is enabled. memory goes up instantly to over 80% on my dedicated server, and also server load goes from normal under 5.00 to crazy over 55% used up.


actually it might be the "activity modification" causing this ..

just for that plugin?

TNCclubman
12-07-2008, 04:34 AM
what does the new gifts.php do?

C138 Kaysone
12-18-2008, 11:24 PM
It would be easier if you showed an example of where the "(<a href="member.php?$session[sessionurl]u=$post[userid]">$post[gifts]</a>) gifts" should go you know?

MissKalunji
12-19-2008, 12:51 AM
you can put it anywhere in your postbit under the age,post count it's really up to you

search for i think its $post[age]

solboy
12-21-2008, 04:04 PM
Can you tell me what is causing this error message being sent to me from my forum?

SELECT COUNT(*) FROM gifts AS gifts WHERE recipientid =;
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 '' at line 3
Error Number : 1064
Request Date : Sunday, December 21st 2008 @ 01:00:39 PM
Error Date : Sunday, December 21st 2008 @ 01:00:39 PM
Script : http://mywebsite.com/showthread.php?p=304327
Referrer :
IP Address : **.**.**.***
Username : Unregistered
Classname : vB_Database
MySQL Version :

MissKalunji
12-22-2008, 03:56 PM
i wonder the same thing

rob01
12-24-2008, 10:20 PM
for all users of this mod you should do this

first open - Gifts Memberlist Cache (inside your plugin section)

and add this: $globaltemplates[] = 'gifts_list_member_nogifts';

so it should look like this :

$globaltemplates[] = 'memberinfo_block_gifts';
$globaltemplates[] = 'gifts_list_row_start';
$globaltemplates[] = 'gifts_members_list_bit';
$globaltemplates[] = 'gifts_list_row_break';
$globaltemplates[] = 'gifts_list_member_nogifts';

GlamRockTalk
12-25-2008, 01:51 AM
rob01,

Any particular reason we have to add this line? What does it do? Remember, you're dealing with some beginners here in some cases :)

MissKalunji
12-25-2008, 09:02 PM
it will cache it which means less queries and less wasted server loads

GlamRockTalk
12-26-2008, 03:42 AM
Thanks rob01 and MissKalunji :D

amish_irish
01-02-2009, 03:25 PM
Can you tell me what is causing this error message being sent to me from my forum?

I am getting the same error. Would love a fix. It seems that it isn't passing the userID to the query

edytwinky
01-05-2009, 02:16 PM
Is there any plan to modify this to work with vbucks or icash or some points mod?

TNCclubman
01-08-2009, 08:05 PM
Will this gifts mod work on vB 3.8?

acast
01-10-2009, 04:32 AM
Hi friends, i am working in 3.6.6, the product works perfect, its great, but i have one problem. I dont have this code in my memberinfo:

<div id="profile_tabs">
$template_hook[profile_left_first]
$blocks[visitor_messaging]
$blocks[aboutme]
$blocks[stats]
$blocks[friends]
$blocks[infractions]
$blocks[contactinfo]
$template_hook[profile_left_last]
</div>

So if i only put this:
$blocks[gifts]

I cant see anything in the member profile, also if i put all the code. Anybody knows what i have to put in my memberinfo template to see the gifts in member profiles?

Thanks if anybody can help me.

acast
01-10-2009, 08:08 PM
I put the code of the GIFTS template in the member info template and now i see the tables there, but the code is not connected with the id of the user. If anybody can help me, please...

EDIT: Could be the problem that i have in vplaza another gifts??

christian8a
01-11-2009, 01:12 AM
I put the code of the GIFTS template in the member info template and now i see the tables there, but the code is not connected with the id of the user. If anybody can help me, please...

EDIT: Could be the problem that i have in vplaza another gifts??

Sorry man, I dont know how will it work on any version prior to 3.7.x There should be a way though but I dont know how :(

acast
01-11-2009, 02:14 AM
Sorry man, I dont know how will it work on any version prior to 3.7.x There should be a way though but I dont know how :(Hi, friend, thanks for your answer.

I put a cap of my problem:

http://img83.imageshack.us/img83/4459/21pi9.jpg
https://vborg.vbsupport.ru/

As you can see in the second one is incomplete.

I cant connect there the user id with the data.

I put another code in a link on postbit and it worked, but there i cant do it.

Here is the code that i put in member info:

$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $userinfo[username]'s Gifts</title>

</head>
<body>



<table class="alt1" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" class="tborder alt1">
<thead>
<tr>
<td class="tcat" colspan="$vboptions[gifts_perrow]">$username's $vbphrase[gifts]</td>
</tr>

<if condition="$userinfo['userid'] != $vbulletin->userinfo['userid'] AND $vbulletin->bf_ugp_forumpermissions['canpostnew']">
<tr>
<td class="alt2 smallfont" colspan="$vboptions[gifts_perrow]"> <a href="gifts.php?$session[sessionurl]do=give&amp;r=$userid" rel="nofollow">Send gift to $username</a> | <a href="member.php?$session[sessionurl]u=$userid">Back to $username's profile</a>
</tr>
<else />
<tr>
<td class="alt2 smallfont" colspan="$vboptions[gifts_perrow]"> <a href="gifts.php?$session[sessionurl]do=give&amp;r=$userid" rel="nofollow">Send yourself a gift</a> | <a href="member.php?$session[sessionurl]u=$userid">Back to $username's profile</a></td>
</tr>
</if>

</thead>
<tbody>
<tr><td colspan="4" class="tborder" style="padding:1px"></td></tr>
$gifts_bit
<tr><td colspan="4" class="tborder" style="padding:1px"></td></tr>

<if condition="$userinfo['userid'] != $vbulletin->userinfo['userid'] AND $vbulletin->bf_ugp_forumpermissions['canpostnew']">
<tr>
<td class="alt2 smallfont" align="right" colspan="$vboptions[gifts_perrow]"> <a href="gifts.php?$session[sessionurl]do=give&amp;r=$userid" rel="nofollow">Send gift to $username</a> | <a href="member.php?$session[sessionurl]u=$userid">Back to $username's profile</a>
</tr>
<else />
<tr>
<td class="alt2 smallfont" align="right" colspan="$vboptions[gifts_perrow]"> <a href="gifts.php?$session[sessionurl]do=give&amp;r=$userid" rel="nofollow">Send yourself a gift</a> | <a href="member.php?$session[sessionurl]u=$userid">Back to $username's profile</a></td>
</tr>
</if>

<tr><td colspan="4" class="tborder" style="padding:1px"></td></tr>

</tbody>
</table>
<if condition="$page_navigation"><div style="margin-top:4px">$page_navigation</div></if>
<br />

<if condition="$userinfo[userid] == $vbulletin->userinfo[userid]">
<form action="gifts.php" method="get">
<table cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]" class="tborder" border="0" width="100%">
<thead>
<tr>
<td class="tcat" colspan="4">Display Options</td>
</tr>
</thead>
<tbody>
<tr>
<td class="alt1">
<div class="smallfont">
Sort By: <select name="sort">
<option value="sender"<if condition="$sort=='sender'"> select="selected"</if>>Giver</option>
<option value="dateline"<if condition="$sort=='dateline'"> selected="selected"</if>>Date/Time</option>
<option value="catid"<if condition="$sort=='catid'"> selected="selected"</if>>Category</option>
</select>
</div>
</td>
<td colspan="2" rowspan="2"class="alt1"><div class="smallfont">Amount of Items Perpage:
<input type="text" class="bginput" name="pp" size="6" value="$perpage" /></div></td>
<td rowspan="2" class="alt1"><input type="submit" value="Show Media" class="button" /></td>
</tr>
<tr>
<td class="alt1">
<div class="smallfont">
Sort Order: <select name="order">
<option value="ASC" <if condition="$order=='ASC'"> selected="selected"</if>>Ascending</option>
<option value="DESC"<if condition="$order=='DESC'"> selected="selected"</if>>Descending</option>
</select>
</div>
</td>
</tr>
</table>
</form>
</if>



</body>
</html>

Thanks if anybody can help me.

acast
01-11-2009, 06:46 AM
Another important question:

Is any form to integrate this with a cash system or to put a limit of gifts? Because users can make flood if arent limits...

Phoenixgal
01-13-2009, 01:30 PM
I'm getting this code in PM's!


<!-- BEGIN TEMPLATE: gifts_pm_template -->
<!-- END TEMPLATE: gifts_pm_template -->



I noticed someone else had this problem but was never responded to. :(

Veer
01-13-2009, 02:13 PM
Hi, christian8a,
When it will be updated for vB 3.8, any plan?

christian8a
01-15-2009, 10:29 AM
It works fine on 3.8.x no bugs reported but Im still waiting for the coder to get this updated.

TNCclubman
01-20-2009, 11:49 PM
Anyone try sending a gift to someone that has 'no private messages' set in their options?

I thought it crashed my server...

GSeybold
01-21-2009, 01:25 AM
Hello Christain,
THank you for this mode. I'm a newbie and I'm pretty sure I did everything right but I cannot get the followiing to show up in my ACP? Can someone help? Thank so much

Gabby

Set your settings on the admin cp
Add gifts as follows:

example:

- Name of the gift: Beer
- Description of gift: Budweiser
- Choose category: drinks
- enter url ( images / gifts / drinks / budweiser.gif )

GSeybold
01-23-2009, 01:49 AM
Can anyone help me with this? Thanks so much:)

Gabby

GSeybold
01-24-2009, 11:31 AM
Okay I've spend the last four hours doubting myself and I just can't figure out what I'm doing wrong. My images will not show up in gift list no matter what I do. I've reinstalled and all may paths are set and everything upload. Can someone please take a look at the attachments and see if I'm doing something wrong? Very much appreciated. :D

Thanks so much,

Gabby

TNCclubman
01-24-2009, 01:52 PM
make sure you enter images/gifts/drinks/shot_full.jpg or whatever the name of the gift is in the path. You're not entering the correct path, thats why its showing a broken image.

'right click' over the broken image and post what it says here so I can see what you're entering...

Veer
01-24-2009, 02:48 PM
It works fine on 3.8.x no bugs reported but Im still waiting for the coder to get this updated.
okay, will wait.

Please also include a new "Gifts Showcase" option in postbit to display gift images.

thanks.

GSeybold
01-24-2009, 09:25 PM
Ok.. Thank you TNCclubman:)

I've right clicked over a non showing image in the lift of gift in the gift manager. This is what it's says. Ive entered that path and it's not working either. prior I had that path minus the admincp.

admincp/images/gifts/drinks/budweiser.gif

Thank you very much for your help.

Gabby




make sure you enter images/gifts/drinks/shot_full.jpg or whatever the name of the gift is in the path. You're not entering the correct path, thats why its showing a broken image.

'right click' over the broken image and post what it says here so I can see what you're entering...

TNCclubman
01-24-2009, 10:48 PM
It should be

images/gifts/drinks/budweiser.gif

is your vbulletin in a folder or in the root? Like is it yoursite.com/forum or something like that? If so, add that to the front as well like

forum/images/gifts/drinks/budweiser.gif

try both of those... if they still dont work, try adding a forward slash too at the begining like

/images/gifts/drinks/budweiser.gif

or

/forum/images/gifts/drinks/budweiser.gif

try those 4 ways

GSeybold
01-25-2009, 12:38 AM
HI TN,
Thank you for your reply. My forum is in the root. I've tried all those that you selected, I still the same thing.

Gabby

TNCclubman
01-25-2009, 11:18 PM
check the permissions of the folder and the files. Make sure they're 644 (you can change the permissions with the ftp program you use to upload the files.

TNCclubman
01-25-2009, 11:19 PM
whats your website, let me have a look

ngham4host
01-27-2009, 05:28 PM
hello,

i did all the steps also i did the plugins that christian8a said in
https://vborg.vbsupport.ru/showpost.php?p=1628133&postcount=159

How can disply the gifts pic or icons in Postbit Legacy

GSeybold
02-05-2009, 01:53 AM
Here is a sheet load of gifts. Website opens right up to all the gifts. I hope they help someone.

http://pages.mckoss.com/gifts.htm

TNCclubman
02-05-2009, 03:05 AM
Thats a great resource for people, good find

GlamRockTalk
02-05-2009, 09:58 PM
Wow GSeybold thanks for sharing! :D

TNCclubman
02-05-2009, 10:23 PM
Ever since I upgraded to vB 3.8.1, and installed a different syle (New Facebook) I lost my gifts, they're no where to be seen.

Are you supposed to re-install this gift mod? Whats the procedure to get all the gifts showing again... Keep in mind it shouldnt be located in the middle of the profile, but instead on a block under the 'ALBUMS' on the left side...

anyone do this yet?

GSeybold
02-07-2009, 03:57 AM
Here is another site you can get some ANIMATED gifts from. There's alot to sift through but I've found some I use and my members enjoy. This will probably take at least an hour to sift through everything and pick out what suits your fancy.

http://www.geocities.com/victoriahollylynn//index.html

tigrattack
02-07-2009, 04:05 PM
Is there a version of this that will work with 3.6.x?

I got it working most of the way...the only thing is it doesn't show the member's gift images in their profiles

ViciousCode
02-13-2009, 04:35 PM
is there way to import the images of the gifts by reading the directory instead of adding one by one?

DS MrSinister
02-14-2009, 03:07 AM
Ever since I upgraded to vB 3.8.1, and installed a different syle (New Facebook) I lost my gifts, they're no where to be seen.

Are you supposed to re-install this gift mod? Whats the procedure to get all the gifts showing again... Keep in mind it shouldnt be located in the middle of the profile, but instead on a block under the 'ALBUMS' on the left side...

anyone do this yet?

add a new plugin

Product - gift system

Hook Location - member_build_blocks_start

Title - Gifts: In MEMBERINFO Edit

Execution Order - 6

used this code


eval('$template_hook[profile_right_album] .= "' . fetch_template('memberinfo_block_gifts') . '";');

MissKalunji
02-14-2009, 08:49 PM
Here is a sheet load of gifts. Website opens right up to all the gifts. I hope they help someone.

http://pages.mckoss.com/gifts.htm

Thanks!

tigrattack
02-22-2009, 03:23 PM
Hi all,

I've gotten this to work for the most part with vb 3.6.5...

The only part that is not working is the showing of the gifts in a profile...

Although, if you 'View Members Gifts' they show...

Is there something I can do to have them show on the main page of the members profile?

This is what it looks like in the profile:

http://www.gaming-forum.org/temp/Gifts1.jpg

Gamelobby
03-04-2009, 06:31 PM
Is there any reason the $blocks[gifts] goes before the <div ..?


All that seems to do is put it on top, but what if we wanted it to show lower in the blocks.?
Is there a problem with setting it lower.?

Add this before the <div id="profile_tabs">:

$blocks[gifts]
<div id="profile_tabs">
$template_hook[profile_left_first]
$blocks[visitor_messaging]
$blocks[aboutme]
$blocks[stats]
$blocks[gifts] <-- is this going to screw something up.?
$blocks[friends]
$blocks[infractions]
$blocks[contactinfo]
$template_hook[profile_left_last]
</div>

GSeybold
03-04-2009, 11:12 PM
Here are some more gifts.

Holiday and other

dothanhtrung
03-12-2009, 03:47 AM
Feature Request:
Can we charge for items with VBCredits?

Thanks,

tigrattack
03-14-2009, 11:52 PM
Here are some more gifts.

Holiday and other


Where can I go to download the gifts as individual pics?

Thanks

Cyn
03-18-2009, 10:21 AM
It works fine on 3.8.x no bugs reported but Im still waiting for the coder to get this updated.

Thanks so much for all your work and support christina. Any idea when the coder might have the new release ready?

Tyran1
05-21-2009, 04:48 PM
I have a problem:

Datenbankfehler in vBulletin 3.8.1:

Invalid SQL:

SELECT COUNT(*)
FROM gifts AS gifts
WHERE recipientid =;

MySQL-Fehler : 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 '' at line 3
Fehler-Nr. : 1064
Fehler-Zeit : Thursday, 21.05.2009 @ 19:08:42
Datum : Thursday, 21.05.2009 @ 19:08:42
Skript : http://www.xxxxxxx.de/showthread.php?t=385
Referrer :
IP-Adresse : 66.249.71.109
Benutzername : Unregistriert
Klassenname : vB_Database
MySQL-Version :

Tyran1
05-25-2009, 09:46 PM
Help me please !!!!!!!!!!!!!!!

compact123
05-26-2009, 02:13 PM
Is it possible to upload pictures in bulk?

sensimilla
07-14-2009, 11:31 AM
After uninstalling this hack I get errors from database while trying to create posts.
Any ideas ?

MissKalunji
07-14-2009, 11:53 AM
You probably have some of the tables still in your database or plugins still there...

sensimilla
07-15-2009, 07:32 AM
You probably have some of the tables still in your database or plugins still there...

Yes most likely, but the uninstall process should remove them..

Also I get constantly errors from database like this one

Invalid SQL:

SELECT COUNT(*)
FROM gifts AS gifts
WHERE recipientid =;

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 '' at line 3
Error Number : 1064
Request Date : Wednesday, July 15th 2009 @ 08:01:47 AM
Error Date : Wednesday, July 15th 2009 @ 08:01:47 AM
Script : http://www.stylwolny.pl/
Referrer :
IP Address : 72.30.161.247
Username : Nie zarejestrowany
Classname : vB_Database
MySQL Version :

kevinkun
06-27-2010, 10:36 AM
Is this modification possible on 3.8.4 ?

Thanks & sorry for posting in an old thread .

Veer
06-27-2010, 04:25 PM
oh man I am missing this mod in vb4 :(

Any chance to make it vb4 compatible?

gamerzhut
06-27-2010, 05:31 PM
oh man I am missing this mod in vb4 :(

Any chance to make it vb4 compatible?

Even i am looking for this mod for 4.x.x series :(

Veer
07-14-2010, 01:36 PM
Any news / update?

acast
12-20-2012, 07:47 AM
I also join for the request of this addon to the 4.x.

Live_Bait
09-15-2013, 09:28 AM
Yep wishing for 4.x. I could really use this

ozzy47
10-19-2013, 06:54 PM
You can not redistribute the code, the original code belongs to the developer and the mod is not marked reusable code.

BirdOPrey5
10-24-2013, 12:55 PM
Several posts deleted- Advertising mods for sale is not allowed anywhere on vBulletin.org except if a free version of the mod is released by the developer, then 1 link to a premium/paid mod is allowed in that release post.