Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > uCash & uShop
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
uCash & uShop old support and thank you thread Details »»
uCash & uShop old support and thank you thread
Version: , by BarHopper BarHopper is offline
Developer Last Online: Aug 2005 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 04-12-2004 Last Update: Never Installs: 0
 
No support by the author.

/me Installs. I'm the first for the most aniticipated hack!!1

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #872  
Old 05-13-2004, 12:10 PM
Fluous Fluous is offline
 
Join Date: Apr 2004
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm having a bit of trouble. When my users go to the store, it says No actions found... and I had fixed that. But when I go to the store it shows everything. Ermm... what shall I do? And if I did reinstall it, then what pieces would I have to redo. Like would I have to redo all the file edits and stuff. Or is there a easier way around this?
Reply With Quote
  #873  
Old 05-14-2004, 05:51 AM
Weasel's Avatar
Weasel Weasel is offline
 
Join Date: Dec 2001
Posts: 44
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

One of my users found an exploit with the "points per view" action in showthread.

He logged off and opened 10 browser windows and then used some sort of program to refresh each window over and over again.

Over a period of time he managed to guest-view his own thread 90,000 times and got himself tons and tons of points.

The psuedo-solution to this problem would be to add "&& $bbuserinfo[userid] > 0" in the showthread.php conditional, but this would disable points for all guest views and would encourage members to create duplicate registered accounts to exploit this.

A better solution would be to have some sort of time limit, so they can only get so many views per minute or something.
Reply With Quote
  #874  
Old 05-14-2004, 09:09 AM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I suggest using the points via viewing thread like the Lesane's Store, e.g: 10$ for 100 views, 100$ for 1000 views and so one. that would reduct the cheating.
Reply With Quote
  #875  
Old 05-15-2004, 04:19 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Weasel
One of my users found an exploit with the "points per view" action in showthread.

He logged off and opened 10 browser windows and then used some sort of program to refresh each window over and over again.

Over a period of time he managed to guest-view his own thread 90,000 times and got himself tons and tons of points.

The psuedo-solution to this problem would be to add "&& $bbuserinfo[userid] > 0" in the showthread.php conditional, but this would disable points for all guest views and would encourage members to create duplicate registered accounts to exploit this.

A better solution would be to have some sort of time limit, so they can only get so many views per minute or something.
Currently where we use it, we only give .01 or .1 points per view, which would require quite alot of effort for someone to cheat and gain money.
Reply With Quote
  #876  
Old 05-15-2004, 09:37 AM
Weasel's Avatar
Weasel Weasel is offline
 
Join Date: Dec 2001
Posts: 44
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is a bug with the musername stuff. colored usernames do not show up properly in the "Whats Going On?" bar and also the "Who's Online" page because the custom utt database variables are not passed into the fetch_musername function.

Here's the fix:

Open up online.php

FIND:

PHP Code:
SELECT user.username 
REPLACE WITH:

PHP Code:
SELECT user.* 
SAVE AND CLOSE

Open up index.php

FIND:

PHP Code:
user.username 
REPLACE WITH:

PHP Code:
user.* 
FIND:

PHP Code:
if ($userid != $bbuserinfo['userid'])
        {
            
$inforum["$loggedin[inforum]"]++;
        } 
ADD BELOW:

PHP Code:
else 
        {
            
$loggedin['uttstore_boldusername'] =  $bbuserinfo['uttstore_boldusername'];
            
$loggedin['uttstore_usernamecolor'] =  $bbuserinfo['uttstore_usernamecolor'];
            
$loggedin['uttstore_italicsusername'] =  $bbuserinfo['uttstore_italicsusername'];
            
$loggedin['usergroupid'] =  $bbuserinfo['usergroupid'];
            
$loggedin['displaygroupid'] =  $bbuserinfo['displaygroupid'];
            
$loggedin['joingroupid'] =  $bbuserinfo['joingroupid'];
        } 
SAVE AND CLOSE
This still does not make glow display on anything except showthread, but that may prove difficult to fix.
Reply With Quote
  #877  
Old 05-15-2004, 02:57 PM
Fugler Fugler is offline
 
Join Date: Sep 2003
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, I'm getting an error in the ushop.php.. It Looks like this:

Warning: Invalid argument supplied for foreach() in /home/pixelki/public_html/forum/ushop.php on line 144

I did the manual install, anyone know the problem?
Reply With Quote
  #878  
Old 05-15-2004, 03:08 PM
Fugler Fugler is offline
 
Join Date: Sep 2003
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Looks like it fixed its self, sorry.
Reply With Quote
  #879  
Old 05-15-2004, 08:55 PM
ImportPassion ImportPassion is offline
 
Join Date: Mar 2002
Location: Gilbert, AZ
Posts: 605
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i did a quick search on here, but is there a import from leasne's store?
Reply With Quote
  #880  
Old 05-16-2004, 02:24 AM
Lacrosse Boy's Avatar
Lacrosse Boy Lacrosse Boy is offline
 
Join Date: Feb 2003
Location: MN
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Link14716
Installs hacks and makes it easier to upgrade since all the file edits of hacks installed using it are accessible in the admincp.
Issues here:

Using standalone.
When trying to access any vBulletin page after the files are hacked.
Running 3.0.1

Here is the error message I get:
Parse error: parse error in /home/todaysmu/public_html/tmf/includes/functions.php on line 1871

Fatal error: Call to undefined function: is_browser() in /home/todaysmu/public_html/tmf/global.php on line 59

How do I correct this? I'd love to be able to use this hack!

Thanks.
Reply With Quote
  #881  
Old 05-16-2004, 02:48 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lacrosse Boy
Issues here:

Using standalone.
When trying to access any vBulletin page after the files are hacked.
Running 3.0.1

Here is the error message I get:
Parse error: parse error in /home/todaysmu/public_html/tmf/includes/functions.php on line 1871

Fatal error: Call to undefined function: is_browser() in /home/todaysmu/public_html/tmf/global.php on line 59

How do I correct this? I'd love to be able to use this hack!

Thanks.
You have miss hacked your files, start again with fresh files and DONT use Dreamweaver.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:06 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.09560 seconds
  • Memory Usage 2,338KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete