vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   I have a big problem here (https://vborg.vbsupport.ru/showthread.php?t=47264)

Mijae 01-02-2003 02:47 PM

I have a big problem here
 
Last night my server's database went down and now they say its back up, but my vB wont show/load an posts or member profiles, but it does load everything else.

I get this:

Fatal error: Maximum execution time of 30 seconds exceeded in /home/virtual/site24/fst/var/www/html/forum/admin/functions.php on line 225

And the same execution error in members.php

I didnt edit any of those files, or any vB files in the last 4 days, so I dont know whats wrong.

http://www.invoid.net/forum

Xenon 01-02-2003 02:59 PM

what are the lines 220 - 230 of your functions.php?

your board in general is really slow...
i'd say try to upgrade to the newest vb-version..

Mijae 01-02-2003 03:10 PM

Code:

/*
global $totalcats;
for ($i = 1; $i <= $totalcats[0]; $i++) {
        if($post['item$i']!='No Item') {
                if(empty($post['icon$i'])) {
                        $itemid = "itid$i";
                        $iconid = "icon$i";
                        $itemname = "item$i";
                        $post[items] .= "<a href=\"itemshop.php?action=view&id=$post[$itemid]\"><img src=\"{imagesfolder}/itemshop/$post[$iconid].gif\" border=\"0\"></a> ";
                } else {
                        $post[items] .= "<a href=\"itemshop.php?action=view&id=$post[$itemid]\"><img src=\"{imagesfolder}/itemshop/$post[$itemname].gif\" border=\"0\"></a> ";
                }
        } else {
                $post[items] .= "<img src=\"{imagesfolder}/itemshop/No Item.gif\" border=\"0\"> ";
        }
}
*/
global $totalcats;
$nr=1;
$count=1;
while ($count <= $totalcats[0]) {
$xc="item$nr";
$xv = "itid$nr";
if(!isset($post[$xv])) {
$nr++;
continue;
}
if($post[$xc]!='No Item' AND isset($post[$xc])) {
$xvv = "item$nr";
$xv = "itid$nr";
$xvvv = "icon$nr";
if(empty($post[$xvvv])) {
$post[items] .= "<a href=\"itemshop.php?action=view&id=$post[$xv]\"><img src=\"{imagesfolder}/itemshop/$post[$xvv].gif\" border=\"0\"></a> ";
} else {
$post[items] .= "<a href=\"itemshop.php?action=view&id=$post[$xv]\"><img src=\"{imagesfolder}/itemshop/$post[$xvvv].gif\" border=\"0\"></a> ";
}
} else {
$post[items] .= "<img src=\"{imagesfolder}/itemshop/No Item.gif\" border=\"0\">";
}
$nr++;
$count++;
}

that seems to be the problem, I will try removing it. But I have no idea why it doesnt work today if it did yesterday.

Mijae 01-02-2003 03:11 PM

Yes, it works now, but I have absolutely no idea why it does with that code >_<

Mijae 01-02-2003 03:15 PM

I found out the problem, thanks for the help anyways.

The error was produced when a member bought a pesonal itemshop, which caused an endless loop.

Xenon 01-02-2003 03:16 PM

this part is wrong:
PHP Code:

$count=1
while (
$count <= $totalcats[0]) { 
$xc="item$nr"
$xv "itid$nr"
if(!isset(
$post[$xv])) { 
$nr++; 
continue; 


you have a endless while loop here!
it checks for count<=totalscat, but counts are never increased..

add $count++; after the while line


All times are GMT. The time now is 09:22 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.01123 seconds
  • Memory Usage 1,729KB
  • 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_code_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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