Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93236580
HTTPFutureCertificateResponseStatus.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 27, 06:16
Size
956 B
Mime Type
text/x-php
Expires
Fri, Nov 29, 06:16 (2 d)
Engine
blob
Format
Raw Data
Handle
22600952
Attached To
rPHU libphutil
HTTPFutureCertificateResponseStatus.php
View Options
<?php
final
class
HTTPFutureCertificateResponseStatus
extends
HTTPFutureResponseStatus
{
const
ERROR_IMMUTABLE_CERTIFICATES
=
1
;
protected
function
getErrorCodeType
(
$code
)
{
return
'Certificate'
;
}
public
function
isError
()
{
return
true
;
}
public
function
isTimeout
()
{
return
false
;
}
protected
function
getErrorCodeDescription
(
$code
)
{
return
pht
(
"There was an error verifying the SSL Certificate Authority while "
.
"negotiating the SSL connection. This usually indicates you are "
.
"using a self-signed certificate.
\n\n
"
.
"As of OSX Yosemite, certificates must be added to the OSX keychain. "
.
"You can do this with `security add-trusted-cert` from the command "
.
"line, or by visiting the site in Safari and choosing to trust the "
.
"certificate permanently.
\n\n
"
.
'For more information, see instructions in '
.
'"libphutil/resources/ssl/README".'
);
}
}
Event Timeline
Log In to Comment