vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   v3 Arcade - Games Arcade & Challenge System [vB 3.0.3] (https://vborg.vbsupport.ru/showthread.php?t=60377)

flstreetscene 12-02-2004 11:51 PM

Can someone help me with this problem?

https://vborg.vbsupport.ru/showpost....postcount=2906

ChuanSE 12-03-2004 06:11 AM

Quote:

Originally Posted by urmyantichrist
Maybe this is part of my problem... I'm not seeing much of ANYthing about the arcade in my DB... And even if I did, I really wouldn't know what to do...

Like I said, it was working GREAT for like a month, and out of nowhere, not working...

I wanna take a look if ya provide me proper access...
But if it takes some work, do i get a banner of ddance on your site? ;)

ChuanSE 12-03-2004 06:12 AM

Quote:

Originally Posted by flstreetscene
Can someone help me with this problem?

https://vborg.vbsupport.ru/showpost....postcount=2906

Mate, i never like the garage hack en never installed it, so i really won't have a clue bout that, sorry :/

JohnA 12-03-2004 10:59 AM

i love this hack...

Rocket_Cowboy 12-03-2004 02:27 PM

Quote:

Originally Posted by ChuanSE
I'm sure you should check memberinfo template or member.php file again ;)

Hmmm ... just searching back through the install instructions, and there's no mention of any changes that need to be made to either the memberinfo template, or member.php.

This was a fresh install of v3 Arcade 1.0.3 on vb 3.0.3. Did I miss a step somewhere?

Nexus[l33t] 12-04-2004 06:10 AM

]
Quote:

Originally Posted by AutomatikStudio
Hmmm...I searched in arcade.php and the phrase "SET highscoreid" wasn't anywhere in it.

it's actually in arcadeupdate.php. i was having the same problem with the error messages.....

Database error in vBulletin 3.0.3:

Invalid SQL: UPDATE games SET highscorerid=,highscore=118 WHERE shortname='pedestriankiller' mysql error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'highscore=118 WHERE shortname='pedestriankiller'' at line 1


i think this guy knew what the deal was. i applied that fix and it seems to be working fine at the moment. we'll see how it goes, but here's his post.....

https://vborg.vbsupport.ru/showpost....postcount=1708

but to make it easier for somebody who might be having this problem, in arcadeupdate.php find...

Code:

if ($scores) {
        foreach ($scores as $key => $value) {
                $DB_site->query("UPDATE " . TABLE_PREFIX . "games SET highscorerid=$value[userid],highscore=$value[score] WHERE shortname='$key'");
        }
}

switch it out with this....

Code:

if ($scores) {
        foreach ($scores as $key => $value) {
                $DB_site->query("UPDATE " . TABLE_PREFIX . "games SET highscore=$value[score] WHERE shortname='$key'");
        }
}

Disclaimer: i may or may not know what the hell i'm doing. so if you kill your board it's your own damn fault. :speechless:

may the force be with you

Deimos 12-04-2004 08:18 AM

Hmm i've got a problem, sorry I can't be bothered to read through 30 pages to see if it's been posted before, but I think it's a simple fix (I hope heh)

I overwrote all my existing Vbulletin files with a new set, but..
since i've done that and redone the arcade file mods, when I goto the arcade screen, it doesn't list the games
All I get is the "Arcade home / Your settings / Your statistics / Challenges"
The games DO show up in the admin panel though..

Anyone have any ideas?

rh2004 12-04-2004 06:34 PM

Hi I got a problem in this file Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/username/public_html/community/includes/init.php on line 531


Code:

// add default special templates
                if (!CACHE_DATASTORE_FILE OR !defined('CACHE_DATASTORE_FILE'))
                {
                        $specialtemplates = array_merge(array(
                                'options',
                                'cron',
                                'forumcache',
                                'usergroupcache',
                // ## <ucs>
                        'stylecache',
                        'utt_store_act'
                // ## </ucs>
                        'arcadesettings'       
                        ), $specialtemplates);
                }
                else
                {
                        require_once('./includes/datastore_cache.php');
                        $optionsfound = !empty($vboptions);
                        $specialtemplates = array_merge(array(
                                'cron'
                        ), $specialtemplates);
                }

I also get this error when I try to change the permissions of items in
usergroup manager

Code:

Database error in vBulletin 3.0.3:

