vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   uCash & uShop 0.95d - Updated 9/28/05 (https://vborg.vbsupport.ru/showthread.php?t=63793)

Zachery 03-15-2005 03:10 AM

No clue what you are talking about :p

Link14716 03-15-2005 03:18 AM

Quote:

Originally Posted by Zachery
No clue what you are talking about :p

Someone should integrate that into the main form in the edit post screen. I changed it but didn't submit the second form. :p

Lottis 03-15-2005 08:52 AM

Installed. My users loved it. *thums up*

Imhotep 03-24-2005 11:28 PM

I was told that this hack is what I am looking for. I am not so convinced.

See this thread: https://vborg.vbsupport.ru/showthread.php?t=78668

Is there a PayPal "plugin" for uCS? Is this really what I am looking for?

I need to emulate the system on www.simplylightwave.com or come damn close to it.

TIA

PixelFx 03-25-2005 02:14 AM

yeah it is, you need to goto their main site and buy the plugin, I use it on my own sites and it works well.

www.geekydesigns.com will speed up your search... I tried to load your page but your server is loading very slow...

Rocol 03-26-2005 03:11 PM

I have the Petz2 Hack installed .. will this Hack work with it, or will I need to uninstall the Petz2 Hack for it to work please ;)

Zachery 03-26-2005 03:23 PM

Quote:

Originally Posted by rocol
I have the Petz2 Hack installed .. will this Hack work with it, or will I need to uninstall the Petz2 Hack for it to work please ;)

Uh.. well, some users have goten them to work together. However Petz seems to already have this functionality built in...

Rocol 03-26-2005 10:12 PM

Thanks for the reply Zachery ;)

Yes, the points ( cash ) and shop function is available with the pets hack and it works fine .. but .. the UCash Shop has more user ' buyable ' items in it, so I was thinking of installing that also .. or if need be .. instead.

Sleepyk 03-27-2005 01:22 AM

good hack, works perfect :)

Mr. Brian 03-29-2005 12:10 PM

Well, Seems like there aren't any pm being generated when someone donate points to you.

I'm sorry if this has been asked before.

Zachery 03-29-2005 02:44 PM

Quote:

Originally Posted by Mr. Brian
Well, Seems like there aren't any pm being generated when someone donate points to you.

I'm sorry if this has been asked before.

Not a feature in 95

fly 03-29-2005 04:13 PM

Quote:

Originally Posted by Mr. Brian
Well, Seems like there aren't any pm being generated when someone donate points to you.

I'm sorry if this has been asked before.

I added a feature like that to PM users when they are 'theifed'. The code is pretty simple. If I remember, I'll post it later. Hell, it may have already been posted, search...

Rabbitoh Warren 04-05-2005 04:38 PM

Thanks for the hack guys, it's great. It was super easy to install too, I thought it was going to take much longer than it did!

Anyway, before I installed this I had been using vBookie for quite some time so I appreciate how easy it was for me change the settings to continue to use vCash instead of uCash thanks to the Admin CP -> uTT Store Hack -> uTT Point System Setting -> Points Field? option. Seems to be working perfectly at first glance too!

The only questions I have is where can I find more actions?

007 04-08-2005 12:43 AM

Is there an estimated release date for 1.00?????

PixelFx 04-08-2005 02:24 AM

Its in testing currently, it will be ready when it's ready :)

fly 04-08-2005 11:00 AM

Quote:

Originally Posted by PixelFx
Its in testing currently, it will be ready when it's ready :)

Where do I sign up to be a beta tester then? :D

Link14716 04-09-2005 09:24 PM

Actually, it's in development currently. Still got a ways to go. :p

http://area51.geekydesigns.com/

MissKalunji 04-13-2005 11:12 PM

i wanna vote but for some reason i cant.... :mad:

Gastongr 04-24-2005 02:35 PM

Quote:

The only questions I have is where can I find more actions?
Same here, i'd like to include adsense impressions in the shop, any idea?

