Date: 11/13/00
- Next message: Vadim Tkachenko: "[PHP-DEV] OCI functions"
- Previous message: Andi Gutmans: "Fwd: [PHP-DEV] PHP Security Advisory - File Uploads"
- In reply to: Thomas: "Re: [PHP-DEV] PHP 4.0 Bug #7664: GD & DB Extensions Conflict"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hello again,
only to prevent misunderstandings because of my previous post:
there IS a problem with using ISAPI, but Dr. Watson doesn't come up. Instead, the following warnings occur, but
the resized files get saved properly:
Warning: Unknown list entry type in request shutdown (1042368) in Unknown on line 0
Warning: Unknown list entry type in request shutdown (1042368) in Unknown on line 0
Under ISAPI, I've got this warnings since PHP 4.02 (see also Bug id #6539).
Here is a small testfile (for copy-paste-run), where Dr. Watson (cgi) or the above warings (isapi) come up:
<?
if (!isset($DOCUMENT_ROOT)) // Only for CGI-mode
$DOCUMENT_ROOT = "F:\\Inetpub\\www\\Intranet";
$mypath = $DOCUMENT_ROOT."\\misc\\punsch\\photos\\";
if ( $op == "save" && $userfile_name !="" ) {
$imgtype = substr ($userfile_name, strlen($userfile_name)-3, 3);
if ( copy($userfile, $mypath.$userfile_name)==1 ) {
$imgsize = getimagesize ($mypath.$userfile_name);
$im_w = round( $imgsize[0] / ($imgsize[1]/45) );
$im_h = round( $imgsize[1] / ($imgsize[1]/45) );
$im = <email protected> ($mypath.$userfile_name);
$im1 = <email protected> ($im_w, $im_h);
imagecopyresized ( $im1, $im, 0, 0, 0, 0, $im_w, $im_h, $imgsize[0], $imgsize[1]);
imagejpeg ( $im1, $mypath."tn_".$userfile_name );
}
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD><TITLE> Test </TITLE></HEAD>
<BODY>
<FORM ENCTYPE="multipart/form-data" ACTION="<? echo $PHP_SELF; ?>" METHOD=POST>
<table align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<TD VALIGN="TOP">
<input type=hidden name="op" value="save">
<BR> <INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1500000">
<BR> <b>Upload Image:</b>
<BR> <input type="File" name="userfile" size="35" maxlength="255">
</TD>
</tr>
<tr>
<td align="center"><BR><font class=stdtext><INPUT TYPE="SUBMIT" VALUE="Upload Img"> <br></td>
</tr>
</TABLE>
</FORM>
</BODY>
</HTML>
Thomas wrote:
> Hi Developers!
>
> Can't Update the bug-report, so I place my comments here:
>
> The described Problem (didn't verify if it's connected to DB-extensions, but I have mssql_70 active), occurs
> only in CGI-mode, and NOT in ISAPI (In case that it's helpful: I'm using IIS 4).
>
> Thanks for your great work!
>
> Best regards,
> Thomas
>
> mmings <email protected> wrote:
>
> > From: mmings <email protected>
> > Operating system: NT 4.0 SP6
> > PHP version: 4.0.3pl1
> > PHP Bug Type: *Install and Config
> > Bug description: GD & DB Extensions Conflict
> >
> > When I enable both the GD & DB extensions, then make a call to a GD function I get a visit for Dr. Watson.
> >
> > --
> > Edit Bug report at: http://bugs.php.net/?id=7664&edit=1
> >
> > --
> > PHP Development Mailing List <http://www.php.net/>
> > To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
> > For additional commands, e-mail: php-dev-help <email protected>
> > To contact the list administrators, e-mail: php-list-admin <email protected>
>
> --
> PHP Development Mailing List <http://www.php.net/>
> To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
> For additional commands, e-mail: php-dev-help <email protected>
> To contact the list administrators, e-mail: php-list-admin <email protected>
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Vadim Tkachenko: "[PHP-DEV] OCI functions"
- Previous message: Andi Gutmans: "Fwd: [PHP-DEV] PHP Security Advisory - File Uploads"
- In reply to: Thomas: "Re: [PHP-DEV] PHP 4.0 Bug #7664: GD & DB Extensions Conflict"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

