Magento 2.2.2 upgrade 2.3.2 PHP 7.2 MCRYPT_BLOWFISH peclUpgrade PHP version problemTrying to install extension through Connect Manager getting depends on PHP extensions errorNot able to install Magento because of these errors: php-pdo-mysql-version-minimum & php-intl-version-minimumPHP requirement incompatible with your PHP version | Composer module installation errorWhy PHP Settings Check and Checking Component Dependency showing error during Magento 2.3 upgrade?Just Upgraded My Server : 8 to 16 GB Ram, 4 to 6 CPU - How to allocate new resources?Database connection error, after CLI install?PHP Extension bcmath is missing in PHP Extensions CheckUpgrading 2.1.16 to 2.3.2 Magento and PHP version issuesMagento 2.2.2 catalogsearch_fulltext Reindex + Elasticsearch
Loading military units into ships optimally, using backtracking
Understanding this peak detector circuit
Markov-chain sentence generator in Python
The cat ate your input again!
Does Molecular Weight of a Gas affect its lifting properties at the same velocity over the same wing?
Why command hierarchy, if the chain of command is standing next to each other?
Submitting a new paper just after another was accepted by the same journal
Is there a standardised way to check fake news?
Super Duper Vdd stiffening required on 555 timer, what is the best way?
Word for an event that will likely never happen again
These were just lying around
Can a PC use the Levitate spell to avoid movement speed reduction from exhaustion?
How does "Te vas a cansar" mean "You're going to get tired"?
How to take the beginning and end parts of a list with simpler syntax?
Why is there a large performance impact when looping over an array over 240 elements?
Can sampling rate be a floating point number?
How can this older-style irrigation tee be replaced?
Solution to German Tank Problem
Boss wants me to ignore a software license
How much maintenance time did it take to make an F4U Corsair ready for another flight?
Creating multi-attribute primary key in table in ArcGIS Desktop
How can I decide if my homebrew item should require attunement?
A torrent of foreign terms
The cat exchanges places with a drawing of the cat
Magento 2.2.2 upgrade 2.3.2 PHP 7.2 MCRYPT_BLOWFISH pecl
Upgrade PHP version problemTrying to install extension through Connect Manager getting depends on PHP extensions errorNot able to install Magento because of these errors: php-pdo-mysql-version-minimum & php-intl-version-minimumPHP requirement incompatible with your PHP version | Composer module installation errorWhy PHP Settings Check and Checking Component Dependency showing error during Magento 2.3 upgrade?Just Upgraded My Server : 8 to 16 GB Ram, 4 to 6 CPU - How to allocate new resources?Database connection error, after CLI install?PHP Extension bcmath is missing in PHP Extensions CheckUpgrading 2.1.16 to 2.3.2 Magento and PHP version issuesMagento 2.2.2 catalogsearch_fulltext Reindex + Elasticsearch
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Centos 6
Apache 2.4
PHP 7.2
I am trying to complete the upgrade of the Magento 2.2.2 store to Magento 2.3 following this tutorial
https://digitalstartup.co.uk/t/how-to-upgrade-from-magento-2-2-8-to-2-3-1/528
However, I am getting the following error in CLI and Frontend and Admin at step 4.5 running
bin/magento setup:upgrade
[Exception] Warning: Use of undefined constant MCRYPT_BLOWFISH -
assumed 'MCRYPT_BLOWFISH' (this will throw an Error i n a future
version of PHP) in
/home/redjohnco/public_html/vendor/magento/framework/Encryption/Encryptor.ph
p on line 397
I am checking a lot of post since last 2 days online and see that in PHP7 7.2 mcrypt has been removed -
However, it seems Magento 2.3 or (my upgrade seems to need it)
I have a lot of posts on this and they mention it can be installed on PHP 7.2 However the instructions don't seem to work on my Linux Centos 6
all the packages mentioned in the posts whenever I run give output
No package libc-dev available.
No package pkg-config available.
No package mcrypt-1.0.1 available.
It seems it can't find the package or whatever it needs to install mcrypt for PHP 7.2
Please note I am using multiple versions of PHP on my server but when I'm checking in CLI SSH php-v
I can see the version 7.2 is being used -
I switch using MultiPHP Manager
Also, I am using WHM CPANEL on the server
I have tried using this too
https://lukasmestan.com/install-mcrypt-extension-in-php7-2/
and similar other tutorials
The problem I get is when I try and run this command
sudo pecl install mcrypt-1.0.1
I keep getting
-bash: pecl: command not found
Please can anyone advise how I can fix this on centos 6
php server-setup centos linux
add a comment |
Centos 6
Apache 2.4
PHP 7.2
I am trying to complete the upgrade of the Magento 2.2.2 store to Magento 2.3 following this tutorial
https://digitalstartup.co.uk/t/how-to-upgrade-from-magento-2-2-8-to-2-3-1/528
However, I am getting the following error in CLI and Frontend and Admin at step 4.5 running
bin/magento setup:upgrade
[Exception] Warning: Use of undefined constant MCRYPT_BLOWFISH -
assumed 'MCRYPT_BLOWFISH' (this will throw an Error i n a future
version of PHP) in
/home/redjohnco/public_html/vendor/magento/framework/Encryption/Encryptor.ph
p on line 397
I am checking a lot of post since last 2 days online and see that in PHP7 7.2 mcrypt has been removed -
However, it seems Magento 2.3 or (my upgrade seems to need it)
I have a lot of posts on this and they mention it can be installed on PHP 7.2 However the instructions don't seem to work on my Linux Centos 6
all the packages mentioned in the posts whenever I run give output
No package libc-dev available.
No package pkg-config available.
No package mcrypt-1.0.1 available.
It seems it can't find the package or whatever it needs to install mcrypt for PHP 7.2
Please note I am using multiple versions of PHP on my server but when I'm checking in CLI SSH php-v
I can see the version 7.2 is being used -
I switch using MultiPHP Manager
Also, I am using WHM CPANEL on the server
I have tried using this too
https://lukasmestan.com/install-mcrypt-extension-in-php7-2/
and similar other tutorials
The problem I get is when I try and run this command
sudo pecl install mcrypt-1.0.1
I keep getting
-bash: pecl: command not found
Please can anyone advise how I can fix this on centos 6
php server-setup centos linux
have tried this solution stackoverflow.com/questions/1625161/peclcommand-not-found/…
– Mohit Rane
Aug 2 at 5:12
thanks - yes I already have pear installed and enabled
– jt9489
Aug 2 at 11:16
add a comment |
Centos 6
Apache 2.4
PHP 7.2
I am trying to complete the upgrade of the Magento 2.2.2 store to Magento 2.3 following this tutorial
https://digitalstartup.co.uk/t/how-to-upgrade-from-magento-2-2-8-to-2-3-1/528
However, I am getting the following error in CLI and Frontend and Admin at step 4.5 running
bin/magento setup:upgrade
[Exception] Warning: Use of undefined constant MCRYPT_BLOWFISH -
assumed 'MCRYPT_BLOWFISH' (this will throw an Error i n a future
version of PHP) in
/home/redjohnco/public_html/vendor/magento/framework/Encryption/Encryptor.ph
p on line 397
I am checking a lot of post since last 2 days online and see that in PHP7 7.2 mcrypt has been removed -
However, it seems Magento 2.3 or (my upgrade seems to need it)
I have a lot of posts on this and they mention it can be installed on PHP 7.2 However the instructions don't seem to work on my Linux Centos 6
all the packages mentioned in the posts whenever I run give output
No package libc-dev available.
No package pkg-config available.
No package mcrypt-1.0.1 available.
It seems it can't find the package or whatever it needs to install mcrypt for PHP 7.2
Please note I am using multiple versions of PHP on my server but when I'm checking in CLI SSH php-v
I can see the version 7.2 is being used -
I switch using MultiPHP Manager
Also, I am using WHM CPANEL on the server
I have tried using this too
https://lukasmestan.com/install-mcrypt-extension-in-php7-2/
and similar other tutorials
The problem I get is when I try and run this command
sudo pecl install mcrypt-1.0.1
I keep getting
-bash: pecl: command not found
Please can anyone advise how I can fix this on centos 6
php server-setup centos linux
Centos 6
Apache 2.4
PHP 7.2
I am trying to complete the upgrade of the Magento 2.2.2 store to Magento 2.3 following this tutorial
https://digitalstartup.co.uk/t/how-to-upgrade-from-magento-2-2-8-to-2-3-1/528
However, I am getting the following error in CLI and Frontend and Admin at step 4.5 running
bin/magento setup:upgrade
[Exception] Warning: Use of undefined constant MCRYPT_BLOWFISH -
assumed 'MCRYPT_BLOWFISH' (this will throw an Error i n a future
version of PHP) in
/home/redjohnco/public_html/vendor/magento/framework/Encryption/Encryptor.ph
p on line 397
I am checking a lot of post since last 2 days online and see that in PHP7 7.2 mcrypt has been removed -
However, it seems Magento 2.3 or (my upgrade seems to need it)
I have a lot of posts on this and they mention it can be installed on PHP 7.2 However the instructions don't seem to work on my Linux Centos 6
all the packages mentioned in the posts whenever I run give output
No package libc-dev available.
No package pkg-config available.
No package mcrypt-1.0.1 available.
It seems it can't find the package or whatever it needs to install mcrypt for PHP 7.2
Please note I am using multiple versions of PHP on my server but when I'm checking in CLI SSH php-v
I can see the version 7.2 is being used -
I switch using MultiPHP Manager
Also, I am using WHM CPANEL on the server
I have tried using this too
https://lukasmestan.com/install-mcrypt-extension-in-php7-2/
and similar other tutorials
The problem I get is when I try and run this command
sudo pecl install mcrypt-1.0.1
I keep getting
-bash: pecl: command not found
Please can anyone advise how I can fix this on centos 6
php server-setup centos linux
php server-setup centos linux
edited Aug 2 at 9:11
Raj Mohan R
1,7973 silver badges13 bronze badges
1,7973 silver badges13 bronze badges
asked Aug 1 at 15:23
jt9489jt9489
265 bronze badges
265 bronze badges
have tried this solution stackoverflow.com/questions/1625161/peclcommand-not-found/…
– Mohit Rane
Aug 2 at 5:12
thanks - yes I already have pear installed and enabled
– jt9489
Aug 2 at 11:16
add a comment |
have tried this solution stackoverflow.com/questions/1625161/peclcommand-not-found/…
– Mohit Rane
Aug 2 at 5:12
thanks - yes I already have pear installed and enabled
– jt9489
Aug 2 at 11:16
have tried this solution stackoverflow.com/questions/1625161/peclcommand-not-found/…
– Mohit Rane
Aug 2 at 5:12
have tried this solution stackoverflow.com/questions/1625161/peclcommand-not-found/…
– Mohit Rane
Aug 2 at 5:12
thanks - yes I already have pear installed and enabled
– jt9489
Aug 2 at 11:16
thanks - yes I already have pear installed and enabled
– jt9489
Aug 2 at 11:16
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fmagento.stackexchange.com%2fquestions%2f284127%2fmagento-2-2-2-upgrade-2-3-2-php-7-2-mcrypt-blowfish-pecl%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Magento Stack Exchange!
- 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%2fmagento.stackexchange.com%2fquestions%2f284127%2fmagento-2-2-2-upgrade-2-3-2-php-7-2-mcrypt-blowfish-pecl%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
have tried this solution stackoverflow.com/questions/1625161/peclcommand-not-found/…
– Mohit Rane
Aug 2 at 5:12
thanks - yes I already have pear installed and enabled
– jt9489
Aug 2 at 11:16