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
  #1732  
Old 08-27-2004, 01:13 PM
syjech syjech is offline
 
Join Date: Aug 2004
Location: Cleveland Ohio
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there anyone who can help me install ushop and cash? I will be willing to make a donation to you?????? PM me if you can do it and how much. Thank you guys alot
Reply With Quote
  #1733  
Old 08-27-2004, 02:18 PM
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 proxyMX
ok ive just installed 3.0.3 and this store has pretty much stopped working. Since im trying to optimise the site i wanna totally uninstall it, how will i go about this?
If you upgraded to 3.0.3 yoiu need to redo your file edits for it to work, if you dont want to use the system anymore run the uninstall link in the install file.
Reply With Quote
  #1734  
Old 08-27-2004, 02:18 PM
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 syjech
Is there anyone who can help me install ushop and cash? I will be willing to make a donation to you?????? PM me if you can do it and how much. Thank you guys alot
Syjech i suggest trying to install the system yourself, if you find yourself unable you can drop me a pm and i will do the install for you for the going rate which is 15 USD via paypal.
Reply With Quote
  #1735  
Old 08-27-2004, 04:12 PM
CMX_CMGSCCC CMX_CMGSCCC is offline
 
Join Date: Sep 2003
Posts: 1,218
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You could also do this for the action.thief.php

Find:
PHP Code:
    if ($_FIELDS['points'] <= "0") {
        
$message "You may not steal a non-positive amount!";
        
uttstore_print_end_message($message);
    } 
Add above:
PHP Code:
    // dont allow stealing from an admin
    
$admin $DB_site->query_first("SELECT userid from " TABLE_PREFIX "administrator where userid = $thefted[userid]");
    if (isset(
$admin['userid'])) {
        
$message "You may not steal from an administrator!";
        
uttstore_print_end_message($message);
    }
    
// dont allow stealing from a moderator
    
$mod $DB_site->query_first("SELECT userid from " TABLE_PREFIX "moderator where userid = $thefted[userid]");
    if (isset(
$mod['userid'])) {
        
$message "You may not steal from an moderator!";
        
uttstore_print_end_message($message);
    } 
Maybe not the most efficient way, but its working on my forums.

-CMX
Reply With Quote
  #1736  
Old 08-27-2004, 04:16 PM
Zelda-King's Avatar
Zelda-King Zelda-King is offline
 
Join Date: Nov 2002
Location: London, England
Posts: 674
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Heh, well it's a much more globally functional fix than my little attempt. I know the variables to use to indicate forum staff but they don't seem to want to work with $thefted. :/

It seems your fix isn't working for super mods though.
Reply With Quote
  #1737  
Old 08-27-2004, 04:23 PM
CMX_CMGSCCC CMX_CMGSCCC is offline
 
Join Date: Sep 2003
Posts: 1,218
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah, I had that problem at first too, kept giving a php error.

I finally found one line that worked, and I didnt want to fiddle with it anymore.

I hack Code Breaker PS2 codes, so I know how changing 1 letter can mess up everything

-CMX
Reply With Quote
  #1738  
Old 08-27-2004, 05:15 PM
Zelda-King's Avatar
Zelda-King Zelda-King is offline
 
Join Date: Nov 2002
Location: London, England
Posts: 674
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You can use this code for super moderators in the thief script:
PHP Code:
// Don't allow stealing from supermods
    
$supermod $DB_site->query_first("SELECT userid from " TABLE_PREFIX "user where usergroupid = 5 and userid = $thefted[userid]");
    if (isset(
$supermod['userid'])) {
        
$message "You may not steal from a super moderator!";
        
uttstore_print_end_message($message);
    } 
Reply With Quote
  #1739  
Old 08-27-2004, 07:03 PM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'll use an Action Specific Variable to control it in the next release.
Reply With Quote
  #1740  
Old 08-27-2004, 07:49 PM
RetroDreams RetroDreams is offline
 
Join Date: Nov 2002
Posts: 238
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How many addons are there to this? I've only found like 2 or 3. Am I looking in the wrong place?
Reply With Quote
  #1741  
Old 08-27-2004, 09:24 PM
Shari Hes's Avatar
Shari Hes Shari Hes is offline
 
Join Date: Jan 2004
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hello, I just installed it and I've been getting this weird error

Request Error (invalid_request)


Your request could not be processed.
This could be caused by a misconfiguration, or possibly a malformed request.

For assistance, contact your network support team.

everytime I click a link or post reply, but everything is just fine if I refresh (the reply is posted successfully). and most strangely, it only happened in IE.

my VB is 3.0.3 of course.

Thanks ^^
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 01:25 AM.


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.06040 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
  • (3)bbcode_php
  • (2)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