php - Why does Xdebug throw an error for a file that's included, not required -
I am running LAMP server on Ubuntu 9.04 (desktop version). I am very new in Ubuntu, so I have done it through most of the synaptic packet managers. I then removed the php5-general and just installed via PHP: apt-get install php5
My error reporting is set to: error_reporting = E_ALL & amp; ~ E_NOTICE
I installed Xdebug in my .ini file and put the following.
zend_extension = / usr / lib / php5 / 20060613 / xdebug then [debug]; Remote Settings xdebug.remote_autostart = off xdebug.remote_enable = xdebug.remote_handler at = dbgp xdebug.remote_mode = req xdebug.remote_host = localhost xdebug.remote_port = 9000; Normal xdebug.auto_trace = off xdebug.collect_includes = on xdebug.collect_params = off xdebug.collect_return = xdebug.default_enable = xdebug.extended_info = 1 xdebug.manual_url = http: //www.php.net xdebug.show_local_vars = 0 on xdebug .show_mem_delta = 0 xdebug.max_nesting_level = 100; Xdebug.idekey =; Trace option xdebug.trace_format = 0 xdebug.trace_output_dir = / tmp xdebug.trace_options = 0 xdebug.trace_output_name = crc32; Profiling xdebug.profiler_append = 0 xdebug.profiler_enable = 0 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir = / tmp xdebug.profiler_output_name = crc32 Now for a certain project, the following line to me Code in my pages:
include_once (something.php); Now, something. Because it does not include the necessary, I hope there is no error, however XDebug makes me an error report does anyone know how to help?
Uh, this is not something that changes Xdebug you receive a warning with plain PHP .
Derick
Comments
Post a Comment