ID:               29280
 Comment by:       fuzzy76 at fuzzy76 dot net
 Reported By:      Progman2002 at gmx dot de
 Status:           Assigned
 Bug Type:         Feature/Change Request
 Operating System: *
 PHP Version:      5CVS
 Assigned To:      pollita
 New Comment:

Is that a yes or a no on the ini option? :) I need to use a proxy in my

office, and this makes testing webapps really difficult.


Previous Comments:
------------------------------------------------------------------------

[2008-06-04 19:07:46] r13ckj at gmail dot com

I was just wondering whether this has been implemented?

My problem is outlined here:
http://forums.devshed.com/php-development-5/default-proxy-settings-for-php4-5t-534829.html#post2054576

I've spent countless hours on this problem, so any help would be much
appreciated.

------------------------------------------------------------------------

[2004-07-24 06:19:45] poll...@php.net

Ack! My bad... didn't see your note about making it an .ini option :)


------------------------------------------------------------------------

[2004-07-24 06:17:47] poll...@php.net

Dunno why this was assigned to me when wez implemented it :)

Closing it up.  You can either grab the snapshot from snaps.php.net
otherwise your wait will be until 5.1.0 is released.

------------------------------------------------------------------------

[2004-07-22 16:47:53] progman2002 at gmx dot de

works fine.
---- PHPs snip ----
$opts = array('http' => array('request_fulluri' => true,
                              'proxy' => 'tcp://192.168.0.1:8080'));
stream_context_get_default($opts);
---- eos ----
works also as...
---- PHPs snip ----
$context = stream_context_get_default();
stream_context_set_option($context, 'http', 'proxy',
'tcp://192.168.0.1:8080');
stream_context_set_option($context, 'http', 'request_fulluri', true);
---- eos ----
... does

So, now I must wait until it is in the non-cvs package ;)

------------------------------------------------------------------------

[2004-07-22 14:47:54] w...@php.net

Current CVS now has stream_context_get_default() which returns the
default context used by all newly created streams (unless explicitly
overriden).

You can use this in your script (perhaps via auto_prepend) to set the
proxy globally.

I know; an ini option for the proxy would be a good idea too, so let's
ask Sara really nicely if she wouldn't mind adding that.

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/29280

-- 
Edit this bug report at http://bugs.php.net/?id=29280&edit=1

Reply via email to