Menu
  • HOME
  • TAGS

Curl with XDebug on NetBeans

php,curl,netbeans,xdebug

I suppose that when you set xdebug.remote_autostart = 1, Xdebug will always attempt to start a remote debugging session and try to connect to a client (even if the GET/POST/COOKIE variable was not present). May be, in your case, Xdebug try to connect Netbeans but is unable to complete the operation,...

php5_invoke xdebug: no action - module was disabled by maintainer for apache2 SAPI

php,apache2,xdebug,linuxmint

I managed to manually activate again, the solution is to create a shortcut xdebug.ini file and paste it in the loading extensions folder. Create a shortcut xdebug.ini file to your desktop: /etc/php5/mods-available/xdebug.ini The contents of this file is: zend_extension=xdebug.so Copy the shortcut created on the desktop to the folder: /etc/php5/apache2/conf.d/...

Disabling xdebug when running composer

php,composer-php,command-line-interface,xdebug

I don’t think there is an option to configure PHP so it can load different configurations according to the targeted script. At least, not without duplicating .ini files... However, you can add thoses options when running composer with php: php -n -d extension=needed_ext.so composer.phar -n will tell PHP to ignore...

How to prevent Netbeans 8 from stopping on the first line when debugging a PHP Application

php,xdebug,netbeans-8

Go to Netbeans -> Tools -> Options -> PHP -> Debugging, and uncheck the 'Stop at First Line' checkbox.

PHP Netbeans breakpoints only hit for requests from debug session initiated browser

php,codeigniter,netbeans,xdebug

After few researches and tweaks I was able to configure this. First you need to add xdebug.remote_autostart = 1 xdebug.idekey = "netbeans-xdebug" to php.ini to auto start the debug session without XDEBUG_SESSION_START=netbeans-xdebug and Netbeans only listen to above ide key in default. Then you should enable Do not open web...

xdebug ignoring error suppression - scream not installed

sublimetext3,xdebug

I don't have sublime text, I'm a PhpStorm fan, so I can't verify anything for you. However, you should be able to add a break_on_exception configuration that doesn't include Notice, Warning, etc., and see if that works for you: http://kerryritter.com/quickstart-guide-to-debugging-php-in-sublime-text-3/ "break_on_exception": [ // E_ERROR, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR "Fatal error", //...

How to generate PHP Code Coverage Reports from xdebug output

php,phpunit,code-coverage,xdebug

You cannot get fine-grained code coverage data from an analysis of profiling data. The latter only has the information that a function or method has been executed. While that is sufficient to calculate a weak variant of function coverage and method coverage it is not enough to yield fine-grained line...

Setup Xdebug and PHPStorm with remote server

php,phpstorm,xdebug,remote-debugging

It would seem I need xdebug.remote_connect_back because I don't have a static IP. I'll post again after I have them add it and it doesn't fix it.

Xdebug with PHPStorm 8 — opens WRONG file at non-existing breakpoint

debugging,phpstorm,xdebug

Check the configuration on PHPStorm stop at first line property and disable it After that go to Run >> Break at first line in PHP scripts Try turning it ON and OFF few times. Sometimes it is get stuck in between: showing OFF but in reality it is ON. This...

Is it possible to use the MVC path in XDebugs profiler outout filename?

php,model-view-controller,xdebug,profiler,kcachegrind

The answer was to use %R - I found the list of string replacements here Xdebug Settings under the trace_output_name section. It seems that the same replacers can be used for the profiler output names as well. Name your files like this in the php.ini - "cachegrind.out.%R" to get the...

How to debug in PHPStorm 7.1 with built in webserver using Symfony command line tool

php,symfony2,intellij-idea,xdebug,phpstorm

figured it out.. it turns out i shouldn't create a run configuration at all.. i just had to click on the listen button: 1) Configure xdebug to attempt to debug every single script (xdebug.remote_autostart = 1) 2) Use "Phone handle" icon in IDE to start listening for debug connections (e.g....

How to run PHP code in Zend Studio 12?

php,configuration,xdebug,zend-studio,zend-debugger

Your server must be running the Zend Debugger or Xdebug in order for remote debugging and profiling capabilities to function. The Zend Debugger comes bundled with Zend Studio and Zend Server. For instructions on installing and configuring Xdebug, see Installing Xdebug and Configuring Xdebug. You can read more in: http://files.zend.com/help/Zend-Studio/zend-studio.htm#running_php_web_pages.htm...

PhpStom + XDebug + Codeigniter (MVC)

php,codeigniter,xdebug,phpstorm

Accordingly to your comment .. the problem seems to be in incorrect value of "Host" field in Settings | PHP | Servers (1st screenshot) -- it should be just domain/host name and not actual URL (compare with "Server name" filed on 3rd screenshot) -- just remove /~*** part. The path...

PhpStorm 8 Interpreter reads wrong php.ini when looking for xDebug on a Vagrant machine

php,vagrant,phpstorm,xdebug

Well, PS is supposed to look at the Cli config, because it executes the PHP binary other SSH. I have a separate ini file for each PHP Module and I use the same in Web Server and Cli configuration. In my php5/cli/conf.d folder I have symlinks pointing to the modules...

Does xdebug affect the PHP syntax (NOT its behaviour) in any way?

php,xdebug

Short answer: no, xdebug doens't change the syntaxis of PHP in any way. It allows to alter some behaviour (but that is not what you are interested in). Therefore there is no special 'xdebug-style parser' needed....

How can I debug my docker container with phpStorm

php,docker,phpstorm,xdebug,boot2docker

Your Docker container can't see your PHP Storm IDE with the IP 127.0.0.1, typically the host is 172.17.42.1 from within a container. Also remote_connect_back won't work well probably. Try setting it up like this: xdebug.remote_host=172.17.42.1 xdebug.remote_connect_back=Off You might need to look for a proper way to know the host's IP...

Problems with Xdebug failing to connect with PHPStorm

php,debugging,phpstorm,xdebug,remote-debugging

Port 9000 (which I was using) is blocked on the remote server. It took way to long to figure out because I don't have direct access to the server. It was fixed by asking the client to ask their host to remove the block. @lazyone 's comment helped me by...

NetBeans and Zend Framework debug

debugging,zend-framework,netbeans,zend-framework2,xdebug

There are two php.ini in WAMP Server one reside in Apache folder and other one is reside in PHP Folder. So you have to apply changes on both php.ini.

xDebug calls nonExisting properties

php,zend-framework,xdebug

Xdebug assigns properties whilst debugging. You could add something to check for the composites property? public function __get($property) { if (property_exists($this, $property) || $property == 'composites') { return $this->$property; } throw new InvalidPropertyException("Property $property not found."); } Just throwing it out there as a suggestion- might work? :) Maybe you...

How do I clear geben call breakpoints?

debugging,emacs,xdebug,geben

While in emacs, you can search for the entire list of key binds with C-h b (pressing Ctrl+h release and then press lowercase b), if you search (with C-s) you can find the Geben specific keybindings. One of the bindings is: d geben-breakpoint-list-mark-delete and x geben-breakpoint-list-execute But these keybindings are...

xdebug and MAMP horror show

php,xdebug,mamp-pro

fixed this by changing one line in the php.ini file from: xdebug.remote_host=localhost:8888 to: xdebug.remote_host=127.0.0.1:8888 I have no idea why it worked with localhost for years, and all of a sudden did not. I suspect the installation of xcode, but cannot prove or disprove....

Netbeans Xdebug on Windows 7 “waiting for connection” WAMP

php,netbeans,xdebug

Finally, managed Xdebug to work follow this article, and one more thing i need to do is when netbeans showing "waiting for connection" message. I need to open the page manually in browser(netbeans not open pop-up itself), added index.php?"XDEBUG_SESSION_START=netbeans-xdebug" to the URL and refresh the page, and then netbeans Xdebug...

Eclipse PDT / XDebug - How to move instruction pointer backward?

php,eclipse,debugging,xdebug,eclipse-pdt

This is currently not possible. But the Xdebug author (me) is working on something like this. It is in a very early state though! The git branch is at https://github.com/derickr/triceratops

How to set Git to ignore the word “xdebug_break()” for all project files?

git,xdebug,gitignore

It sounds like you might want to use a "clean" filter to remove some code from some files automatically. See this stackoverflow posting on setting up smudge and clean filters, and this chapter of the Git book. My general rule of thumb on smudge and clean filters is: avoid them...

Can't access .htacess; Too many open files

.htaccess,apache2,xdebug

Apparently this is a bug in xdebug. http://bugs.xdebug.org/view.php?id=1070 The solution is as follows: The workaround I use is to turn off autostart: xdebug.remote_autostart = 0 Then in Firefox install the Add-on called The Easiest XDebug In PHPStorm turn on the listener when you want to debug. It won't break unless...

PHP echo does not run while in loop

php,debugging,phpunit,xdebug

From PHP Manual: "flush() may not be able to override the buffering scheme of your web server and it has no effect on any client-side buffering in the browser. It also doesn't affect PHP's userspace output buffering mechanism. This means you will have to call both ob_flush() and flush() to...

Program compiles, but stops when I attempt to run

c,debugging,xdebug

your street array is only 18 bytes. you put up to 30 bytes in it depending on the data you read 3 times 9 bytes from add1,add2 and add3, 2 spaces and the terminating 0 - assuming your data elements fit the 9 bytes of your arrays the last one...

In XDebug for Eclipse, how are remote paths mapped to local paths?

