Re: [PHP] https help

2011-05-31 Thread Negin Nickparsa
Thank you

Re: [PHP] https help

2011-05-31 Thread Tamara Temple
On May 31, 2011, at 12:34 AM, Negin Nickparsa wrote: I need to create a login page with HTTPS to yahoo Do I have to have a valid certificate? I have not trust certification centre, so before anything under HTTPS will be shown up, the window will come with information: valid certificate: y

Re: [PHP] https help

2011-05-30 Thread viraj
yahoo don't have ssl enabled on all their content it seems. http://privacy.yahoo.com/privacy/us/security/details.html ~viraj On Tue, May 31, 2011 at 11:11 AM, Negin Nickparsa wrote: > it is the output: > http://www.yahoo.com/?s=https > > can i force it to show me > https://www.yahoo.com > > ?

Re: [PHP] https help

2011-05-30 Thread Negin Nickparsa
it is the output: http://www.yahoo.com/?s=https can i force it to show me https://www.yahoo.com ?

Re: [PHP] https help

2011-05-30 Thread Negin Nickparsa
I need to create a login page with HTTPS to yahoo Do I have to have a valid certificate? I have not trust certification centre, so before anything under HTTPS will be shown up, the window will come with information: valid certificate: yes, valid domain: yes, valid authority for SSL key: no. am I

RE: [PHP] https help

2011-05-30 Thread admin
, May 30, 2011 4:04 PM To: php-general@lists.php.net Subject: [PHP] https help hi all, I want to write an application that can be logged to yahoo.com using https protocol Would you please put me some suggestions and advices? if ($_SERVER['SERVER_PORT'] != 443) { header("Location

[PHP] https help

2011-05-30 Thread Negin Nickparsa
hi all, I want to write an application that can be logged to yahoo.com using https protocol Would you please put me some suggestions and advices? if ($_SERVER['SERVER_PORT'] != 443) { header("Location: https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); }