cybermomcafe 04-24-2005 02:47 PM

Can anyone tell me where to define a max lengh for Custom Usertitles and Other Persons User Title in the store?

right now my members can add an html img tag and get an image to show up in the Custom User Title :(

akanevsky 04-25-2005 11:12 AM

Great Hack!
[high]* akanevsky clicks install
[/high]

Few suggestions though:
- Why not make an additional textarea field in every ushop action, where a user could write custom variables in a form of:
variable:value
and make them evaluate to $vboptions[variable]=value only when running that specific action? :)
- Hack functions have a messy code which is hard to read. Plus those functions have a lot of variables to be passed. Why not clean it up a bit and comment function variables like Jelsoft does? :)
- Some sanity when submitting the form, maybe?

jrofosho 04-30-2005 06:45 PM

Okay i need help. I recently upgrade The BuffaloRange (www.buffalorange.com) to 3.0.7. Then i re-did all the hack work. The points and everything seems to be working. But most of the store actions aren't. Only bold and italic work. Can anyone help?

Hellspire 05-04-2005 05:02 PM

Don't know if anyone has posted this before, and I really don't care enough to search through this post, but I modified the code very slightly to prevent points from incrementing on posts that did not get counted.

Simply open up the functions_newpost.php file, find this:

Code:

$DB_site->query("UPDATE ".TABLE_PREFIX . $vboptions[uttpoints_pointtable]." SET ".$vboptions[uttpoints_pointsfield]."=".$vboptions[uttpoints_pointsfield]."+".$givethempoints." WHERE userid='$bbuserinfo[userid]'");
and change it to this
Code:

if ($foruminfo['countposts']) $DB_site->query("UPDATE ".TABLE_PREFIX . $vboptions[uttpoints_pointtable]." SET ".$vboptions[uttpoints_pointsfield]."=".$vboptions[uttpoints_pointsfield]."+".$givethempoints." WHERE userid='$bbuserinfo[userid]'");
Total modification time, 1 minute or less.

Zachery 05-04-2005 05:08 PM

Quote:

Originally Posted by Hellspire
Don't know if anyone has posted this before, and I really don't care enough to search through this post, but I modified the code very slightly to prevent points from incrementing on posts that did not get counted.

Simply open up the functions_newpost.php file, find this:

Code:

$DB_site->query("UPDATE ".TABLE_PREFIX . $vboptions[uttpoints_pointtable]." SET ".$vboptions[uttpoints_pointsfield]."=".$vboptions[uttpoints_pointsfield]."+".$givethempoints." WHERE userid='$bbuserinfo[userid]'");
and change it to this
Code:

if ($foruminfo['countposts']) $DB_site->query("UPDATE ".TABLE_PREFIX . $vboptions[uttpoints_pointtable]." SET ".$vboptions[uttpoints_pointsfield]."=".$vboptions[uttpoints_pointsfield]."+".$givethempoints." WHERE userid='$bbuserinfo[userid]'");
Total modification time, 1 minute or less.

Please report it at a bug on the dev site if yoou can replicate it

http://area51.geekydesigns.com


On second thought did you just turn the point count to 0?

some people might want to still give points even if their post count is off

highlander_RD 05-05-2005 07:05 AM

Just discovered a bug in uCash & uShop actions

In details:
If you use «donate» action (action.donate.php) and before clicking "confirm" (step2) you log as a second account, you can make a donation of whatever figure even if you do have zero points.

It works!

Thanks.

Zachery 05-05-2005 03:12 PM

Quote:

Originally Posted by highlander_RD
Just discovered a bug in uCash & uShop actions

In details:
If you use ?donate? action (action.donate.php) and before clicking "confirm" (step2) you log as a second account, you can make a donation of whatever figure even if you do have zero points.

It works!

Thanks.

What version of uCS are you running, also, please START A NEW THREAD IN THE SUPPORT FORUMS.

and post your bugs at area51.geekydesigns.com.

