Tagged Questions
14
votes
1answer
5k views
How can I catch a “catchable fatal error” on PHP type hinting?
I am trying to implement Type Hinting of PHP5 on one of my class,
class ClassA {
public function method_a (ClassB $b)
{}
}
class ClassB {}
class ClassWrong{}
Correct usage:
$a = new ...
7
votes
6answers
966 views
Cannot redefine class on 'require_once'
UPDATE:
I've abandoned CodeIgniter, and the desire to build a web interface around my database application from PHP, as there was no way of getting rid of this bug...
The Exception
I get this ...
6
votes
1answer
3k views
Why, Fatal error: Class 'PHPUnit_Framework_TestCase' not found in …?
Why I'm getting this PHP error?
Fatal error: Class 'PHPUnit_Framework_TestCase' not found in ...
5
votes
5answers
2k views
PHP : Custom error handler - handling parse & fatal errors
How can i handle parse & fatal errors using a custom error handler?
4
votes
3answers
1k views
Cannot use [] for reading
In one of my scripts, I try to do the following
$data[] = self::get($row['sr_id']); // <-- line 55
However, PHP does not allow me to do this, giving me this error
Fatal error: Cannot use [] for ...
4
votes
2answers
757 views
PHP autoloading: Preventing 'cannot redeclare <class>' in all constellations?
Question
Is there a way I can make PHP ignore re-declarations of classes rather than barf up a FATAL ERROR? Or at least throw an exception? (I could easily catch it then and proceed (as well a log ...
3
votes
1answer
262 views
How do I get PHP to display Apache's 500 error page when it encounters an error, instead of a blank page?
I have apache directives set up for custom error docs for 404, 403, etc, as well as 500. However, PHP, upon encountering a fatal error, displays a blank page instead of triggering the apache 500 ...
2
votes
3answers
71 views
Catch a fatal exception and continue
I know, that by its very definition, a fatal exception is supposed to kill the execution, and should not be suppressed, but here's the issue.
I'm running a script that scrapes, parses and stores in a ...
2
votes
1answer
109 views
function imagecreatetruecolor() is not working in my server
In my website's cpanel it shows that
Apache version : 2.0.63 PHP version : 5.2.9 MySQL version :
5.0.92-community Operating system : linux
I currently installed a joomla website inside the ...
2
votes
3answers
118 views
Can a PHPUnit test expect a fatal error?
I'm writing some unit tests for a class loader, and the first test is there to assert that trying to reference a class without loading it first will indeed fail.
The test looks like this:
/**
* ...
2
votes
2answers
58 views
PHP: Implications of a abrupt termination of a request by a *fatal* error
I'm experiencing a strange situation.
My application logs lot of trace logs to a file. (I don't know exactly how, I use my frameworks logger. Can check this though)
Problems is, when an application ...
2
votes
2answers
308 views
PHP Unit Tests: Is it possible to test for a Fatal Error?
FWIW I'm using SimpleTest 1.1alpha.
I have a singleton class, and I want to write a unit test that guarantees that the class is a singleton by attempting to instantiate the class (it has a private ...
2
votes
3answers
974 views
PHPUnit : Fatal error handling
I use PHPUnit for unit tests, but when a fatal error is triggered, the script dies and I have no correct PHPUnit output.
I'd like that the PHPUnit output stays correctly formated, because it is read ...
2
votes
2answers
98 views
getting Fatal error: Using $this when not in object context in Stemmer.php on line 317
I am getting a Fatal error: Using $this when not in object context in Stemmer.php on line 317.
At the moment I am using the Stemmer class which I found on the internet to change words to their ...
2
votes
5answers
247 views
PHP: I get a completely blank page, I don't know how to debug this in PHP
I'm having some issues to debug this in php. When I include this line:
require_once("http://" . $_SERVER["HTTP_HOST"] . "/dompdf/dompdf_config.inc.php");
what I get is just a blank page, I don't ...
2
votes
3answers
740 views
Allowed memory size of 33554432 bytes exhausted (tried to allocate 93 bytes) error in php
I inserted the following code:
$counter = 1;
while($_POST['additional_contact1'] != '' || $_POST['additional_contact2'] != '' || $_POST['additional_contact3'] != '') {
...
2
votes
5answers
274 views
PHP Script not working
<?php
include("stdio.h");
function main()
{
printf("Hello World");
return 0;
}
?>
Error on line 2?
Dunno what I'm doing wrong.
1
vote
1answer
78 views
Fatal error: Call to a member function getObject() on a non-object
I'm making a Social Networking Website using this book called PHP5 Social Networking.
I'm trying to edit the profile but I get this error
Fatal error: Call to a member function getObject() on a ...
1
vote
2answers
36 views
Is it possible to turn “Notice: Trying to get property of non-object” into a Fatal Error?
If a variable is holding NULL in PHP, attempting to access a property on it results in the notice "Trying to get property of non-object". If an attempt is made to call a method on it, however, the ...
1
vote
2answers
49 views
set_error_handler() doens't work for FATAL error
I have a simple custom error handler that writes in a error log file some useful debug infos.
it's work for everything but it's not get triggered for FATAL error.
Any way to solve this?
Currently ...
1
vote
2answers
205 views
a error to use of multiupload with CodeIgniter
i have a error to use of multiupload with CodeIgniter:
What changes can, to be problem i solve?
waht do i do?
With respect
this is error:
Fatal error: Call to protected method ...
1
vote
2answers
93 views
How can I track failed file inclusions with backtrace?
Asking for decent thoughts about this:
I'd like to implement some mechanism in PHP code that can run any external code and calls a callback function if one of the inclusions fails therein (include, ...
1
vote
1answer
1k views
relative path in require_once doesn't work
I have the following structure
otsg
> class
> authentication.php
> database.php
> user.php
> include
> config.inc.php
> encryption.php
> include.php
...
1
vote
2answers
407 views
Fatal Error while calling MySQL stored function from PHP using MySQLi
Server details:
PHP v5.3.5
Using MySQLi library client api version: mysqlnd 5.0.7-dev - 091210 - $Revision: 304625 $
MySQL Server v5.5.9
I have a stored function in MySQL called ...
1
vote
2answers
354 views
Fatal error with Custom Magento Module on one server but not the other
I am creating my own custom module in Magento and during testing on a Litespeed server (PHP v5.2.14) I am getting a Fatal Error: Call to a member function batch() on a non-object in ...
1
vote
3answers
362 views
problem : PHP Fatal error: Can't connect to local MySQL server through socket
I have a problem when i run my php code (sometimes it runs successfully, but I need how to avoid it in future)
the error appears as :
PHP Fatal error: Can't connect to local MySQL server through ...
1
vote
5answers
165 views
Managing PHP Errors
I have been searching all over the net to try and find a way to catch all errors thrown by PHP (5.3)
I have been reading through the documentation and it looks like set_error_handler is what I need ...
1
vote
1answer
807 views
Handle fatal errors in PHP using register_shutdown_function()
According to the comment on this answer it is possible to catch Fatal Errors through a shutdown function which cannot be caught using set_error_handler().
However, I couldn't find out how to ...
1
vote
2answers
1k views
PHP: Call to undefined function mb_strlen() - on custom compiled PHP with mbstring enabled
I have this custom compiled PHP (v5.3.3) with the following extensions enabled (via configure):
./configure
--prefix=/usr/local/php5.3.3
--with-config-file-path=/usr/local/apache2/conf
...
1
vote
3answers
607 views
“Can't use function return value in write context” error in PHP
Fatal error: Can't use function return
value in write context in line 3,
In which cases such errors get triggered?
My program:
//QUERY VARIABLE
$query="select * form user where ...
1
vote
1answer
1k views
CakePHP - Fatal error: Call to undefined function
I get the Error
Fatal error: Call to undefined function getAvnet() in C:\xampp\htdocs\ems\app\controllers\queries_controller.php on line 23
when accessing the source file attached.
The line ...
1
vote
1answer
147 views
Serialization of objects and fatal error
Can anyone explain me, why in the session in this case we get the object with 2 properties?
set_error_handler('my_error_handler');
session_start();
$obj = new myclass();
$_SESSION['obj'] = $obj;
...
1
vote
2answers
201 views
Zend Framework view script, functions and variable scope
I am rather new to ZendFramework and am trying to figure this out. In my view script (index.phtml), I have this bit of code that says:
<?php
function getErrorString($element)
{
echo ...
1
vote
2answers
75 views
How to tell when a PHP Fatal Error is really a veiled Syntax Error, and when do they happen?
Considering the following PHP class:
class someObject {
public function broken(){
return isset($this->something()) ? 'worked' : 'didnt';
}
public function something(){
...
1
vote
2answers
326 views
Error: Class 'Haml' not found… trying to use Haml (Kohaml) with Kohana
Can't for the life of me figure out what I'm doing wrong...
Downloaded Kohaml from http://github.com/transphorm/kohaml
Dropped it into modules/kohaml
# My Bootstrap reference
'kohaml' => ...
1
vote
6answers
1k views
How to recover from a fatal error “Allowed memory size exhausted”
Do you know any solution to recover from the PHP fatal error : "Allowed memory size ... exhausted"
I have a shutdown function that is called when a fatal error appear. This function create an ...
1
vote
3answers
475 views
Fatal error: Maximum execution time of 400 seconds exceeded
I have a PHP script that fails when executing a long mysq_query. The error message is:
Fatal error: Maximum execution time of 400 seconds exceeded in....
I use XAMPP for windows and I have changed ...
1
vote
3answers
4k views
Magento Fatal Error: Call to member function getSku() on a non-object
I have come across a bizarre error in the Magento shop I'm developing and despite my inquiries online, it appears no one else has ever seen this exact error under the same circumstances. Lemme ...
1
vote
4answers
4k views
Fatal error: Using $this when not in object context
here is the part if having error.
Fatal error: Using $this when not in
object context in
/pb_events.php
on line 6
line 6 is: $jpp = $this->vars->data["jpp"];
function ...
1
vote
1answer
516 views
Point ob_start to a function inside a class to capture fatal errors
I'm trying to create a generic class in PHP that will provide a way to call a web service, parse the returning XML and return a JSON object.
I ran into fatal errors on servers that do not support CURL ...
0
votes
1answer
43 views
Magento 1.3.2.2 - Fatal error: Call to a member function getUsername()
We are experiencing a problem with Magento 1.3.2.2 which is pretty weird and we can’t figure out what it is.
It would be really helpful if there is an expert who can give us a hint here.
Let me ...
0
votes
2answers
36 views
Undefined function my_strip() [closed]
I am usins Wordpress and I got this:
Fatal error: Call to undefined function my_strip() in ...
0
votes
1answer
60 views
Fatal error: Call to a member function getOne() on a non-object
I'm new to php oop.here i wanted to do database connectivity with singleton class but i got error like this:
Fatal error: Call to a member function getOne() on a non-object in ...
0
votes
1answer
37 views
Fatal error: Call to undefined function INET_ATON()
I'm successfully storing an IP address in my database using the the INET_NTOA function as follows:
$sql="INSERT INTO $tbl_subnets(address) VALUES(INET_NTOA('$address')
However when trying to ...
0
votes
1answer
79 views
Vanilla Settings Errors
http://reps.michebagshows.com/forums/
Recently, our customer forums popped up with this slew of errors from settings.php in the Vanilla forum software. We have no idea how this happened, as none of ...
0
votes
2answers
48 views
Suppress the message “Fatal error: Maximum execution time of 30…”
I'm using register_shutdown() to provide show a page if upload takes a long time causing a PHP timeout. I really don't need to show the fatal error to the user, how can hide that message?
0
votes
1answer
33 views
Server Error When Programming PHP on Linux [closed]
Possible Duplicate:
How to get useful error messages in PHP?
I'm programming php on fedora 16.When there is an error in my code and run it, I'll see Server Error and when I check ...
0
votes
2answers
46 views
PHP Fatal error: Allowed memory size
Given a large set of unordered images in the format either jpg or png, I wanted to create a PHP script that would firstly filter all folder contents for the allowed formats, copy them to a new folder ...
0
votes
2answers
44 views
Smarty templates containing inline curly brackets error
I have some code that I am working on that has inline values such as {32,15} for some JavaScript, for a client. However it always causes an fatal error, in these cases. Is there a way that I can ...
0
votes
2answers
51 views
Catching “Call to a member function foo() on a non-object” errors
Is there a way to catch Call to a member function foo() on a non-object in PHP? It does not sound that serious (as far as fatal errors go), but the shutdown function does not seem to be called at all ...