how to install GD with freetype support for php in macOS 10.14.1 Mojave
we are using with the yii2 framework and facing with captcha loading issue.
Trying to load captcha and getting below error.
Error:
Invalid Configuration –
yiibaseInvalidConfigException
Either GD PHP extension with FreeType support or ImageMagick PHP
extension with PNG support is required.
While checking from yii2 vendor file we got with no value for FreeType Support. Could anyone provide with any reference URL or steps to resolve below?
Array
(
[GD Version] => bundled (2.1.0 compatible)
[FreeType Support] =>
[GIF Read Support] => 1
[GIF Create Support] => 1
[JPEG Support] => 1
[PNG Support] => 1
[WBMP Support] => 1
[XPM Support] =>
[XBM Support] => 1
[WebP Support] =>
[JIS-mapped Japanese Font Support] =>
)
php yii yii2 yii-extensions php-7.2
add a comment |
we are using with the yii2 framework and facing with captcha loading issue.
Trying to load captcha and getting below error.
Error:
Invalid Configuration –
yiibaseInvalidConfigException
Either GD PHP extension with FreeType support or ImageMagick PHP
extension with PNG support is required.
While checking from yii2 vendor file we got with no value for FreeType Support. Could anyone provide with any reference URL or steps to resolve below?
Array
(
[GD Version] => bundled (2.1.0 compatible)
[FreeType Support] =>
[GIF Read Support] => 1
[GIF Create Support] => 1
[JPEG Support] => 1
[PNG Support] => 1
[WBMP Support] => 1
[XPM Support] =>
[XBM Support] => 1
[WebP Support] =>
[JIS-mapped Japanese Font Support] =>
)
php yii yii2 yii-extensions php-7.2
add a comment |
we are using with the yii2 framework and facing with captcha loading issue.
Trying to load captcha and getting below error.
Error:
Invalid Configuration –
yiibaseInvalidConfigException
Either GD PHP extension with FreeType support or ImageMagick PHP
extension with PNG support is required.
While checking from yii2 vendor file we got with no value for FreeType Support. Could anyone provide with any reference URL or steps to resolve below?
Array
(
[GD Version] => bundled (2.1.0 compatible)
[FreeType Support] =>
[GIF Read Support] => 1
[GIF Create Support] => 1
[JPEG Support] => 1
[PNG Support] => 1
[WBMP Support] => 1
[XPM Support] =>
[XBM Support] => 1
[WebP Support] =>
[JIS-mapped Japanese Font Support] =>
)
php yii yii2 yii-extensions php-7.2
we are using with the yii2 framework and facing with captcha loading issue.
Trying to load captcha and getting below error.
Error:
Invalid Configuration –
yiibaseInvalidConfigException
Either GD PHP extension with FreeType support or ImageMagick PHP
extension with PNG support is required.
While checking from yii2 vendor file we got with no value for FreeType Support. Could anyone provide with any reference URL or steps to resolve below?
Array
(
[GD Version] => bundled (2.1.0 compatible)
[FreeType Support] =>
[GIF Read Support] => 1
[GIF Create Support] => 1
[JPEG Support] => 1
[PNG Support] => 1
[WBMP Support] => 1
[XPM Support] =>
[XBM Support] => 1
[WebP Support] =>
[JIS-mapped Japanese Font Support] =>
)
php yii yii2 yii-extensions php-7.2
php yii yii2 yii-extensions php-7.2
asked Nov 17 '18 at 16:23
Babin Lonston
1067
1067
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Problem is not within Yii side. You don't have php extension which is required for captcha to work. Are you developing through virtual machine, vagrant, docker, xampp or something else? From that depends how you will install extension properly.
http://php.net/manual/en/book.imagick.php or http://php.net/manual/en/book.image.php
Example for this would be:
If you are running php from within linux machine:
sudo apt-get install php-imagick
or sudo apt-get install php-gd
I think that you should have gd already installed but maybe you need to enable it ini php.ini
config file. You have a lot of resources on that.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53353118%2fhow-to-install-gd-with-freetype-support-for-php-in-macos-10-14-1-mojave%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Problem is not within Yii side. You don't have php extension which is required for captcha to work. Are you developing through virtual machine, vagrant, docker, xampp or something else? From that depends how you will install extension properly.
http://php.net/manual/en/book.imagick.php or http://php.net/manual/en/book.image.php
Example for this would be:
If you are running php from within linux machine:
sudo apt-get install php-imagick
or sudo apt-get install php-gd
I think that you should have gd already installed but maybe you need to enable it ini php.ini
config file. You have a lot of resources on that.
add a comment |
Problem is not within Yii side. You don't have php extension which is required for captcha to work. Are you developing through virtual machine, vagrant, docker, xampp or something else? From that depends how you will install extension properly.
http://php.net/manual/en/book.imagick.php or http://php.net/manual/en/book.image.php
Example for this would be:
If you are running php from within linux machine:
sudo apt-get install php-imagick
or sudo apt-get install php-gd
I think that you should have gd already installed but maybe you need to enable it ini php.ini
config file. You have a lot of resources on that.
add a comment |
Problem is not within Yii side. You don't have php extension which is required for captcha to work. Are you developing through virtual machine, vagrant, docker, xampp or something else? From that depends how you will install extension properly.
http://php.net/manual/en/book.imagick.php or http://php.net/manual/en/book.image.php
Example for this would be:
If you are running php from within linux machine:
sudo apt-get install php-imagick
or sudo apt-get install php-gd
I think that you should have gd already installed but maybe you need to enable it ini php.ini
config file. You have a lot of resources on that.
Problem is not within Yii side. You don't have php extension which is required for captcha to work. Are you developing through virtual machine, vagrant, docker, xampp or something else? From that depends how you will install extension properly.
http://php.net/manual/en/book.imagick.php or http://php.net/manual/en/book.image.php
Example for this would be:
If you are running php from within linux machine:
sudo apt-get install php-imagick
or sudo apt-get install php-gd
I think that you should have gd already installed but maybe you need to enable it ini php.ini
config file. You have a lot of resources on that.
answered Nov 17 '18 at 19:56
Borisa Eric
29916
29916
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53353118%2fhow-to-install-gd-with-freetype-support-for-php-in-macos-10-14-1-mojave%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown