ID: 11624
User Update by: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Open
Bug Type: Reproducible crash
Operating system: Thanks
PHP Version: 4.0.6
Description: memory error
It works now, thanx. All i have to do now if figure out how to get the input working.
Previous Comments:
---------------------------------------------------------------------------
[2001-06-23 06:06:56] [EMAIL PROTECTED]
Does this happen with PHP 4.0.6 ?
---------------------------------------------------------------------------
[2001-06-23 04:06:27] [EMAIL PROTECTED]
Because it happens with both submit and whatever send the polling data I think it may
have to be in the function.php file. Regretfully neither my friend nor I know php
THAT well.
---------------------------------------------------------------------------
[2001-06-23 03:56:40] [EMAIL PROTECTED]
Because it happens with both submit and whatever send the polling data I think it may
have to be in the function.php file. Regretfully neither my friend nor I know php
THAT well.
---------------------------------------------------------------------------
[2001-06-23 03:49:56] [EMAIL PROTECTED]
Because it happens with both submit and whatever send the polling data I think it may
have to be in the function.php file. Regretfully neither my friend nor I know php
THAT well.
---------------------------------------------------------------------------
[2001-06-23 03:48:29] [EMAIL PROTECTED]
<?
include("functions.php");
if (! isset($HTTP_POST_VARS["op"]))
$op = strtolower($HTTP_GET_VARS["op"]);
else
$op = strtolower($HTTP_POST_VARS["op"]);
switch($op) {
case "":
printHeader("$site_title - Submit News");
printMessage("Submit News", "Got a hot story? Fill in the details here and
submit it for review. An
unruly mob of $site_title editors and readers will poke, prod,
prick, and preen
your submission and, if the general consensus is that it doesn't
suck, it just might
get posted to the front page. Remember to check your spelling,
grammar, and links!");
printPostNews(0);
printFooter();
break;
case "preview":
printHeader("$site_title - Preview Submission");
printPostNews(1);
printFooter();
break;
case "post":
postNews($userinfo["user_id"], $HTTP_POST_VARS["topic"],
$HTTP_POST_VARS["section"], $HTTP_POST_VARS["title"], $HTTP_POST_VARS["department"],
$HTTP_POST_VARS["text"], $HTTP_POST_VARS["text2"], $HTTP_POST_VARS["format"], 1);
printHeader("$site_title - Submission Posted");
printMessage("Submission Posted", "Your submission has been posted to the
queue. $site_title editors and readers can now view it, rate it, and decide whether or
not they think it deserves to show up on the front page. Thanks!");
printFooter();
break;
}
?>
---------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view the rest of the
comments, please view the bug report online.
Full Bug description available at: http://bugs.php.net/?id=11624
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]