Tagged Questions
The die tag has no wiki summary.
12
votes
1answer
134 views
PHP: Modern version of “or die();”
When I first started learning PHP, I would write queries similar to the one here:
$result = mysql_query("SELECT * FROM `table`") or die(mysql_error());
What is the best, present-way to achieve the ...
12
votes
3answers
2k views
How can I get around a 'die' call in a Perl library I can't modify?
Yes, the problem is with a library I'm using, and no, I cannot modify it. I need a workaround.
Basically, I'm dealing with a badly written Perl library, that exits with 'die' when a certain error ...
10
votes
5answers
763 views
Can I catch exit() and die() messages?
I'd like to be able to catch die() and exit() messages. Is this possible? I'm hoping for something similar to set_error_handler and set_exception_handler. I've looked at register_shutdown_function() ...
8
votes
5answers
396 views
Perl built in exit and print in one command
I know I can die but that prints out the script name and line number.
I like to do things like die 'error' if $problem;
Is there a way to do that without printing line number stuff?
It would be ...
8
votes
2answers
915 views
Forking subprocesses in Perl unit tests stops prove; Test::Harness exiting
I have been trying to use the Perl utility/module "prove" as a test harness for some unit tests. The unit tests are a little more "system" than "unit" as I need to fork off some background processes ...
7
votes
5answers
121 views
Multiple instances of header() + die() in single code line
I'm trying to manipulate a PHP script so that it redirects to a particular URL instead of giving me a MySQL error. So I went from this...
$qs = mysql_query("SELECT url FROM $table WHERE `id` = ...
7
votes
3answers
3k views
jQuery: Binding and Unbinding Live Click Events
So there are two constraints to my question:
I must use an external function call in my click event, and
I must use a live click event, rather binding a typical click event.
So my problem is that ...
7
votes
4answers
321 views
Is there a C equivalent for Perl's Carp module?
In some projects I've done in C, I've liked using the following macros which work similar to Perl's warn and die subroutines:
#include <stdio.h>
#include <stdlib.h>
#define warn(...) \
...
6
votes
2answers
343 views
How can I make Perl die if a warning is generated?
I would like my script perl to die whenever a warning is generated, including warnings which are generated by used packages.
For example, this should die:
use strict;
use warnings;
use ...
5
votes
2answers
208 views
How do I handle both caught and uncaught errors in a Perl subroutine?
This is a followup to "How can I get around a ‘die’ call in a Perl library I can’t modify?".
I have a subroutine that calls a Library-Which-Crashes-Sometimes many times. Rather than couch each call ...
4
votes
1answer
121 views
PHP Does die() do an ob_end_flush()?
I can't seem to find a good answer on this anywhere. If I am running output buffering, and a die() is fired, does that kick off an ob_end_flush() as well?
4
votes
1answer
182 views
What is the correct way to die with an error but without a stack trace in perl?
I am writing a perl script, and in the part where I am checking the options that the user supplied on the command line, I want to exit with an error explaining what was wrong with the options. In this ...
4
votes
6answers
267 views
PHP Die question
Just a quick question. Say a call a method like so
mysql_pconnect("server","tator_w","password")
or die("Unable to connect to SQL server");
Can I have the 'die' call a method rather ...
3
votes
7answers
119 views
Handling errors and continuing execution in PHP script
I don't want to "die()" when it concerns only a small part of the script and I tried:
$result = mysql_query($sql) or echo("error with responses");
But it generated an error. How do I just give out ...
3
votes
2answers
154 views
Stop a Function, jQuery
I'm using this blink function
(function($)
{
$.fn.blink = function(options)
{
var defaults = { delay:500 };
var options = $.extend(defaults, options);
return ...
3
votes
4answers
163 views
Can the Perl compiler tell me if I have an unchecked exception in my code?
Is there a way in Perl to declare that a method can throw an error (or die)?
EDIT: What interests me the most is a way to get the compiler or IDE to tell me I have an unchecked exception somewhere in ...
3
votes
5answers
2k views
Perl: catch error without die
I'm playing around with error handling and got a little problem.
I connect with a database using the DBI module.
I do my own error handling by using a subroutine that I call upon an error.
I can ...
2
votes
3answers
97 views
PHP: Utilizing exit(); or die(); after header(“Location: ”);
I have a user login/registration system that simply uses
// execute queries, set cookies, etc. here
header("Location: " . getenv("HTTP_REFERER"));
I recently read a post about exit(); and die(); ...
2
votes
3answers
116 views
How can I prevent my perl script from terminating if an exception is thrown in a module it uses?
I have a perl script, using standard-as-dirt Net::HTTP code, and perl 5.8.8.
I have come across an error condition in which the server returns 0 bytes of data when I call:
...
2
votes
3answers
76 views
How can I eliminate the use of die() in this script, so that the HTML at the bottom still runs?
When I initially wrote this script, the site design did not require the execution of the html after the die() functions. Now it does. I realize I can copy the end of the HTML code into each of the ...
2
votes
3answers
180 views
Does “mysql_query() or die()” leave open mysql connection?
Does "mysql_query() or die()" leave open mysql connection?
My thought is that it calls die() but it never calls mysql_close() on the connection...
Thanks.
2
votes
4answers
142 views
PHP: die or check results?
I am implementing LDAP with PHP which is going fairly easily I must say. However I have a question regarding the use of die() or checking function returns. From the below code (taken from here), what ...
2
votes
6answers
1k views
What is the difference between echo('exit'); die; and die('exit');?
I have seen some code do this:
if(something){
echo 'exit from program';
die;
}
...more code
And others that just use die:
if(something) die('exit from program');
...more code
Is there ...
2
votes
8answers
514 views
Java setter, getter (rolling a die)
I have some questions about java. There are two questions in the code (I left them as comments).
Also what is the purpose of using setting and getting methods? Could you please explain it very ...
2
votes
3answers
655 views
How can I redirect output of die function to a file in Perl?
I want to redirect the die messages to a separate file so that I can compare that file later to determine what went wrong.
But this code gives me errors:
$ cat test.pl
use strict;
use warnings;
my ...
2
votes
4answers
83 views
PHP problem with die()
So, I have this code:
} else {
$photograph_moderation = new PhotographModeration($this->photograph_id);
$photograph_moderation->purgePhotograph();
...
2
votes
1answer
218 views
How do I test for an exception type in perl?
How can I check what kind of exception caused the script or eval block to terminate?
I need to know the type of error, and where the exception occurred.
2
votes
4answers
2k views
How to include files with die(); function?
file1.php and file2.php with die(); function.
include.php:
<? include 'file1.php';
include 'file2.php' ?>
file1.php
<? echo 'included'; die(); ?>
file2.php
<? echo 'not ...
1
vote
5answers
104 views
Perl: How to “die” with no error message?
I run a simple file test in perl with the code below:
my $f1 = "$pre_file";
unless (-e $1) {
print "\n Pre_check file does not exists! \n";
die;
}
It prints the following output:
...
1
vote
4answers
200 views
Disabling C++ exceptions, how can I make any std:: throw() immediately terminate?
This C++ program is a CGI script, I have no desire to deal with exceptions. I'd rather get a marginal performance boost and let the OS (Linux) handle cleanup after the process dies.
I am using the ...
1
vote
1answer
87 views
How can i prevent eval and other errors to 'die'?
I've made a daemon acting like a cron.
That daemon will search all the modules pages for a file called 'modulename.cron.php' and execute them via eval().
My problem is that if some error occurs, i ...
1
vote
4answers
142 views
how to get a detailed error report when a php-mysql script fails?
How do i get a detailed error description during a php-mysql script run?
I have the following statements where the script fails and displays the custom error message - the contents of the "or die".
...
1
vote
4answers
189 views
MySQL update or insert or die query
Is it valid to do something like this, I never see more than 1 or operator:
$insert = 'INSERT into fhours (' .$cols . ') VALUES ('.$query.')';
$update = sprintf("UPDATE fhours SET %s WHERE ...
1
vote
1answer
42 views
How important is “or die” in a mysql statement with PHP?
I've written a lot of my code already, but now I'm starting to question - how important is the statement such as:
or die(mysql_error());
In all my of queries?
I have it almost nowhere at the ...
1
vote
3answers
279 views
How can I run a system command and die if anything is written to STDERR?
I'm writing a Perl script which uses an external script. The external script must run from a specific directory so I found the following useful:
use IPC::System::Simple qw(capture);
my @args = ...
1
vote
1answer
93 views
death of an activity re-launches the process
I have a set of activities starting from my home screen through a few list activities to my final screen.
When i have an exception for whatever reason i get the "Sorry....yada yada yada, must be ...
1
vote
2answers
106 views
Newer version of “… or die(…”
A long time ago I used to use "or die" in my PHP code. Especially like this:
$q = mysql_query('......') or die(mysql_error());
Obviously, that's pretty shameful these days, but the X or Y principle ...
1
vote
3answers
204 views
Appropriate use of die()?
Note: I am using output buffering. It's just wrapped in the head() and foot() functions.
I create pages in my current PHP project by using the following template:
<?php
include 'bootstrap.php';
...
1
vote
4answers
460 views
How to execute a perl script within php and capture error messages?
I am trying to execute a Perl script like so:
/usr/bin/ec2-consistent-snapshot 'vol-dr3131c2'
When the Perl script fails it exits using 'die' and prints out an error message. I can see that error ...
1
vote
5answers
164 views
Specify page/line when throwing die()?
I am using PHP 4, the only way I know of to cause an error and stop everything is calling die(). But in case I run into the error later and don't remember where its coming from I would like to specify ...
1
vote
9answers
488 views
How Can I Display Static HTML After I've Used die() in a PHP Block?
Let's say I have some code like this:
<html>
<head><title>Title</title></head>
<body>
<?php
if (!$someCondition){
die();
}
else{
#Do something
}
?>
...
0
votes
1answer
44 views
JQuery alternative to .die().live() in ajaxed content?
I have a form that's ajaxed in, and within that form it generates new inputs, and these new inputs have events attached to them by the .live() within the initial ajaxed form.
So, the problem I'm ...
0
votes
3answers
50 views
Rebind a live() click event after using die()?
I haven't been able to solve my problem searching through Stack. I have my live() function below. You can see how I want to stop the button being clicked a second time while the function is running, ...
0
votes
4answers
76 views
jQuery - Run jQuery script each time a “.load” function is called?
I am developing a control panel for a project, and I am having a bit of a conflict with some of my code. I am running some jQuery so that every link will insert the content of the requested page into ...
0
votes
2answers
91 views
Php: kill script or premature return?
In PHP, i can use die() to kill the whole script. However, I want the script to execute up to a certain point and quit without the whole script dieing.
Something like this:
echo "Hello, what is your ...
0
votes
1answer
76 views
jquery unbind function event once executed
Hi Folks,
Please help me to fix this : Suppose we call the same javascript function from anchors but with different parameter
<a id="edit1" onclick="foo(1)"></a>
<a id="edit2" ...
0
votes
1answer
141 views
FMS server died daily while enable rtmfp
All
I have a fms 3 server runing a video chat room application. It goes well except everyday it will die once or twice. After restarting the fms server, everything goes working again.
I really need ...
0
votes
1answer
85 views
Stopping all javascript execution
Is there an equivalent to the php die() function for javascript that stops all javascript (including future callbacks for ajax requests, timeouts etc...) from running?
(NOTE: I can't use breakpoints ...
0
votes
3answers
338 views
$.live() and $.die() binding and unbinding
I am having some trouble with jquery's live and die methods.
http://jsfiddle.net/fC5Nr/4/
I need to attach an event handler to clicking a link - and I want to unbind the handler while the function ...
0
votes
2answers
103 views
die() on single elements
I've attached some live() listeners in order to automatically make ajax calls for every link with ajax in the url:
$("document").ready(function() {
$('a[href^="/ajax"]').live('click', call);
});
...