-4
votes
1answer
52 views

Why is this IF executing? [closed]

There's a block of code that supposed to be a fail-safe termination point. I want to know exactly why is it that it's executing. i.e. Why is this following IF executing? Which among its bundled ...
2
votes
2answers
62 views

What could cause php value to be true and false?

I have a class with this function: public static function getSingleton($modelClass='', array $arguments=array()) { $registryKey = '_singleton/'.$modelClass; if ...
1
vote
2answers
35 views

How to generate error_log file

I am having two servers, both are hosted on hostgator. On one server (which is my own), my php code works as expected, while on another (which is of my client), the code doesn't work properly. Now my ...
0
votes
1answer
14 views

When you run a PHP debugger, and you step through an echo, should the browser output be dynamically updated?

I have a PHP file with the following contents: 1. <?php 2. $string = 'Hello world!'; 3. echo $string; 4. ?> I put a break on line 2 and line 4. I run the debugger. The browser output opens, ...
0
votes
0answers
31 views

Trying to debug phpunit unit test on cli using xdebug fails

I'm using PHPStorm which is configured to use xDebug (I can debug via the web browser just fine) I run the debugger in PHPStorm which has the idekey of 11854 and I'm trying to debug a unit test, and ...
0
votes
3answers
55 views

How to automatically stop any script and redirect to an error page if an error/warning/notice is uncaught

EDIT: about the linked answer above, it's similar but different, since my goal is to debug the error in the error page. Sometimes an unexpected error is hard to debug, since the error report is ...
2
votes
2answers
28 views

In PHP, is there a way to display human-readable information about a variable in error_log()?

I want to do something like: error_log('this is information about the variable: '.print_r($variable)); or error_log('this is information about the variable: '.var_dump($variable)); FYI, the ...
8
votes
6answers
213 views

print_r() adds properties to DateTime objects

Consider the following code sample: $m_oDate = new DateTime('2013-06-12 15:54:25'); print_r($m_oDate); echo $m_oDate->date; Since PHP 5.3, this produces (something like) the following output: ...
1
vote
1answer
30 views

Symfony 2 Debug Toolbar not showing, breaks HTML in dev environment

I really need your help with this. I don't know what I've done to break the Symfony 2 toolbar. The debug tool bars stop showing and when I look at the source code of the page, I can see something like ...
-2
votes
2answers
37 views

“Notice: Undefined offset” Error [closed]

I get these errors with WP_DEBUG enabled because of a twitter feed widget: Notice: Undefined offset: 0 in ...
0
votes
0answers
20 views

debugging codeigniter with eclipse and xdebug step by step

Have seen a few posts on Stack Overflow and Internet in general for attaching Xdebugger to Codeigniter project in Eclipse PDT . Have Installed Wamp, Eclipse PDT, and tried following the ...
0
votes
1answer
26 views

PHPMailer, DKIM, and SPF set - Emails still arriving in Junk (PHP)

I am trying to send an activation email from my website to the user. No matter what I do, the email is going straight to the junk folder. I have logged into my cPanel, gone to E-Mail Authentication ...
2
votes
1answer
62 views

How to track variable changes in PHP

Good day. I've been working on project that contains many variables and sessions and where most of the job is done "under the hood" and via ajax. The problem is that I try to debug my project and I ...
0
votes
1answer
26 views

Cant update or add new post/page nothing is working in wordpress

My site was working well last night but now nothing goes well. When I try to update existing page/post or add a new one it returns 505 internal server error and in Chrome it shows PHP code when I try ...
0
votes
1answer
16 views

Getting SQL statment sent to server after script finishes generating it with prepared statments

I'm trying to trouble shoot a problem with a prepared statement using mysqli in PHP. Is there a way to output the query that is actually sent to the server? For example if the WHERE clause to the ...
0
votes
1answer
11 views

Oodle PHP XML request returns nothing

I have found very little documentation on this API so I have came here with the hopes that someone knows how to use this thing. When I try this nothing shows up. For now I am just trying to display ...
0
votes
0answers
41 views

Debug PHP called through Javascript in Aptana

I can debug my PHP scripts using Aptana 3.4. In "Debug Configurations" I simply choose "Use specified script" and when I run that script in Firefox, it automatically breaks in Aptana. Now I'd like to ...
0
votes
0answers
14 views

xdebug is skipping lines while debugging

Using Eclipse/xdebug n Windows 2008 server. Yesterday I was able to successfully debug one php file. Today, with a very similar php file, it is skipping lines and then going off into oblivion. Code ...
0
votes
1answer
33 views

how to get price with ebay API

So I have this code, but the price of the item isn't showing up. Everything else (photo and link) is working. I tried 'currentPrice' but nothing shows up. And this is the Ebay API. I spent about two ...
1
vote
5answers
64 views

PHP function not working properly (echoing a string, simple)

I created a function to allow me to debug PHP scripts so long as a variable ($debug) is set to 1: function debug($msg) { if ($debug == 1) { echo $msg; } else { return false; ...
-2
votes
1answer
60 views

PHP mysql failed [closed]

I've written this code and I do not understand why my select statement doesn't work. This is an assignment for a PHP class, I don't want to be handed the answer, I just need to know what I am doing ...
1
vote
1answer
41 views

Exclude other scripts from debugging in PhpStorm

When I start debugging and use another script on the server (e.g. Adminer), i.e. a script outside the project that is not intended to be debugged, the script is paused by PhpStorm and following two ...
-1
votes
1answer
46 views

Debug Mode: Notice: Undefined index? [closed]

I'm working on flickr (wordpress widget). Here is code: http://pastebin.com/Qu0TCt3c This widget works fine but when i actived the WP DEBUG MODE, I got the following error in wordpress ...
0
votes
0answers
23 views

Zend debugger php5.4 - remote debugging

I cannot seem to make a connection to remote debug server I keep seeing this in the log but no joy. I see it is permission denied but do not understand for what? failed to connect to ZDD on ...
0
votes
1answer
42 views

init model from controller joomla 3.1

I try to call a model from one of my Joomla controller but that doesn't seem to work. class TieraerzteControllerDatatable extends JControllerLegacy { /** * display task * ...
2
votes
1answer
23 views

How to display XDebug errors only to my IP address?

I'm in a non-ideal situation where I have to debug a website a live website running PHP5.4 on a LAMP stack. After enabling XDebug in php.ini and setting display_errors to true, I get nicely formatter ...
0
votes
0answers
62 views

preg_match returns different values for the same match [closed]

This is the code: <?php echo preg_match('/\$/', '$'); If I run it many times, pressin CTRL+F5 on the browser, the output is "1", but sometimes it's "0"!!! I'm running XAMPP 1.8.1 on localhost ...
0
votes
0answers
16 views

PHP library for Django-like error pages

I do enjoy how Django displays error messages on development server. Backtrace, arguments, lines of code, local context, global variables. Now, back on PHP I really miss that feature. All I can get ...
0
votes
1answer
59 views

Zend Framework 2: Debugging Plugin

Relying on PHP's error reporting and backtracing is quite a pain and messages are hard to read at times. Before, I had no choice but to bear with it. Not until I found this ...
0
votes
1answer
38 views

symfony2 - debugbar missing database doctrine info

When I log in to my app the db request bar dissapears? How do I make it show that it always. shows? The screenshot at the top shows the database doctrine count, the one at the bottom doesn't. It ...
2
votes
5answers
102 views

How to debug php code while developing wordpress plugins?

I started developing few WordPress plugins on my own. While developing a plugin i am using different hooks(wp_head, add_shortcode, etc) function in the plugin. Can anyone advice me an easy and ...
0
votes
0answers
41 views

Aptana Studio command line while debugging

Can Aptana Studio 3 run php-cli commands while debugging using its context, like Firebug or Chromium runs commands inside the built-in console command line?
0
votes
5answers
47 views

How to debug UPDATE execution in mysqli driver

I've looked over a lot of posts, but I still can't figure why this simple UPDATE is failing to affect the database: $con = mysqli_connect("localhost", "username", "password", "database"); // check ...
-1
votes
2answers
47 views

Function freezes website [closed]

Any idea why this php function is causing my website to freeze? function makeAgo($timestamp){ $difference = time() - $timestamp; $periods = array("sec", "min", "hr", "day", "week", "month", ...
0
votes
1answer
31 views

PHP print_r large array to variable not working

I'm trying to print_r a large array to a file to debug it. I've tried 2 methods: $arr = get_large_array(); file_put_contents('file.txt', print_r($arr, true)); and $arr = get_large_array(); ...
0
votes
1answer
31 views

how to check (read) crul CURLOPT field of handle? [duplicate]

1) Is there any method to check if CURLOPT field of a curl handle is set and if so then what its value? Reason - I'm writing a class that should recognize if CURLOPT_POST is set. If not then dedicated ...
0
votes
1answer
27 views

How to debug response from external server?

I would like to be able to debug my application when it's receiving response from external server. I'm integrating my application with online payments systems like PayPal and PayU. Payment ...
0
votes
2answers
58 views

Is there a PHP equivalent for Javascript “debugger;” for Xdebug? [closed]

I understand that you can put the GET variable XDEBUG_SESSION_START=1 in the URL to initiate a Xdebug session for that PHP page. However I want to debug a PHP that fires off when a form is submitted. ...
0
votes
2answers
41 views

How to detect where server closed the connection? [duplicate]

There is an error on server side code ( PHP ), I know the file but it's extremely hard to debug as there are no any error messages. All what I see is response header returns: Connection:close. No logs ...
0
votes
0answers
142 views

PHP 5.4 & Zend Debugger & Zend Studio 10

I'am trying to setup php debugging. I have debian server with nginx and php5.4. I use this tutorial: Zend Debugger for Nginx & php 5.4 fpm for Ubuntu 12.04 When i finished it, i checked loaded ...
2
votes
2answers
32 views

PHP: Variable in array declaration

I'm working in PHP and calling the following function from inside a foreach{} loop. This function needs to accept $subTheme as an option parameter because the purpose is to avoid unnecessary code ...
3
votes
1answer
73 views

Does a `pry` equivalent exist for php?

I'm a bit spoiled on ruby and am used to using the amazing pry facilities for apps. I'll lock an app down to 1 thread and then let pry pop open in the httpd console and then be able to get to the ...
0
votes
2answers
36 views

Looking for options for PHP Debugging

I am looking for PHP debug options. I know there is xDebug and I know it is a good tool, but the learning curve is a bit too steep and long for me at the moment. Perhaps I will learn it in the ...
0
votes
0answers
21 views

How to open a console for debugging at a breakpoint that is variable?

I have a php script that is run on a cron task at some seemingly arbitrary times and it has a very elusive error. I would like to set a break on this such that when this situation occurs I can ...
3
votes
5answers
89 views

where to find PHP output / log

I am a beginner web developer, specifically, with PHP and some front-end techniques (HTML,CSS,JS/JQuery). I found in some situations, it's quite difficult find the bugs in PHP code. Here is one of ...
1
vote
2answers
274 views

xdebug, eclipse, centos, remote debugging - unable to stop at breakpoints

dev machine mac laptop, 10.8.3 eclipse, Juno SR2 php pdt 3.1.2.2012 remote machine parallels, vm, CentOS 6.3 php 5.4.14 xdebug /etc/php.ini file [xdebug] ...
0
votes
0answers
46 views

xdebug doesn't show php errors in the console

I'm coding PHP with PhpStorm as the ide, and xdebug I would like to see php errors / warnings when encountered during debugging. Before, I used to use zendbuger, and the errors were shown in the ...
-1
votes
2answers
38 views

Please help me fix this PHP while statement [closed]

The script below is supposed to end when the "best match" is found in a string, but even though I know it eventually is found the script keeps on running. Please help me fix my error. $end = "1"; ...
0
votes
0answers
11 views

Netbeans outputs error for first php debug trial and then refuses successive debugging requests

First time to write\debug php code, no idea why is it that hard !!!! When I first start Netbeans I only want to debug an opened script, within a project, so I start debugging, an application specific ...
0
votes
0answers
52 views

Facebook API keeps loading

Really strange, the init of the Facebook API keeps loading (page keeps loading, no output). <? // Load config require_once('config.inc.php'); // Load Facebook API ...

1 2 3 4 5 16