vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Fatal Error, time exceeded. (https://vborg.vbsupport.ru/showthread.php?t=107464)

Red Blaze 02-08-2006 04:03 PM

Fatal Error, time exceeded.
 
I get a Fatal Error Maximum execution time of 30 seconds exceeded on line 19.

Code:

while($counter <= count($photos_uploaded)) {
 if($photos_uploaded['size'][$counter] > 0) {
  if(!array_key_exists($photos_uploaded['type'][$counter], $photo_types)) {
    $result_final .= 'File ' . ($counter + 1) .
      ' is not a photo<br />';
  } else {
    // Great the file is an image, we will add this file
  }
 }
}

That's the block of code that starts at line 19. Any way I can make the code simpler so that it won't exceed the 30 second execution limit?

Xenon 02-08-2006 05:29 PM

don't allow to much photo uploads at the same time

Red Blaze 02-08-2006 06:25 PM

Oddly enough, not even one will go through. :p

I downloaded a file that was already done, from the tutorial I was reading and it works just fine. I must of missed something.

Ok, the uploading works well already. Granted, I still need testing with it. But here's the viewgallery page.

http://www.pro-photos.com/uploading/viewgallery.php

If you give it time, or maybe right off the bat, you'll get errors. In a short time, they'll go away and it'll be as if they were never there. In time, they'll show up again. Why does that happen? I really don't understand.

filburt1 02-08-2006 06:46 PM

Increment your counter.

Xenon 02-08-2006 07:31 PM

oops ^^

right, you are not incrementing the counter variable, so it's an endless loop

Red Blaze 02-08-2006 08:15 PM

uh huh. o.o;
Sorry, that's one thing I'm not sure how to do. Here's my block of code:

Code:

                $result = mysql_query( "SELECT c.album_id,c.album_name,COUNT(photo_id)
                                                FROM gallery_albums
                                                WHERE customer = '".$customer."' as c
                                                LEFT JOIN gallery_photos as p ON p.photo_album = c.album_id
                                                GROUP BY c.album_id" );
line 27->                while( $row = mysql_fetch_array( $result ) )
                {
                        $result_array[] = "<a href='viewgallery.php?aid=".$row[0]."'>".$row[1]."</a> "."(".$row[2].")";
                }
line 31->                mysql_free_result( $result );

Right now, it's giving errors saying:
Quote:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/prophot/public_html/uploading/viewgallery.php on line 27

Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/prophot/public_html/uploading/viewgallery.php on line 31
But if I take off "WHERE customer = '".$customer."'", the errors go *poof*. I want to filter the albums by customer so only THAT logged in customer views his/her albums and not anyone elses. <=/

filburt1 02-08-2006 11:21 PM

The query probably failed (and certainly did given it's not syntactually valid).


All times are GMT. The time now is 10:49 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.00990 seconds
  • Memory Usage 1,725KB
  • 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_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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