Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93191589
PhabricatorImagemagickSetupCheck.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
Tue, Nov 26, 21:58
Size
941 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 21:58 (2 d)
Engine
blob
Format
Raw Data
Handle
22592853
Attached To
rPH Phabricator
PhabricatorImagemagickSetupCheck.php
View Options
<?php
final
class
PhabricatorImagemagickSetupCheck
extends
PhabricatorSetupCheck
{
public
function
getDefaultGroup
()
{
return
self
::
GROUP_OTHER
;
}
protected
function
executeChecks
()
{
$imagemagick
=
PhabricatorEnv
::
getEnvConfig
(
'files.enable-imagemagick'
);
if
(
$imagemagick
)
{
if
(!
Filesystem
::
binaryExists
(
'convert'
))
{
$message
=
pht
(
"You have enabled Imagemagick in your config, but the '%s' "
.
"binary is not in the webserver's %s. Disable imagemagick "
.
"or make it available to the webserver."
,
'convert'
,
'$PATH'
);
$this
->
newIssue
(
'files.enable-imagemagick'
)
->
setName
(
pht
(
"'%s' binary not found or Imagemagick is not installed."
,
'convert'
))
->
setMessage
(
$message
)
->
addRelatedPhabricatorConfig
(
'files.enable-imagemagick'
)
->
addPhabricatorConfig
(
'environment.append-paths'
);
}
}
}
}
Event Timeline
Log In to Comment