Invalid SQL: UPDATE usergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
        title = 'Administrators',
        description = '',
        usertitle = 'Administrator',
        opentag = '<b><font color=\"#006de9\">',
        closetag = '</font></b>',
        passwordexpires = '180',
        passwordhistory = '360',
        canviewarcade = '1',
        canplayarcade = '1',
        canmakecomments = '1',
        caneditscores = '1',
        candelscores = '1',
        attachlimit = '0',
        avatarmaxwidth = '125',
        avatarmaxheight = '125',
        avatarmaxsize = '200000',
        profilepicmaxwidth = '125',
        profilepicmaxheight = '125',
        profilepicmaxsize = '200000',
        pmquota = '50',
        pmsendmax = '5',
        uttstore_discount = '0',
        forumpermissions = '393215',
        pmpermissions = '3',
        calendarpermissions = '31',
        wolpermissions = '31',
        adminpermissions = '3',
        genericpermissions = '4194239',
        genericoptions = '31'
WHERE usergroupid=6
mysql error: Unknown column 'canviewarcade' in 'field list'

mysql error number: 1054

Date: Saturday 04th of December 2004 03:42:07 PM
Script: http://www.adminpanel/usergroup.php
Referer: http://www./adminpanel/usergroup.php?s=&do=edit&usergroupid=6
Username: website
IP Address:


Whats wrong :(

rh2004 12-04-2004 07:03 PM

Quote:

Originally Posted by rh2004
Hi I got a problem in this file Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/username/public_html/community/includes/init.php on line 531


Code:

// add default special templates
                if (!CACHE_DATASTORE_FILE OR !defined('CACHE_DATASTORE_FILE'))
                {
                        $specialtemplates = array_merge(array(
                                'options',
                                'cron',
                                'forumcache',
                                'usergroupcache',
                // ## <ucs>
                        'stylecache',
                        'utt_store_act'
                // ## </ucs>
                        'arcadesettings'       
                        ), $specialtemplates);
                }
                else
                {
                        require_once('./includes/datastore_cache.php');
                        $optionsfound = !empty($vboptions);
                        $specialtemplates = array_merge(array(
                                'cron'
                        ), $specialtemplates);
                }

I also get this error when I try to change the permissions of items in
usergroup manager

Code:

Database error in vBulletin 3.0.3:

Invalid SQL: UPDATE usergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
        title = 'Administrators',
        description = '',
        usertitle = 'Administrator',
        opentag = '<b><font color=\"#006de9\">',
        closetag = '</font></b>',
        passwordexpires = '180',
        passwordhistory = '360',
        canviewarcade = '1',
        canplayarcade = '1',
        canmakecomments = '1',
        caneditscores = '1',
        candelscores = '1',
        attachlimit = '0',
        avatarmaxwidth = '125',
        avatarmaxheight = '125',
        avatarmaxsize = '200000',
        profilepicmaxwidth = '125',
        profilepicmaxheight = '125',
        profilepicmaxsize = '200000',
        pmquota = '50',
        pmsendmax = '5',
        uttstore_discount = '0',
        forumpermissions = '393215',
        pmpermissions = '3',
        calendarpermissions = '31',
        wolpermissions = '31',
        adminpermissions = '3',
        genericpermissions = '4194239',
        genericoptions = '31'
WHERE usergroupid=6
mysql error: Unknown column 'canviewarcade' in 'field list'

mysql error number: 1054

Date: Saturday 04th of December 2004 03:42:07 PM
Script: http://www.adminpanel/usergroup.php
Referer: http://www./adminpanel/usergroup.php?s=&do=edit&usergroupid=6
Username: website
IP Address:


Whats wrong :(


I have fixed it... a , was missing after 'utt_store_act'

'utt_store_act',
// ## </ucs>
'arcadesettings'
), $specialtemplates);


But it says I do not have permission to access this page. This could be due
to one of several reasons:

Your user account may not have sufficient privileges to access this page. Are
you trying to edit someone else's post, access administrative features or
some other privileged system?
If you are trying to post, the administrator may have disabled your account,
or it may be awaiting activation.


Im admin and i've set it in admin and registered user permissions to use the arcade?

wizardace 12-05-2004 06:56 PM

Well done!! It s ace.


All times are GMT. The time now is 04:00 AM.

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.05043 seconds
  • Memory Usage 1,782KB
  • 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
  • (6)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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