thanks

highlander_RD 05-06-2005 05:38 AM

Quote:

Originally Posted by Zachery
What version of uCS are you running, also, please START A NEW THREAD IN THE SUPPORT FORUMS.

and post your bugs at area51.geekydesigns.com.

thanks

Sorry. :rolleyes:
|| # uShop Hack Version 0.95 # ||
|| # ---------------------------------------------------------------- # ||
|| # A Geeky Designs Production! # ||
|| # Project Began: February 9th, 2004 # ||
|| # Version Released: July 16th, 2004 # ||
|| # PHP Code by: squall14716 # ||

I'll follow your advise.
Cheers

pgowder 05-09-2005 12:04 PM

My users have requested a feature be added to allow them to see thier last x number of transactions. They want to be able to see what they've spent points on and where they recieved points from.

Thanks

Zachery 05-09-2005 12:40 PM

Quote:

Originally Posted by pgowder
My users have requested a feature be added to allow them to see thier last x number of transactions. They want to be able to see what they've spent points on and where they recieved points from.

Thanks

THIS THREAD IS NOT FOR REQUESTS, OR SUPPORT, OR BUGS, PLEASE USE THE FORUMS! geekydesigns.com or the forums here!

thanks

RapCapital 05-16-2005 02:31 AM

I have a question...
In the Postbit, How would i make it so the Points listings are in a New Box (Not under the posts) + How do i change where it says "Points:" to "Cash:"
As Seen in this screenshot : https://vborg.vbsupport.ru/

Thanks in advance yall, Peace!

Zachery 05-16-2005 02:36 AM

Quote:

Originally Posted by RapCapital
I have a question...
In the Postbit, How would i make it so the Points listings are in a New Box (Not under the posts) + How do i change where it says "Points:" to "Cash:"
As Seen in this screenshot : https://vborg.vbsupport.ru/

Thanks in advance yall, Peace!

THIS THREAD IS NOT FOR REQUESTS, OR SUPPORT, OR BUGS, PLEASE USE THE FORUMS! geekydesigns.com or the forums here!

thanks

RapCapital 05-16-2005 02:54 AM

Oh ok sorry man I'll post in the support forum

Link : https://vborg.vbsupport.ru/showthrea...346#post654346

CMilne 05-29-2005 03:40 AM

How can I un-install?

Zachery 05-29-2005 06:03 PM

Quote:

Originally Posted by CMilne
How can I un-install?

Reverse the file edits and template edits, run the uninstall script :)

Injektilo 05-30-2005 03:13 PM

Ever since i installed the ucash - ushop, the points are counting but the posts dont count, they stay unchanged. How to fix this? Plz help asap.

Thanks
Injektilo

fly 05-31-2005 11:56 AM

Quote:

Originally Posted by Zachery
Reverse the file edits and template edits, run the uninstall script :)

THIS THREAD IS NOT FOR REQUESTS, OR SUPPORT, OR BUGS, PLEASE USE THE FORUMS! geekydesigns.com or the forums here!

thanks
:banana:

Thug 06-09-2005 11:13 PM

lottery?

XenaHosting 06-15-2005 04:45 AM

Hi,
I am almost positive that I installed it right but I am getting this error whenever I go to any of the pages, the ACP things seem to work fine..

No actions found...

Whats going on?
Thanks,
Mike

Zachery 06-15-2005 06:11 AM

THIS THREAD IS NOT FOR REQUESTS, OR SUPPORT, OR BUGS, PLEASE USE THE FORUMS! geekydesigns.com or the forums here!

angelicGrace 06-18-2005 03:53 AM

with a bit of patience and a fair bit of panic I got it installed on the first (on my live site) with only a minor glitch that wasn't at all the hack's fault. rock on to Geeky Designs for creating such a very cool hack!


All times are GMT. The time now is 04:21 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.01367 seconds
  • Memory Usage 1,828KB
  • 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
  • (4)bbcode_code_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (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