php,eclipse,apache,curl,xdebug

Oh my... it was simply a matter of setting Accept remote session (JIT) to localhost, in my case, or just anything other than off: It's great to confirm that this does fundamentally work, but I'm still confused as to why it's not in a much more complex project. With luck,...

phpStorm/Xdebug can't show show child arrays of objects

xdebug,phpstorm

http://bugs.xdebug.org/view.php?id=686 It's all about how such classes (SplObjectStorage, ArrayObject and alike) are implemented internally: this is because objects of the class SplObjectStorage are not user land PHP objects but special super duper internal ones. A similar situation will happen with many other internal PHP classes. AFAIK nothing can be done...

Running xdebug debugger from Netbeans opens incorrect page

netbeans,wamp,xdebug,wampserver

Sorry I just figured it out. You have to change the Project URL: Click your project in the Projects window. Right click and select properties Click Run Configuration Set the correct Project URL Click OK https://netbeans.org/kb/docs/php/project-setup.html...

Best way to debug my way through a newly acquainted large PHP app and detect dead code?

php,codeigniter,xdebug,codeigniter-hmvc

As per the discussion in the comments, I'd wondered if the execution coverage tools in XDebug would help here. This is a low-level code monitor that watches what lines of PHP code have been executed when you start a program. As you'd expect, this adds a certain level of overhead,...

XDebug without query string

netbeans,xdebug

Xdebug can do this, with the help of a browser extension. These are listed at http://xdebug.org/docs/remote#browser-extensions It is also possible to configure Xdebug to initiate a debugging session for every request that is being made. You can do this, by turning on the http://xdebug.org/docs/all_settings#remote_autostart setting. ...

xDebug shows up in command line “php -m” , but not in phpinfo()

php,xampp,xdebug

After hours of hair pulling... and a nap, I came across this config code and it somehow worked. Now that the extension is on firm ground, I can start carefully adding or removing features one at a time. zend_extension = "C:\xampp\php\ext\php_xdebug-2.2.5-5.5-vc11.dll" // whatever your file name is xdebug.remote_autostart=on xdebug.remote_enable=on xdebug.remote_enable=1...

Is there a way to output HTML within Firebug's console?

html,firebug,xdebug,console.log,var-dump

Firebug doesn't allow to output arbitrary HTML within the Console panel due to security reasons and to avoid breaking the display of the output. So you are not able to let the Console panel display your XDebug output. The Console panel provides limited formatting options, though. The allowed CSS properties...

Run xcode in mode debug

xcode,debugging,xdebug

as far as i know xcode does not provide a clean native way to do this kind of stuff. you can try using this project : http://injectionforxcode.com I haven't used it intensively yet but it seemed to work pretty well and it is quite easy to set up. ...

Xdebug with XAMPP in Ubuntu 14.04

php,ubuntu,xdebug

edited in /opt/lmapp/etc/php.ini assigned the location of xdebug.so to zend_extension [xdebug] zend_extension="/usr/lib/php5/20121212/xdebug.so" Replace with [xdebug] zend_extension="xdebug.so" and restart lampp and Xdebug is installed. AS I was not doing this before because Xdebug Docs itself warn not to do this Note: You should ignore any prompts to add "extension=xdebug.so" to php.ini...

Xdebug in Sublime Text 3: how to see the sub-array content in the Xdebug context

php,sublimetext,sublimetext3,xdebug

Add the following to the user configuration file of the Xdebug plugin (Preferences > Package Settings > Xdebug > Settings - User): { "max_depth": 2 } That's for one sub-array. If you want a sub-sub-array just type: "max_depth": 3......

custom formatting of parameters in xdebug error messages

php,debugging,serialization,formatting,xdebug

As pointed out in the comment above: PHP 5.6 supports __debugInfo(). A patch for this method has been submitted to the xdebug repo in dec 2014 and should be released soon. See also: How to get __debugInfo to work with XDebug?...

Sublime Text 3: XDebug does not stop in breakpoints anymore

ubuntu,sublimetext,xdebug,sublimetext3,ubuntu-14.04

It has started to work after I have added the zend_extension line to my xdebug.ini. It is the whole code of the file: zend_extension=/usr/lib/php5/20121212/xdebug.so xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.remote_log="/var/log/xdebug/xdebug.log" Not sure why it was working without that line before. Probably it is because of the following: My XDebug has...

How to make Xdebug work on Centos and Zend Studio?

php,apache,xdebug,remote-debugging,zend-studio

A look into the log has helped: I: Checking remote connect back address. I: Remote address found, connecting to 192.168.56.1:9000. E: Time-out connecting to client. :-( Log closed at 2015-05-11 12:06:29 And then I read here: xdebug.remote_connect_back [...] setting should not be defined and enabled. When it is enabled, it...