Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-20-2003, 04:18 AM
N!ck N!ck is offline
 
Join Date: Mar 2002
Location: Lake Havasu City, AZ
Posts: 886
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default why does this show up blank?

this generates a blank page when i access it without a query string even...anyone know why?

PHP Code:
<?php
require("../forums/global.php");
if (
$action=="upload") {
  if (
$folderid=="") {
    eval(
"standarderror(\"".gettemplate("error_gallery_nofolder")."\");");
    exit;
  }
  if (
$caption=="") {
    eval(
"standarderror(\"".gettemplate("error_gallery_nocaption")."\");");
    exit;
  }
  if (
$picfile=="") {
    eval(
"standarderror(\"".gettemplate("error_gallery_nopic")."\");");
    exit;
  }
  
$picsize=getimagesize($_FILES['picfile']['tmp_name']);
  if (
$picsize[0]<200) {
    eval(
"standarderror(\"".gettemplate("error_gallery_pictoosmall")."\");");
    exit;
  }
  if (!
eregi("jpeg",$_FILES['picfile']['type'])) {
    eval(
"standarderror(\"".gettemplate("error_gallery_invalidtype")."\");");
    exit;
  }
  
$securitycheck=$DB_site->query_first("SELECT * FROM galfolder WHERE galfolderid='$folder'");
  if (
$securitycheck['userid']!=$bbuserinfo['userid']) exit;
  
$DB_site->query("INSERT INTO galphoto (galphotoid,galfolderid,caption,dateline) VALUES ('0','$folder','$caption','".time()."'");
  
$pictureid=$DB_site->insert_id();
  if (
$picsize[0]>500) {
    
$aspectratio=$picsize[0]/500;
    
$newwidth=500;
    
$newheight=round($aspectratio*$picsize[1]);
  } else {
    
$newwidth=$picsize[0];
    
$newheight=$picsize[1];
  }
  
$srcimg=imagecreatefromjpeg($_FILES['picfile']['tmp_name']);
  
$dstimg=imagecreatetruecolor($newwidth,$newheight);
  
imagecopyresampled($dstimg,$srcimg,0,0,0,0,$newwidth,$newheight,$picsize[0],$picsize[1]);
  
$color=imagecolorallocate($dstimg,0,0,100);
  
$fontx=$newwidth-100;
  
$fonty=$newheight-6;
  
imagettftext($dstimg,14,0,$fontx,$fonty,$color,"../images/fonts/serpentine.ttf","V-Driveboat.com");
  
imagejpeg($dstimg,"../images/gallery/photos/".$pictureid.".jpg","100");
  
imagedestroy($dstimg);
  
$naspectratio=80/$picsize[0];
  
$newheight=round($naspectratio*$picsize[1]);
  
$thmimg=imagecreatetruecolor(80,$nheight);
  
imagecopyresampled($thmimg,$srcimg,0,0,0,0,80,$nheight,$picsize[0],$picsize[1]);
  
imagejpeg($thmimg,"../images/gallery/thumbs/".$pictureid.".jpg","100");
  
imagedestroy($thmimg);
  
imagedestroy($srcimg);
  eval(
"dooutput(\"".gettemplate("gallery_uploaddone")."\");");
  exit;
}
eval(
"dooutput(\"".gettemplate("gallery_upload")."\");");
?>
Reply With Quote
  #2  
Old 01-20-2003, 08:37 AM
Icheb's Avatar
Icheb Icheb is offline
 
Join Date: Oct 2002
Location: Germany
Posts: 86
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You mean you access it just via <script>.php and not via <script>.php?<variables> ?

In the third line, your script checks for $action being equal to "upload", if there is no such variable, that part of the script doesn't get parsed.
Reply With Quote
  #3  
Old 01-20-2003, 01:47 PM
N!ck N!ck is offline
 
Join Date: Mar 2002
Location: Lake Havasu City, AZ
Posts: 886
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

right, just <script>.php. but that should work because it is supposed to output a template if the action is not set to "upload".
Reply With Quote
  #4  
Old 01-20-2003, 02:02 PM
Icheb's Avatar
Icheb Icheb is offline
 
Join Date: Oct 2002
Location: Germany
Posts: 86
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, two things:
Does it work as expected if you call <script>.php?action=upload ?
If so, maybe post the content of the template gallery_upload .
Reply With Quote
  #5  
Old 01-20-2003, 02:04 PM
N!ck N!ck is offline
 
Join Date: Mar 2002
Location: Lake Havasu City, AZ
Posts: 886
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no, it doesn't work
Reply With Quote
  #6  
Old 01-20-2003, 02:08 PM
Icheb's Avatar
Icheb Icheb is offline
 
Join Date: Oct 2002
Location: Germany
Posts: 86
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think the problem is the

require("../forums/global.php");

tag. In which folder does the actual script and the global.php reside?
Reply With Quote
  #7  
Old 01-20-2003, 02:13 PM
N!ck N!ck is offline
 
Join Date: Mar 2002
Location: Lake Havasu City, AZ
Posts: 886
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this script is in:
/public_html/gallery/upload.php

forums are in:
/public_html/forums/
Reply With Quote
  #8  
Old 01-20-2003, 02:24 PM
N!ck N!ck is offline
 
Join Date: Mar 2002
Location: Lake Havasu City, AZ
Posts: 886
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks for your help, but i just remembered that global.php needs editing before use by scripts in other folders
Reply With Quote
  #9  
Old 01-20-2003, 02:30 PM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you, oterwise it won't call functions.php (or any of the other scripts for that matter) correctly.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:10 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.04480 seconds
  • Memory Usage 2,267KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete