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
  #1472  
Old 07-24-2004, 05:00 PM
WEForums WEForums is offline
 
Join Date: Apr 2003
Location: Jacksonville, Florida
Posts: 195
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Um...could you post it without the HTML?

You should post like 5 lines above and below the lines that have errors too.
Reply With Quote
  #1473  
Old 07-24-2004, 08:22 PM
GeekyDesigns's Avatar
GeekyDesigns GeekyDesigns is offline
 
Join Date: Mar 2004
Posts: 73
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mariannet
Please help!

I have installed hacks:

PetzVB v2
uCash & uShop 0.95
v3 Arcade Version 1.0
vBadvanced Homepage version 1.1

***

When trying to post thread:

Error in newthread.php line 554:

<form action="newthread.php" method="post" name="vbform" onsubmit="return validatePost(this, this.subject.value, 10, );" onreset="vB_RESET(this);">

When submitting thread or post:

Error in newthread line 554:

<form action="newthread.php" method="post" name="vbform" onsubmit="return validatePost(this, this.subject.value, 10, );" onreset="vB_RESET(this);">

Rapports:

Please complete both the subject and message fields. Press the back button, correct the problem and try again.
The message you have entered is too short. Please lengthen your message to at least 10 characters.

Thread does not get posted.

***

When trying to reply to thread:

Error in newreply.php line 556:

<form action="newreply.php" name="vbform" method="post" onsubmit="return validatePost(this, 0, 10, );" onreset="vB_RESET(this);">

When submitting the post:

Error in newreply.php line 556:

<form action="newreply.php" name="vbform" method="post" onsubmit="return validatePost(this, 0, 10, );" onreset="vB_RESET(this);">

Rapports:

Please complete both the subject and message fields. Press the back button, correct the problem and try again.
The message you have entered is too short. Please lengthen your message to at least 10 characters.

The reply does not get posted.

***

When trying to edit post:

Error in editpost.php line 620:

<form name="vbform" action="editpost.php" method="post" onsubmit="return validatePost(this, 0, 10, );" onreset="vB_RESET(this);">

When submitting it rapports no errors but it only says "edited by" in the post og the reason for editing, the new text is not present.
If I edit som of the original text, the change does not happen.

***

When playing in v3 Arcade and finishing a game, I type in the comments box but on submit gets: No permissions (I have the permissions).

***

I sure hope that someone can help. I'm supposed to open my upgraded forum monday and still have a long way to go

Sunshine from Denmark
-Marianne
uCS and vBpetsz are almost the same things (in concept) they may not work together by default.
Reply With Quote
  #1474  
Old 07-24-2004, 09:02 PM
aHMET aHMET is offline
 
Join Date: Mar 2004
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery
Go back to the action there should be a remove link.
no there isnt any remove link cost becomes 0 but when we clicked it says not enough points.
Reply With Quote
  #1475  
Old 07-24-2004, 11:50 PM
LilPimp LilPimp is offline
 
Join Date: Dec 2003
Location: Orlando, Florida
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery
Did you update the forums (go in and edit one and save?)
Hey man thanks so much. That's all I needed to do. A lil thing but a huge impact. Thanx a lot man. I was just about to redo tha whole hack.
Reply With Quote
  #1476  
Old 07-25-2004, 12:17 AM
Erwin's Avatar
Erwin Erwin is offline
 
Join Date: Jan 2002
Posts: 7,604
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nicer code in the later versions.

For those who are using 0.93 or earlier, there is a security bug, that allows users to enter input data via the URL. It happened to my site, and I had to fix it.

To fix this, edit the ushop.php file, find:

PHP Code:
require_once('./global.php'); 
BELOW, ADD:

PHP Code:
globalize($_POST, array(
'miscinput1' => STR
));

$_REQUEST['miscinput1'] = $_POST['miscinput1']; 
This will prevent people from entering input data via the URL which is significant as such data can include code that can run from the transaction history page.

This only applies to 0.93 or older UShops.
Reply With Quote
  #1477  
Old 07-25-2004, 12:21 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 Erwin
Nicer code in the later versions.

