php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #15062 apache crash in php4ts.dll
Submitted: 2002-01-15 20:12 UTC Modified: 2004-03-23 18:06 UTC
Votes:1
Avg. Score:4.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: imajes@php.net Assigned:
Status: No Feedback Package: Reproducible crash
PHP Version: 4.1.1 OS: Windows 2000 + Apache
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: imajes@php.net
New email:
PHP Version: OS:

 

 [2002-01-15 20:12 UTC] imajes@php.net
i am running latest "stable" 1.3 apache on my windows 2000 machine here.

When i execute the following code (both $f_user and $f_pass are populated)

<?php
require_once("global.php");

if (isset ($f_user) && isset ($f_pass)) {
	/* so the user [form] needs to be logged in... */
	$sql = "SELECT * FROM login WHERE user = '" . addslashes($f_user) . "'";
	$userchk = db_connect($sql, "Y");
	if ( isset($userchk) && ($userchk != "")) {
		if ( $userchk->pass = $f_pass ) {
			$icauser = "true";
			session_register("icauser");
		}
	}		
	
}	
?>

it causes apache.exe to crash.

when restarting the service, i get the following message 3 times:

titlebar: "apache.exe Entry Point Not Found"
message: "The procedure entry point wrong_param_count could not be located in the dynamic link library php4ts.dll."

I will get/give more info as requested.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-01-16 07:19 UTC] sander@php.net
Are you sure this isn't a dupe of #14453???
Anyway, can you simplify the script and make it self-contained?
 [2002-03-14 00:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 11:01:27 2024 UTC