failed to open stream

Which I have traced to file: php-4.4.7/main/streams.c and function _php_stream_open_wrapper_ex

stream = wrapper->wops->stream_opener(wrapper, path_to_open, mode, options ^ REPORT_ERRORS,
                 opened_path, context STREAMS_REL_CC TSRMLS_CC);

Error condition occurs when stream is assigned NULL from wrapper->wops->stream_opener call (see above line). I need some help figuring out which function is call by pointer wrapper->wops->stream_opener.

Use any of the debuggers available to step into it and see which function is called.
Since PHP is called by apache and error happens right away, is there an easy way to invoke php under gdb ?

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to