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
  #932  
Old 05-19-2004, 10:39 PM
proxyMX's Avatar
proxyMX proxyMX is offline
 
Join Date: Jun 2002
Location: Seven of Nine is hot! :do
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sabret00the
i would suggest reapplying all changes to funtions.php

also what page url caused that problem?
ive looked through the full thing, i had this chunk of code
PHP Code:
// ######################## USHOP #################################### 
// Unserialize uShop Actions. 
$storeactions unserialize($datastore['utt_store_act']); 

// Make a list of the all the actions... 
foreach ($storeactions as $actionid => $theaction) { 
    if (
$theaction['active'] == "1") { 
        
$allowed explode(","$theaction['allowedgroups']); 
        foreach (
$allowed as $allow) { 
            if (
is_member_of(array('userid'=>$bbuserinfo['userid'], 'usergroupid'=>$bbuserinfo['usergroupid'], 'membergroupids'=>$bbuserinfo['membergroupids']), $allow)) { 
                
$canenter "1"
            } 
        } 
        
$denied explode(","$theaction['deniedgroups']); 
        foreach (
$denied as $deny) { 
            if (
is_member_of(array('userid'=>$bbuserinfo['userid'], 'usergroupid'=>$bbuserinfo['usergroupid'], 'membergroupids'=>$bbuserinfo['membergroupids']), $deny)) { 
                unset(
$canenter); 
            } 
        } 
        if (!isset(
$canenter)) { 
            
$canenter "0"
        } 
        if (
THIS_SCRIPT == 'ushop') { 
            if (
$canenter == 1) { 
                
$action1[$actionid] = $theaction
            } 
            if (
$theaction['showinstore'] == 1) { 
                (isset(
$actioncount) ? $actioncount++ : $actioncount "1"); 
            } 
        } 
        if (
$canenter == && $theaction['showinstore'] == 1) { 
            eval(
'$ushop_navbar .= "' fetch_template('navbar_uttstore_actions') . '";'); 
        } 
    } 

// The end all solution. 
unset($theaction); 
unset(
$storeactions); 
if (
THIS_SCRIPT == 'ushop') { 
    
$storeactions $action1

unset(
$action1); 
in the wrong place, ive ammended that and now all is well!

Thanks
Reply With Quote
  #933  
Old 05-20-2004, 03:12 AM
proxyMX's Avatar
proxyMX proxyMX is offline
 
Join Date: Jun 2002
Location: Seven of Nine is hot! :do
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by proxyMX
ive looked through the full thing, i had this chunk of code
PHP Code:
// ######################## USHOP #################################### 
// Unserialize uShop Actions. 
$storeactions unserialize($datastore['utt_store_act']); 

// Make a list of the all the actions... 
foreach ($storeactions as $actionid => $theaction) { 
    if (
$theaction['active'] == "1") { 
        
$allowed explode(","$theaction['allowedgroups']); 
        foreach (
$allowed as $allow) { 
            if (
is_member_of(array('userid'=>$bbuserinfo['userid'], 'usergroupid'=>$bbuserinfo['usergroupid'], 'membergroupids'=>$bbuserinfo['membergroupids']), $allow)) { 
                
$canenter "1"
            } 
        } 
        
$denied explode(","$theaction['deniedgroups']); 
        foreach (
$denied as $deny) { 
            if (
is_member_of(array('userid'=>$bbuserinfo['userid'], 'usergroupid'=>$bbuserinfo['usergroupid'], 'membergroupids'=>$bbuserinfo['membergroupids']), $deny)) { 
                unset(
$canenter); 
            } 
        } 
        if (!isset(
$canenter)) { 
            
$canenter "0"
        } 
        if (
THIS_SCRIPT == 'ushop') { 
            if (
$canenter == 1) { 
                
$action1[$actionid] = $theaction
            } 
            if (
$theaction['showinstore'] == 1) { 
                (isset(
$actioncount) ? $actioncount++ : $actioncount "1"); 
            } 
        } 
        if (
$canenter == && $theaction['showinstore'] == 1) { 
            eval(
'$ushop_navbar .= "' fetch_template('navbar_uttstore_actions') . '";'); 
        } 
    } 

// The end all solution. 
unset($theaction); 
unset(
$storeactions); 
if (
THIS_SCRIPT == 'ushop') { 
    
$storeactions $action1

unset(
$action1); 
in the wrong place, ive ammended that and now all is well!

Thanks
Question: How do i change the word "Points" on all of the documents into "Dollars" or whatever?
Reply With Quote
  #934  
Old 05-20-2004, 03:39 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 proxyMX
Question: How do i change the word "Points" on all of the documents into "Dollars" or whatever?
By editing the templates.
Reply With Quote
  #935  
Old 05-20-2004, 04:48 AM
Keta Keta is offline
 
Join Date: Nov 2001
Location: michigan
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

there is no buy a avatar action?
Reply With Quote
  #936  
Old 05-20-2004, 09:00 AM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nope, it's the hope that this action is released for 0.99 or 1.0
Reply With Quote
  #937  
Old 05-21-2004, 01:17 PM
xHollywoodx xHollywoodx is offline
 
Join Date: Dec 2003
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, im getting errors, and it wont let me login to admin =[, when i try to login to admin i get this errors

Unable to add cookies, header already sent.
File: /home/cosclan/public_html/forums/global.php
Line: 649

And at the top of my site i get this error too

Warning: Invalid argument supplied for foreach() in /home/cosclan/public_html/forums/global.php on line 649

when i go to line 649, i have this there

foreach ($storeactions as $actionid => $theaction) {

???

Someone please help!!! i would really like to have this on my site, but i cant get it to work =[
Reply With Quote
  #938  
Old 05-21-2004, 02:11 PM
xHollywoodx xHollywoodx is offline
 
Join Date: Dec 2003
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello? Can some one please help me, i hate having erros on my site ??
Reply With Quote
  #939  
Old 05-21-2004, 04:20 PM
xHollywoodx xHollywoodx is offline
 
Join Date: Dec 2003
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Me and my friend fixed it.
Reply With Quote
  #940  
Old 05-21-2004, 06:06 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 xHollywoodx
Me and my friend fixed it.
Sorry, im not avaible to do support 24/7 for this hack, you should wait at least 12-24 hours befor bumping a post, however im glad to see you fixed it
Reply With Quote
  #941  
Old 05-21-2004, 06:41 PM
xHollywoodx xHollywoodx is offline
 
Join Date: Dec 2003
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hehe, sorry i paniced cause my site got messed up, hehe, ok now i am having this prob, peeps post, they dont get any money??? i dont know why??? Is there something wrong? Look?

http://www.teamsik.net/forums/showthread.php?t=309

Its not working =[
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:01 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.14472 seconds
  • Memory Usage 2,361KB
  • 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
  • (2)bbcode_php
  • (4)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