Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools
uCash & uShop v2.0.0 Details »»
uCash & uShop v2.0.0
Version: 2.0.0, by Revan Revan is offline
Developer Last Online: Jun 2014 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 02-04-2006 Last Update: 06-03-2006 Installs: 248
DB Changes Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

As of June 4th 2006 the uCS project is officaly closed.

For more info please see this thread. https://vborg.vbsupport.ru/showthread.php?t=117590

Show Your Support

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

Comments
  #302  
Old 02-06-2006, 03:25 PM
Red Blaze's Avatar
Red Blaze Red Blaze is offline
 
Join Date: Jan 2003
Location: Texas
Posts: 493
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm running into some problems. Firstly, the bank.

It says I can't deposit more than I have, and I 1,000,000+ points. I deposit at least 1 and it still gives me that.
Also, I noticed that in uShop, under my av, it says:
Quote:
points:
points in bank:
Nothing.
  #303  
Old 02-06-2006, 03:26 PM
kpr's Avatar
kpr kpr is offline
 
Join Date: Jun 2005
Location: Scotland
Posts: 89
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Error in upgrade.
After re uploading then doing install i get this at stage 8 of install
  #304  
Old 02-06-2006, 03:28 PM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mikexxx
Question about displaying the points.

Now I have:

Posts: 3.945 | Points: 12,345.00

My question is how can chance the ?. ? and the ? , ? in the points (Points: 12.345,00)?
that's a vbulletin option I assume.


@Revan: I think the bank got a problem when calculating interests. I got this actually when entering the bank

Fatal error: Maximum execution time of 30 seconds exceeded in forum/ushop/action.bank.php on line 93

which is.
$nextinterest = ($nextinterest + $action['interestincrement']);

Also I can't seem to see where I can set the bank interests.
  #305  
Old 02-06-2006, 03:30 PM
ThePimp's Avatar
ThePimp ThePimp is offline
 
Join Date: Feb 2005
Posts: 329
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Getting a blank screen when trying to go to the bank. It worked for a little while, then stopped. Any idea as to how to fix this?
  #306  
Old 02-06-2006, 03:35 PM
Red Blaze's Avatar
Red Blaze Red Blaze is offline
 
Join Date: Jan 2003
Location: Texas
Posts: 493
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

XD
I shoulda tried the other shop first. Ah well, I screwed myself over for forgetting to make a backup. L_L

@kpr I had that too. I stopped the installation there, and tried it out. It worked, but I believe that's why I'm getting the other problems.
  #307  
Old 02-06-2006, 03:45 PM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To Revan: You should check this, I think it's a bug:

Firstly, in global_start plugin for Ucash, this line:

$vbulletin->userinfo['points'] = ucash_number_format($vbulletin->userinfo[$vbulletin->options['ucash_pointsfield']], true);

will make $vbulletin->userinfo['points'] become point which has "," , that can't be use to compare in this:

PHP Code:
if ($cost $vbulletin->userinfo['points'] && $cost 0) { 
If I change to (second param to false)

PHP Code:
$vbulletin->userinfo['points'] = ucash_number_format($vbulletin->userinfo[$vbulletin->options['ucash_pointsfield']], false); 
I will not receive the "do not have enough point message" anymore, because that time my point is calculated correctly.

BUT, if I enter the bank, I will get the 30s maximun execution time. On the contrary I set to "true", I can enter the bank but I get the "do not have enough point message".

Could you check that please ?
  #308  
Old 02-06-2006, 03:54 PM
Iain M's Avatar
Iain M Iain M is offline
 
Join Date: Jul 2005
Location: Glasgow, Scotland
Posts: 256
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kpr
Error in upgrade.
After re uploading then doing install i get this at stage 8 of install
i am getting this also,

except, i get to step 8 then click Next Step (9/10) then i get the "Error in upgrade." message.
  #309  
Old 02-06-2006, 03:55 PM
Revan's Avatar
Revan Revan is offline
 
Join Date: Jan 2004
Location: Norway
Posts: 1,671
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Step 8 and onwards is building forum permissions and adding cron job, so that would have no impact.
I just tried a fresh install on a new installation and it went almost without a hitch, gonna update the zip.
  #310  
Old 02-06-2006, 03:58 PM
Revan's Avatar
Revan Revan is offline
 
Join Date: Jan 2004
Location: Norway
Posts: 1,671
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by deathemperor
To Revan: You should check this, I think it's a bug:

Firstly, in global_start plugin for Ucash, this line:

$vbulletin->userinfo['points'] = ucash_number_format($vbulletin->userinfo[$vbulletin->options['ucash_pointsfield']], true);

will make $vbulletin->userinfo['points'] become point which has "," , that can't be use to compare in this:

PHP Code:
if ($cost $vbulletin->userinfo['points'] && $cost 0) { 
If I change to (second param to false)

PHP Code:
$vbulletin->userinfo['points'] = ucash_number_format($vbulletin->userinfo[$vbulletin->options['ucash_pointsfield']], false); 
I will not receive the "do not have enough point message" anymore, because that time my point is calculated correctly.

BUT, if I enter the bank, I will get the 30s maximun execution time. On the contrary I set to "true", I can enter the bank but I get the "do not have enough point message".

Could you check that please ?
Thank you for the extensive report, I will definetely check this out.
Just let me hotfix the install problem, and Ill get right onto this problem. You have been most helpful
  #311  
Old 02-06-2006, 03:59 PM
Red Blaze's Avatar
Red Blaze Red Blaze is offline
 
Join Date: Jan 2003
Location: Texas
Posts: 493
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I tried to remove the shop completely, now I can't install it anymore.
I get to step 7, and stops there with a vBulletin message saying:

Quote:
Invalid File Specified
Closed Thread


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 04:52 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.11112 seconds
  • Memory Usage 2,321KB
  • Queries Executed 25 (?)
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
  • (4)bbcode_php
  • (5)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
  • (3)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