Magento 2.1 EE upgrade issuesMagento 2.0(Current) to Magento 2.0.2(Latest) Version UpgradePHP memory limitYour current PHP memory limit is 128M. Magento 2 requires it to be set to 756M or moreFatal error: Allowed memory size of 805306368 bytes exhaustedHow do I upgrade Magento 2 EE using composerMagento Memory issue for installing extensionsWhy PHP Settings Check and Checking Component Dependency showing error during Magento 2.3 upgrade?Magento 2.1.1 Check Component DependencyMagento 2.3 Upgrade issueMagento 2 : Error While upgrade 2.3.0 to 2.3.1
Is the default 512 byte physical sector size appropriate for SSD disks under Linux?
Why do testers need root cause analysis?
Why is 'additive' EQ more difficult to use than 'subtractive'?
Negative impact of having the launch pad away from the Equator
How many wires should be in a new thermostat cable?
If I arrive in the UK, and then head to mainland Europe, does my Schengen visa 90 day limit start when I arrived in the UK, or mainland Europe?
Why the work done is positive when bringing 2 opposite charges together?
How to make Flex Markers appear in Logic Pro X?
why "American-born", not "America-born"?
Is it normal to "extract a paper" from a master thesis?
Surface of the 3x3x3 cube as a graph
Is ideal gas incompressible?
Does science define life as "beginning at conception"?
Is there an idiom that means that you are in a very strong negotiation position in a negotiation?
Anatomically correct Guivre
Team member is vehemently against code formatting
Does attacking (or having a rider attack) cancel Charge/Pounce-like abilities?
Why is a weak base more able to deprotonate a strong acid than a weak acid?
Can a UK national work as a paid shop assistant in the USA?
What happens when redirecting with 3>&1 1>/dev/null?
How do I write real-world stories separate from my country of origin?
How could the B-29 bomber back up under its own power?
How did the Allies achieve air superiority on Sicily?
Is there a solution to paying high fees when opening and closing lightning channels once we hit a fee only market?
Magento 2.1 EE upgrade issues
Magento 2.0(Current) to Magento 2.0.2(Latest) Version UpgradePHP memory limitYour current PHP memory limit is 128M. Magento 2 requires it to be set to 756M or moreFatal error: Allowed memory size of 805306368 bytes exhaustedHow do I upgrade Magento 2 EE using composerMagento Memory issue for installing extensionsWhy PHP Settings Check and Checking Component Dependency showing error during Magento 2.3 upgrade?Magento 2.1.1 Check Component DependencyMagento 2.3 Upgrade issueMagento 2 : Error While upgrade 2.3.0 to 2.3.1
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to upgrade my magento 2.1 EE to latest version 2.3.1 EE.
But I am getting two issues-
1. PHP memory limit issues.
It shows current limit is 512 M and needs to be 756 M or more.
But after checking on server, memory_limit is 2048 M.
- Component dependency issues.
magento2 php magento-upgrade
add a comment |
I am trying to upgrade my magento 2.1 EE to latest version 2.3.1 EE.
But I am getting two issues-
1. PHP memory limit issues.
It shows current limit is 512 M and needs to be 756 M or more.
But after checking on server, memory_limit is 2048 M.
- Component dependency issues.
magento2 php magento-upgrade
Have you restarted your server after increasing the memory limit
– surbhi agr
May 15 at 6:08
I have not changed memory limit of server. It is already set 2048M for all PHP version. But still I am facing the issue.
– chanchal
May 16 at 5:14
add a comment |
I am trying to upgrade my magento 2.1 EE to latest version 2.3.1 EE.
But I am getting two issues-
1. PHP memory limit issues.
It shows current limit is 512 M and needs to be 756 M or more.
But after checking on server, memory_limit is 2048 M.
- Component dependency issues.
magento2 php magento-upgrade
I am trying to upgrade my magento 2.1 EE to latest version 2.3.1 EE.
But I am getting two issues-
1. PHP memory limit issues.
It shows current limit is 512 M and needs to be 756 M or more.
But after checking on server, memory_limit is 2048 M.
- Component dependency issues.
magento2 php magento-upgrade
magento2 php magento-upgrade
edited May 15 at 7:08
Sukumar Gorai
7,2233730
7,2233730
asked May 15 at 6:04
chanchalchanchal
729
729
Have you restarted your server after increasing the memory limit
– surbhi agr
May 15 at 6:08
I have not changed memory limit of server. It is already set 2048M for all PHP version. But still I am facing the issue.
– chanchal
May 16 at 5:14
add a comment |
Have you restarted your server after increasing the memory limit
– surbhi agr
May 15 at 6:08
I have not changed memory limit of server. It is already set 2048M for all PHP version. But still I am facing the issue.
– chanchal
May 16 at 5:14
Have you restarted your server after increasing the memory limit
– surbhi agr
May 15 at 6:08
Have you restarted your server after increasing the memory limit
– surbhi agr
May 15 at 6:08
I have not changed memory limit of server. It is already set 2048M for all PHP version. But still I am facing the issue.
– chanchal
May 16 at 5:14
I have not changed memory limit of server. It is already set 2048M for all PHP version. But still I am facing the issue.
– chanchal
May 16 at 5:14
add a comment |
1 Answer
1
active
oldest
votes
1) Update below in your php.ini file:
memory_limit = 1G
NOTE: check memory using phpinfo() function.
You can try with this, Check all php.ini files for memory limit and update them :
php.ini files locations:
/etc/php/7.2/cli/php.ini
/etc/php/7.2/cgi/php.ini
/etc/php/7.2/apache2/php.ini
Check if you are using php fpm
/etc/php/7.2/fpm/php.ini
2) For component dependency issues, Please refer below magento 2 devdocs:
https://devdocs.magento.com/guides/v2.3/comp-mgr/trouble/cman/component-depend.html
In phpinfo() , it shows memory limit for local as 768 M and 2048 M for Master.
– chanchal
May 15 at 6:43
find 'memmory' in your htaccess file.
– Saphal Jha
May 15 at 7:14
In htaccess also,value is memory_limit 2048M
– chanchal
May 15 at 7:16
are you using apache and nginx?
– Saphal Jha
May 15 at 7:21
I am using apache.
– chanchal
May 15 at 7:24
|
show 3 more comments
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%2f274622%2fmagento-2-1-ee-upgrade-issues%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
1) Update below in your php.ini file:
memory_limit = 1G
NOTE: check memory using phpinfo() function.
You can try with this, Check all php.ini files for memory limit and update them :
php.ini files locations:
/etc/php/7.2/cli/php.ini
/etc/php/7.2/cgi/php.ini
/etc/php/7.2/apache2/php.ini
Check if you are using php fpm
/etc/php/7.2/fpm/php.ini
2) For component dependency issues, Please refer below magento 2 devdocs:
https://devdocs.magento.com/guides/v2.3/comp-mgr/trouble/cman/component-depend.html
In phpinfo() , it shows memory limit for local as 768 M and 2048 M for Master.
– chanchal
May 15 at 6:43
find 'memmory' in your htaccess file.
– Saphal Jha
May 15 at 7:14
In htaccess also,value is memory_limit 2048M
– chanchal
May 15 at 7:16
are you using apache and nginx?
– Saphal Jha
May 15 at 7:21
I am using apache.
– chanchal
May 15 at 7:24
|
show 3 more comments
1) Update below in your php.ini file:
memory_limit = 1G
NOTE: check memory using phpinfo() function.
You can try with this, Check all php.ini files for memory limit and update them :
php.ini files locations:
/etc/php/7.2/cli/php.ini
/etc/php/7.2/cgi/php.ini
/etc/php/7.2/apache2/php.ini
Check if you are using php fpm
/etc/php/7.2/fpm/php.ini
2) For component dependency issues, Please refer below magento 2 devdocs:
https://devdocs.magento.com/guides/v2.3/comp-mgr/trouble/cman/component-depend.html
In phpinfo() , it shows memory limit for local as 768 M and 2048 M for Master.
– chanchal
May 15 at 6:43
find 'memmory' in your htaccess file.
– Saphal Jha
May 15 at 7:14
In htaccess also,value is memory_limit 2048M
– chanchal
May 15 at 7:16
are you using apache and nginx?
– Saphal Jha
May 15 at 7:21
I am using apache.
– chanchal
May 15 at 7:24
|
show 3 more comments
1) Update below in your php.ini file:
memory_limit = 1G
NOTE: check memory using phpinfo() function.
You can try with this, Check all php.ini files for memory limit and update them :
php.ini files locations:
/etc/php/7.2/cli/php.ini
/etc/php/7.2/cgi/php.ini
/etc/php/7.2/apache2/php.ini
Check if you are using php fpm
/etc/php/7.2/fpm/php.ini
2) For component dependency issues, Please refer below magento 2 devdocs:
https://devdocs.magento.com/guides/v2.3/comp-mgr/trouble/cman/component-depend.html
1) Update below in your php.ini file:
memory_limit = 1G
NOTE: check memory using phpinfo() function.
You can try with this, Check all php.ini files for memory limit and update them :
php.ini files locations:
/etc/php/7.2/cli/php.ini
/etc/php/7.2/cgi/php.ini
/etc/php/7.2/apache2/php.ini
Check if you are using php fpm
/etc/php/7.2/fpm/php.ini
2) For component dependency issues, Please refer below magento 2 devdocs:
https://devdocs.magento.com/guides/v2.3/comp-mgr/trouble/cman/component-depend.html
edited May 15 at 8:38
answered May 15 at 6:14
Saphal JhaSaphal Jha
1,052616
1,052616
In phpinfo() , it shows memory limit for local as 768 M and 2048 M for Master.
– chanchal
May 15 at 6:43
find 'memmory' in your htaccess file.
– Saphal Jha
May 15 at 7:14
In htaccess also,value is memory_limit 2048M
– chanchal
May 15 at 7:16
are you using apache and nginx?
– Saphal Jha
May 15 at 7:21
I am using apache.
– chanchal
May 15 at 7:24
|
show 3 more comments
In phpinfo() , it shows memory limit for local as 768 M and 2048 M for Master.
– chanchal
May 15 at 6:43
find 'memmory' in your htaccess file.
– Saphal Jha
May 15 at 7:14
In htaccess also,value is memory_limit 2048M
– chanchal
May 15 at 7:16
are you using apache and nginx?
– Saphal Jha
May 15 at 7:21
I am using apache.
– chanchal
May 15 at 7:24
In phpinfo() , it shows memory limit for local as 768 M and 2048 M for Master.
– chanchal
May 15 at 6:43
In phpinfo() , it shows memory limit for local as 768 M and 2048 M for Master.
– chanchal
May 15 at 6:43
find 'memmory' in your htaccess file.
– Saphal Jha
May 15 at 7:14
find 'memmory' in your htaccess file.
– Saphal Jha
May 15 at 7:14
In htaccess also,value is memory_limit 2048M
– chanchal
May 15 at 7:16
In htaccess also,value is memory_limit 2048M
– chanchal
May 15 at 7:16
are you using apache and nginx?
– Saphal Jha
May 15 at 7:21
are you using apache and nginx?
– Saphal Jha
May 15 at 7:21
I am using apache.
– chanchal
May 15 at 7:24
I am using apache.
– chanchal
May 15 at 7:24
|
show 3 more comments
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%2f274622%2fmagento-2-1-ee-upgrade-issues%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 you restarted your server after increasing the memory limit
– surbhi agr
May 15 at 6:08
I have not changed memory limit of server. It is already set 2048M for all PHP version. But still I am facing the issue.
– chanchal
May 16 at 5:14