![]() |
does codeigniter recognize system proxy settings? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: does codeigniter recognize system proxy settings? (/showthread.php?tid=63077) |
does codeigniter recognize system proxy settings? - Hyper-X - 09-23-2015 I want to send mail through codeIgniter application. When i try it on a computer without system proxy settings, it works fine. But my web server uses system proxy settings and email sending give this error: Code: A PHP Error was encountered PHP Code: public function mailMotDePasse($recepteur,$motDePasse) I'm wondering if codeigniter recognize the system proxy parametters or how to make codeIgniter use those parametrers. Please help. I'm passing other the deadline. RE: does codeigniter recognize system proxy settings? - Narf - 09-23-2015 CI doesn't care for proxy settings, but PHP may ... if PHP recognizes them, so will CI. RE: does codeigniter recognize system proxy settings? - Hyper-X - 09-23-2015 (09-23-2015, 04:54 AM)Narf Wrote: CI doesn't care for proxy settings, but PHP may ... if PHP recognizes them, so will CI. thanks for replying. What can I do now? The error code is not explicit. Code: A PHP Error was encountered RE: does codeigniter recognize system proxy settings? - Martin7483 - 09-23-2015 (09-23-2015, 06:41 AM)Hyper-X Wrote:(09-23-2015, 04:54 AM)Narf Wrote: CI doesn't care for proxy settings, but PHP may ... if PHP recognizes them, so will CI. The problem is the proxy. PHP docs on fsockopen has the answer: http://php.net/manual/en/function.fsockopen.php#82586 Remember that not all problems are CodeIgniter related. Reading up on PHP Docs can help RE: does codeigniter recognize system proxy settings? - Hyper-X - 09-25-2015 (09-23-2015, 07:16 AM)Martin7483 Wrote:(09-23-2015, 06:41 AM)Hyper-X Wrote:(09-23-2015, 04:54 AM)Narf Wrote: CI doesn't care for proxy settings, but PHP may ... if PHP recognizes them, so will CI. ok thanks. I'll check on PHP docs and i'll be back. RE: does codeigniter recognize system proxy settings? - Hyper-X - 09-25-2015 I'm getting no issue with this problem. Please help. |