vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=5)
-   -   vbProArcade Beta 2 (https://vborg.vbsupport.ru/showthread.php?t=42880)

Pseudomizer 10-17-2003 10:11 PM

Quote:

Originally Posted by bitg
Ok, now that you have identified the problem, how do i fix it?

Hmm. The source code should be fine. I only could suggest that you try the following:

Replace:
SELECT * FROM arcadescores WHERE userid=$user AND valid=1 ORDER BY endtime DESC

With:
SELECT * FROM arcadescores WHERE userid=$userid AND valid=1 ORDER BY endtime DESC

in the proarcade.php file.

No guarantees. Give it a try.

And i would highly recommend that you check your vbulletin installation. It seems that you are running 2.2.8 and not 2.3.1 as you think. This could also cause many problems.

Cheers,

Pseudomizer

futureal 10-18-2003 07:12 PM

Pseudomizer: Thanks again for figuring out the upload bug in the Admin CP. I worked with it a bit and discovered what the exact problem was.

In some versions of Apache/PHP, variable names are automatically created from forms. So for example, the input file "championicon" would turn into "$championicon_name" and "$championicon_data" automatically when it's passed through the headers into the next page.

So for some combinations of OS/Apache/PHP, this wouldn't happen, and the variables would not get inserted correctly into the database. The key then is to use the $HTTP_POST_FILES array for everything, rather than relying on PHP to do the dirty work.

The vpaupload() function already does this for the data portion, but the name was being mishandled. So the code now looks like this:

PHP Code:

    // only process the files if changes were made
    
if (is_array($HTTP_POST_FILES)) {

      
$thumbnail_name$HTTP_POST_FILES[thumbnail]['name'];
      
$championicon_name$HTTP_POST_FILES[championicon]['name'];

      if (
$thumbnail_name != "")
        
$thumbdata vpaupload("thumbnail");
      else
        
$thumbdata "";

      if (
$championicon_name != "")
        
$championdata vpaupload("championicon");
      else
        
$championdata "";

    } else {

      
$thumbdata "";
      
$championdata "";
    }

    
// make sure we have a valid hash offset
    
if ($hashoffset 31)
      
$hashoffset $hashoffset 31;
    else if (
$hashoffset 0)
      
$hashoffset 0;

    
$updatearcade "UPDATE arcadegames
                     SET name='
$name', title='$title', description='$desc', filename='$filename', hashoffset='$hashoffset',
                         "
.iif(($championdata != "") || ($deletechampicon == 1),"championpicname='$championicon_name', championpicdata='$championdata',","")."
                         "
.iif(($thumbdata != "") || ($deletethumb == 1),"thumbnailname='$thumbnail_name', thumbnaildata='$thumbdata',","")."
                         active='
$active', scorevar='$scorevar', gamecode='$gamecode',championactive='$championactive',championtext='$championtext',championcolor='$championcolor'
                     WHERE gameid='
$gameid'";

    
$DB_site->query($updatearcade); 

This fix (and appropriate credit) is given in Beta 2.1. :)

Pseudomizer 10-18-2003 08:56 PM

Hi Futureal,

i am glad that you found the problem. Whenever i can help just tell me.

Did you had time to check my "Hall of Fame" ?

Cheers,

Pseudomizer

futureal 10-18-2003 11:00 PM

Yea, I did have a look at it, it's very nice.

The way I've implemented it so far is a bit different; instead of going strictly by months, it allows the admin(s) to define any sort of period as a separate group or event, and then contains its own high scores for that. So it's more work, in that the admin would have to manually start a new group for each month, but it can also be reset more often if necessary.

I'm still testing it, and it won't be in Beta 2.1, but it will still make a showing in the vB2 version of the hack. :)

Your site did inspire me to start thinking about an optional cron job that could automatically rotate the scores each month/week/whatever.

Pseudomizer 10-18-2003 11:33 PM

Quote:

Originally Posted by futureal
Yea, I did have a look at it, it's very nice.

The way I've implemented it so far is a bit different; instead of going strictly by months, it allows the admin(s) to define any sort of period as a separate group or event, and then contains its own high scores for that. So it's more work, in that the admin would have to manually start a new group for each month, but it can also be reset more often if necessary.

I'm still testing it, and it won't be in Beta 2.1, but it will still make a showing in the vB2 version of the hack. :)

Your site did inspire me to start thinking about an optional cron job that could automatically rotate the scores each month/week/whatever.

Smile. That is the next thing i wanted to implement. Right now i reset the scores manually and every time i reset them, the script looks for the actual month ( with some intelligence check behind ) and writes the Hall of Fames file. The next thing will be to insert into the cron job the start of the proarcadeadmin.php with the parameters to reset the scores and everything will happen then automatically. So we are both on the same way of solving this problem.

On unix a cronjob and on windows an AT job ( you can use Auto2000 to have a nice GUI on windows for that ).

If you need someone to test your solution just tell me.

Cheers,

Pseudomizer

GoTTi 10-19-2003 05:35 AM

when is this thing gunna go full release?????

PixelFx 10-19-2003 07:22 AM

its in testing, if all goes well, the next beta should be out soon :)

Kamui Shirou 10-19-2003 04:21 PM

hi. nice hack. but i've got a problem to solve.
When I wanna start out playing a game, the game loads and loads and loads, but noth' happens.
Hope u can help me.
http://www.mangaboard.com/forums/vbproarcade.php

xxxsaint 10-19-2003 04:37 PM

go into the arcade options in your admin panel and double check your filepath to the games folder.

defaulted you will see /games/

I had to change mine to games/

then it worked

MaDCaT75 10-19-2003 10:06 PM

All things come in good time.


All times are GMT. The time now is 11:22 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.02983 seconds
  • Memory Usage 1,764KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete