vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   ibProArcade Archive (https://vborg.vbsupport.ru/forumdisplay.php?f=174)
-   -   Error when resetting best score ever (https://vborg.vbsupport.ru/showthread.php?t=315324)

tarball 11-08-2014 12:06 PM

Error when resetting best score ever
 
Since I move server (new PHP / Mysql version?) I get this error while trying to remove best score ever on all games...

mySQL error: Incorrect integer value: '' for column 'bestmid' at row 1

I have been able to succesfully run the query manually by running it in phpmyadmin

UPDATE games_list SET bestscore='0',bestmid='0',besttime='0' WHERE gid IN

The 0 was missing. Which file should I update so I don't have to run the query manually in the future ?

--------------- Added [DATE]1415457361[/DATE] at [TIME]1415457361[/TIME] ---------------

Apache v2.4.10 (cgi-fcgi)
PHP 5.5.18
Version MySQL 5.6.21

stangger5 11-08-2014 01:36 PM

admincp/arcade.php

Look for:
PHP Code:

    // reset best result ever
    
if ($IN['opt_resetbest']==1)
    {
        
$db_string $DB->compile_db_update_string( array (    'bestscore'   => '0''bestmid' => '''besttime' => '0' ) );
            
$DB->query("UPDATE ibf_games_list SET ".$db_string." WHERE gid IN ".$cat_string);
    } 

change :
PHP Code:

'bestmid' => '0' 


tarball 11-08-2014 03:43 PM

Thanks! Is there any other known patch to do when updating PHP/mysql?


All times are GMT. The time now is 04:55 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.00982 seconds
  • Memory Usage 1,714KB
  • 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
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete