0
votes
2answers
35 views

uncaught PHP exception causing 500 server error

In a newly installed MAMP, an uncaught PHP exception is causing an HTTP 500 server error, instead of being trapped by PHP. For example, this program causes a 500: <?php throw new Exception(); ...
0
votes
0answers
21 views

Deciding on how to split up different types of Exceptions [closed]

I have a Database interface with these methods: createTable tableExists dropTable insert update select delete getInsertId A lot of those can fail. In my first implementation I'm basically just ...
0
votes
1answer
12 views

Unit test exception-messages formatted with sprintf

How can I test if an exception throws the expected error message, when I format my error messages like this: throw new \Exception(sprintf('Random string: "%s".', 'blablabla')); Obviously testing ...
-1
votes
4answers
34 views

php Exception By getting a class that might exists

i try to make a function that load classes that are in the array. but it can be the case that the class don't exists, in that case i want to get an error string that an be places on that place and if ...
2
votes
1answer
30 views

How to set an own Exception on wrong database connection?

When I'm trying to connect to wrong database I'm getting standart kohana exception message like this: Database_Exception [ 1049 ]: Unknown database 'mywrongdatabase' ...
1
vote
1answer
18 views

Creating new Exception classes, new arguments

I am writing some new code in which I want to use some self defined exceptions. For instance TableCreationFailedException. Since I'm using PHP the base class this is deriving from is the Exception ...
-1
votes
2answers
37 views

warning instead of php exception?

I have this piece of code: try { foreach($obj_c->getGalleries($db_conn1) as $gallery) { $gallery->Save($db_conn1); } $k = 0; ...
2
votes
1answer
45 views

$.ajax error cannot catch thrown exception from php

$.ajax({ type: "POST", url: "functions/add_vendor.php", data: { vendor_info_json : vendor_info_json }, success:function(result) { alert('Successfully ...
0
votes
3answers
32 views

Break from try/catch block

Is this possible in PHP? try{ $obj = new Clas(); if($obj->foo){ // how to exit from this try block? } // do other stuff here }catch(Exception $e){ ] I know I can put the other ...
2
votes
2answers
41 views

Invalid argument supplied for foreach; PDO

I have seen this and this, but neither of these help my situation, this is why I am knowledgeably opening a question that has been asked before. My code is: <? $getGame = ...
0
votes
0answers
85 views

Uncaught CurlException: 35: Unknown SSL protocol error in connection to graph.facebook.com:443

I keep getting this error, and it seems like it has appeared out of nowhere. I've been working at my project for some weeks, and this didn't show up until now. When I try to run my app on localhost, ...
2
votes
1answer
37 views

PHP DRY Throwing InvalidArgumentException

In a framework I am building, I am moving towards making my code more testable as I was previously addicted to the MVC+Singleton pattern and had static classes galore. Since then, I have started to ...
0
votes
2answers
55 views

Yii transaction not rollbacked

i have the following piece of code and i pass it some data to generate an exception and test if the transaction rollback is happening. It seems it's not and i'm not sure why. can someone help me? ...
0
votes
0answers
30 views

PHP SQLite website working with external content on one server but not others

Currently I have a website that works fine under a Mint 14 (Ubuntu) Virtual Machine but fails to correctly run on other machines such as Windows using XAMPP or another Ubuntu Server. When on failing ...
1
vote
2answers
42 views

How to force catching exceptions PHP

How to force catching exceptions in PHP? I want to force exception catching if method may return and exception and is not added to try catch block. For example: If an exception is not thrown ...
1
vote
1answer
38 views

Doctrine 2: Entity has no field or association named x

I've some troubles while using doctrine to do a simple request by DQL. Can't find any error in my code, so I ask my question here. Here is the dcotrine query I tried to execute : ...
0
votes
1answer
75 views

Is it me or there's a bug in PHP DateTime?

I've just encountered on a problem I never though would exist. I have a form that submits dates in the following format 04/28/2013 11:00. On the user front-end I'm using jquery datetimepicker and on ...
0
votes
0answers
17 views

disable soapserver <trace> output

I am using php-wdsl-creator as my SOAP server. On one of my environment output is like <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" ...
1
vote
1answer
27 views

How to know when exception is throwned in destructor in php

Let say I have some classes to work with MVC. The base class for controller have a constructor and destructor. class BaseController { public function __construct() { ob_start(); } ...
0
votes
1answer
17 views

Do LDAP functions in PHP throw exceptions?

I want to know if LDAP functions throw exceptions, I've searched but couldn't find it. Also, how do you know if certain functions of PHP throw exceptions? Thanks!
1
vote
1answer
65 views

CodeIgniter create new custom exception

I'm trying to create a custom exception to return a correct message based on $_FILES[..]['error'] codes. I have extended the CI_Exceptions class: class MY_Exceptions extends CI_Exceptions { ...
0
votes
1answer
33 views

How do I show the line that caused the exception, not where the exception occured?

If a function throws an exception because the calling code does not call it properly, how do I make the error show the file and line number of the calling code instead of (or in addition to) the line ...
0
votes
1answer
85 views

Symfony2: There is no extension able to load the configuration for

I am building an extension to load config files from all installed bundles. my Extension looks like this: namespace Acme\MenuBundle\DependencyInjection; // use ... use ...
2
votes
1answer
53 views

Exception handling problems in php

I was trying out PHP exceptions for my project. But it turns out that the exception is thrown successfully but not being caught successfully by the code I wrote. The code: try{ ...
0
votes
4answers
105 views

Why exceptions have to be thrown manually?

I have tried this in PHP and C++ so my question is specifically about them only. Why do we have to throw exceptions ourself and they are not thrown automatically when an exception issue occurs. PHP ...
0
votes
1answer
25 views

why error_log generate a RuntimeException only with phpunit's --process-isolation

i had a few tests which code being tested outputed some error_log information (since i'm testing failures as well, this is expected) e.g. <?php Class X { function dosomething(){ ...
0
votes
0answers
22 views

IOException: Stream closed when having several PHP Portlets in Liferay

following steps lead to the error: a liferay page that has e.g 3 PHP Portlets(A, B, C) added portlet A is the first added, B the second ... each PHP Portlet contains a <form> element I ...
0
votes
1answer
35 views

ZendSoapServer looses Error Code when throwing an Exception / SoapFault

I have a Zend Backend & a Zend Frontend, both communicating over SOAP. An Exception on the backend, should throw an Exception / SoapFault on the Frontend. This works with the Error-Message, but ...
0
votes
0answers
41 views

Swift_RfcComplianceException on valid email address, works in Windows not in Ubuntu

I'm running into what appears to be a rather infamous issue with SwiftMailer: Fatal error: Uncaught exception ‘Swift_RfcComplianceException’ with message ‘Address in mailbox given ...
3
votes
2answers
50 views

Could not catch exceptions created from errors

I am running PHP 5.4.12 on Ubuntu 12.10. I am using an error handler to turn PHP errors into exceptions so I can handle them. However, I am finding that while I can turn errors into exceptions, there ...
-2
votes
2answers
41 views

Excluding IP addresses from Country Redirection

I have this block of code that currently redirects anyone in Canada to the Canadian version of our site: <?php require_once('geoip.inc'); $gi = geoip_open('GeoIP.dat', GEOIP_MEMORY_CACHE); ...
0
votes
0answers
29 views

PHP Exception message thrown with different charset

I use utf-8 for default charset. It is set in both in PHP.ini and header. I require the Redisent library and catch exception it throws. And when I display an error message it is always in Windows-1251 ...
2
votes
2answers
53 views

Retrieve Error Message with array

I have using a version of GoCardless's API in PHP to process payments on my website. However when their API returns an error I would like to display the user more effective errors. I have got half ...
0
votes
0answers
235 views

Laravel Handle Exceptions

I am using the Stripe API and Laravel together. If Stripe detects an error charging the card (such as using a test credit card number that throws an invalid security code error), the API bindings are ...
0
votes
0answers
30 views

Properly Handling/Throwing Errors in API Written in PHP

I'm working on putting together an api and was wondering what is the proper way to catch and deliver errors (Invalid parameters supplied, resource not found, etc). I understand this may be somewhat ...
4
votes
3answers
149 views

Convert API errors codes to exceptions

I'm working on a PHP interface to some API which can return many (up to one hundred) different error codes. My interface is supposed to throw an exception when such a code is encountered. My PHP is a ...
0
votes
3answers
66 views

How to catch require_once/include_once exception?

I'm trying to do a code similar this one: <?php $includes = array( 'non_existing_file.php', //This file doesn't exist. ); foreach ($includes as $include) { try { require_once ...
1
vote
3answers
62 views

Best practices: Use of @throws in php-doc, and how it could be handle

Let's say I have a class with a method like this: /* * * Loads the user from username. * * @param string $username The username * * @return UserInterface * * @throws userNotFoundException if ...
0
votes
1answer
23 views

How do I configure php/apache2 to display exceptions but not stack traces?

What error reporting combination is required to display exceptions but not full stack traces? ie: throw new Exception("This is an exception"); Show "This is an exception" but not the full trace ...
0
votes
1answer
72 views

php: try-catch not catching all exceptions

I'm trying to do the following: try { // just an example $time = 'wrong datatype'; $timestamp = date("Y-m-d H:i:s", $time); } catch (Exception $e) { return false; } // database ...
0
votes
1answer
153 views

How Postgres “RAISE EXCEPTION” gets converted into PDOException?

I am trying to figure out which "parts" of "RAISE EXCEPTION" statement gets mapped into which "parts" of PDOException. Can some one explain "who" and "how" perform this conversion (or better yet, ...
-1
votes
1answer
63 views

PHP: detect if we are inside an outer try..catch block

Is possible to tell if we are inside an external try..catch block or not? Example code (please take is just as an example): <?php class Foo{ public function load($id) { try{ ...
0
votes
1answer
80 views

Symfony2 - Not running catch block in controller

I'm having a problem with an exception in my Symfony2 controller... I'm trying to catch a NotFoundHttpException, but the catch block... just isn't happening, it goes to the standard Symfony2 exception ...
4
votes
1answer
1k views

whatsapp api request code not executing and not returning a request code

I am trying to implement the whatsAPI but I always get this error "There was a problem trying to request the code". Here is the full error that is showing in my console: ####start of error ...
0
votes
1answer
281 views

SoftException in Application.cpp: Could not execute script

Errors suddenly occur when I open magento site; every page is blank. There is no error generated in mageto error log file, but in php error log I have found the following: SoftException in ...
0
votes
3answers
76 views

Log caught exception with stack trace

If I don't catch an exception in PHP, I get a helpful error message in my error.log file with a stack trace. For example, if I run: <?php function foo() { throw new Exception('Oh no!'); } ...
0
votes
0answers
298 views

OAuthException: An active access token must be used to query information about the current user

I've this error, but not always. (I use PHP SDK, latest version). If I'm logged into facebook and i try to register and login, then the app say it's ok! Also if i'm not logged into facebook, the app ...
1
vote
3answers
43 views

PHP __autoload() with exception handling - waste of time?

I'm a bit new to OOP and I'm working on a 'framework' for my own application. I have my own autoload function which looks like below.. as well as an exception handling object. I won't be using any 3rd ...
0
votes
0answers
61 views

Which log level should I use for exceptions in PHP?

I have a script in PHP. I insert some data to a MySQL database, using Zend_Db class. I want to catch exception of inserting data to the database. The script is: try{ ...
11
votes
8answers
6k views

PHP robust include to handle errors?

I have a PHP app "index.php" that, for various reasons, needs to run other PHP scripts by using include_once on that other script. That other script isn't very stable, so is there some way to do a ...

1 2 3 4 5 10