For those who are using 0.93 or earlier, there is a security bug, that allows users to enter input data via the URL. It happened to my site, and I had to fix it.

To fix this, edit the ushop.php file, find:

PHP Code:
require_once('./global.php'); 
BELOW, ADD:

PHP Code:
globalize($_POST, array(
'miscinput1' => STR
));

$_REQUEST['miscinput1'] = $_POST['miscinput1']; 
This will prevent people from entering input data via the URL which is significant as such data can include code that can run from the transaction history page.

This only applies to 0.93 or older UShops.
Thanks for posting that Erwin
Reply With Quote
  #1478  
Old 07-25-2004, 04:47 AM
Mr. Brian's Avatar
Mr. Brian Mr. Brian is offline
 
Join Date: Jan 2003
Location: Internet
Posts: 300
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Erwin
Nicer code in the later versions.

For those who are using 0.93 or earlier, there is a security bug, that allows users to enter input data via the URL. It happened to my site, and I had to fix it.

To fix this, edit the ushop.php file, find:

PHP Code:
require_once('./global.php'); 
BELOW, ADD:

PHP Code:
globalize($_POST, array(
'miscinput1' => STR
));

$_REQUEST['miscinput1'] = $_POST['miscinput1']; 
This will prevent people from entering input data via the URL which is significant as such data can include code that can run from the transaction history page.

This only applies to 0.93 or older UShops.

Thanks for sharing it with us.

Thumbs up!
Reply With Quote
  #1479  
Old 07-25-2004, 08:31 AM
mariannet's Avatar
mariannet mariannet is offline
 
Join Date: Mar 2003
Location: Denmark
Posts: 118
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by GeekyDesigns
uCS and vBpetsz are almost the same things (in concept) they may not work together by default.
Thanks, I have uninstalled uCash & uShop 0.95 and edited all files and templates. I still get the same error.

Looks to me that it has something to do with the posting form. The error comes with posting post and thread and on editing posts. Maybe a call to something as when submitting nothing is submitted but when editing the "edited by" shows up, but not the edited part.

I can edit the thread subject with no problems.

Has anyone got an idea where to start looking as I'm going totally barmy over this and need some sleep soon :tired:
Reply With Quote
  #1480  
Old 07-25-2004, 09:01 AM
YamaMotoYama YamaMotoYama is offline
 
Join Date: Oct 2002
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please help, Everything works great except that I cant seem to get the nav bar to work.
Reply With Quote
  #1481  
Old 07-25-2004, 04:42 PM
Reeve of shinra's Avatar
Reeve of shinra Reeve of shinra is offline
 
Join Date: Oct 2001
Location: NYC
Posts: 1,896
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I ran into the following error during the upgrade. I think the script was looping... I changed the url from 4 to 5 and it said its done but I just wanted to make sure that nothing else was needed. (I also assume I dont have to re-do the file edits?) Thanks!

Quote:
Database error in vBulletin 3.0.3:

Invalid SQL: CREATE TABLE utt_store_asvs ( `asvsid` INT( 20 ) NOT NULL AUTO_INCREMENT ,
`actionid` INT( 20 ) NOT NULL ,
`varname` VARCHAR( 255 ) NOT NULL ,
`title` VARCHAR( 255 ) NOT NULL ,
`description` TEXT NOT NULL ,
`optioncode` VARCHAR( 255 ) NOT NULL ,
`value` TEXT NOT NULL ,
PRIMARY KEY ( `asvsid` )
)
mysql error: Table 'utt_store_asvs' already exists

mysql error number: 1050

Date: Sunday 25th of July 2004 05:39:46 PM
Script: http://shinraonline.com/board/adminc...asequeries&v=4
Referer: http://shinraonline.com/board/adminc...otemplates&v=4
Username: Reeve of the Turks
IP Address: xx.xxx.xxx.xxx
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 09:02 PM.


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.06171 seconds
  • Memory Usage 2,349KB
  • Queries Executed 28 (?)
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
  • (7)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_postinfo_query
  • fetch_postinfo
  • 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