Error after installing extension , Unable to access configuration in store, Mageplaza Extension [duplicate]
This question already has an answer here:
Admin config error: Undefined index: id in Iterator.php on line 59
2 answers
Notice: Undefined index: id in
/home/208806.cloudwaysapps.com/mnaanucsmd/public_html/vendor/magento/module-config/Model/Config/Structure/Element/Iterator.php
on line 63
Error log record number: 1370744923540.
Got this error after trying to install a new module/extension mageplaza SMTP extension.
My iterator.php
public function setElements(array $elements, $scope)
{
$this->_elements = $elements;
$this->_scope = $scope;
if (count($elements)) {
$lastElement = end($elements);
$this->_lastId = $lastElement['id']; //<--- Line 63 is here
}
}
magento2 error extensions third-party-module
New contributor
marked as duplicate by Siarhey Uchukhlebau, Jai, Mohit Kumar Arora, sv3n, Rohan Hapani yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Admin config error: Undefined index: id in Iterator.php on line 59
2 answers
Notice: Undefined index: id in
/home/208806.cloudwaysapps.com/mnaanucsmd/public_html/vendor/magento/module-config/Model/Config/Structure/Element/Iterator.php
on line 63
Error log record number: 1370744923540.
Got this error after trying to install a new module/extension mageplaza SMTP extension.
My iterator.php
public function setElements(array $elements, $scope)
{
$this->_elements = $elements;
$this->_scope = $scope;
if (count($elements)) {
$lastElement = end($elements);
$this->_lastId = $lastElement['id']; //<--- Line 63 is here
}
}
magento2 error extensions third-party-module
New contributor
marked as duplicate by Siarhey Uchukhlebau, Jai, Mohit Kumar Arora, sv3n, Rohan Hapani yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Check thatMageplaza_Core
module installed and enabled.
– Siarhey Uchukhlebau
2 days ago
@SiarheyUchukhlebau how do i do that i am quite a newbie..
– devaraj arasu t s
2 days ago
I have written detailed answer. Please, check it.
– Siarhey Uchukhlebau
2 days ago
add a comment |
This question already has an answer here:
Admin config error: Undefined index: id in Iterator.php on line 59
2 answers
Notice: Undefined index: id in
/home/208806.cloudwaysapps.com/mnaanucsmd/public_html/vendor/magento/module-config/Model/Config/Structure/Element/Iterator.php
on line 63
Error log record number: 1370744923540.
Got this error after trying to install a new module/extension mageplaza SMTP extension.
My iterator.php
public function setElements(array $elements, $scope)
{
$this->_elements = $elements;
$this->_scope = $scope;
if (count($elements)) {
$lastElement = end($elements);
$this->_lastId = $lastElement['id']; //<--- Line 63 is here
}
}
magento2 error extensions third-party-module
New contributor
This question already has an answer here:
Admin config error: Undefined index: id in Iterator.php on line 59
2 answers
Notice: Undefined index: id in
/home/208806.cloudwaysapps.com/mnaanucsmd/public_html/vendor/magento/module-config/Model/Config/Structure/Element/Iterator.php
on line 63
Error log record number: 1370744923540.
Got this error after trying to install a new module/extension mageplaza SMTP extension.
My iterator.php
public function setElements(array $elements, $scope)
{
$this->_elements = $elements;
$this->_scope = $scope;
if (count($elements)) {
$lastElement = end($elements);
$this->_lastId = $lastElement['id']; //<--- Line 63 is here
}
}
This question already has an answer here:
Admin config error: Undefined index: id in Iterator.php on line 59
2 answers
magento2 error extensions third-party-module
magento2 error extensions third-party-module
New contributor
New contributor
edited 2 days ago
devaraj arasu t s
New contributor
asked 2 days ago
devaraj arasu t sdevaraj arasu t s
84
84
New contributor
New contributor
marked as duplicate by Siarhey Uchukhlebau, Jai, Mohit Kumar Arora, sv3n, Rohan Hapani yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Siarhey Uchukhlebau, Jai, Mohit Kumar Arora, sv3n, Rohan Hapani yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Check thatMageplaza_Core
module installed and enabled.
– Siarhey Uchukhlebau
2 days ago
@SiarheyUchukhlebau how do i do that i am quite a newbie..
– devaraj arasu t s
2 days ago
I have written detailed answer. Please, check it.
– Siarhey Uchukhlebau
2 days ago
add a comment |
Check thatMageplaza_Core
module installed and enabled.
– Siarhey Uchukhlebau
2 days ago
@SiarheyUchukhlebau how do i do that i am quite a newbie..
– devaraj arasu t s
2 days ago
I have written detailed answer. Please, check it.
– Siarhey Uchukhlebau
2 days ago
Check that
Mageplaza_Core
module installed and enabled.– Siarhey Uchukhlebau
2 days ago
Check that
Mageplaza_Core
module installed and enabled.– Siarhey Uchukhlebau
2 days ago
@SiarheyUchukhlebau how do i do that i am quite a newbie..
– devaraj arasu t s
2 days ago
@SiarheyUchukhlebau how do i do that i am quite a newbie..
– devaraj arasu t s
2 days ago
I have written detailed answer. Please, check it.
– Siarhey Uchukhlebau
2 days ago
I have written detailed answer. Please, check it.
– Siarhey Uchukhlebau
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
Check that Mageplaza_Core module installed and enabled:
From the Magento root directory type:
php bin/magento module:status Mageplaza_Core
You should see something like:
Module is enabled
In case you seeing something other you should install it (type from the Magento root directory):
composer require mageplaza/module-core
then enable it:
php bin/magento module:enable Mageplaza_Core
Note: On my server it looks like this:
and make update:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
update static files if needed:
php bin/magento setup:static-content:deploy
After that it should work as expected.
Note: do not forget to run all commands from the correspondent web-server's user to avoid permissions issue.
works like a charm :) thnx alot
– devaraj arasu t s
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Check that Mageplaza_Core module installed and enabled:
From the Magento root directory type:
php bin/magento module:status Mageplaza_Core
You should see something like:
Module is enabled
In case you seeing something other you should install it (type from the Magento root directory):
composer require mageplaza/module-core
then enable it:
php bin/magento module:enable Mageplaza_Core
Note: On my server it looks like this:
and make update:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
update static files if needed:
php bin/magento setup:static-content:deploy
After that it should work as expected.
Note: do not forget to run all commands from the correspondent web-server's user to avoid permissions issue.
works like a charm :) thnx alot
– devaraj arasu t s
2 days ago
add a comment |
Check that Mageplaza_Core module installed and enabled:
From the Magento root directory type:
php bin/magento module:status Mageplaza_Core
You should see something like:
Module is enabled
In case you seeing something other you should install it (type from the Magento root directory):
composer require mageplaza/module-core
then enable it:
php bin/magento module:enable Mageplaza_Core
Note: On my server it looks like this:
and make update:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
update static files if needed:
php bin/magento setup:static-content:deploy
After that it should work as expected.
Note: do not forget to run all commands from the correspondent web-server's user to avoid permissions issue.
works like a charm :) thnx alot
– devaraj arasu t s
2 days ago
add a comment |
Check that Mageplaza_Core module installed and enabled:
From the Magento root directory type:
php bin/magento module:status Mageplaza_Core
You should see something like:
Module is enabled
In case you seeing something other you should install it (type from the Magento root directory):
composer require mageplaza/module-core
then enable it:
php bin/magento module:enable Mageplaza_Core
Note: On my server it looks like this:
and make update:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
update static files if needed:
php bin/magento setup:static-content:deploy
After that it should work as expected.
Note: do not forget to run all commands from the correspondent web-server's user to avoid permissions issue.
Check that Mageplaza_Core module installed and enabled:
From the Magento root directory type:
php bin/magento module:status Mageplaza_Core
You should see something like:
Module is enabled
In case you seeing something other you should install it (type from the Magento root directory):
composer require mageplaza/module-core
then enable it:
php bin/magento module:enable Mageplaza_Core
Note: On my server it looks like this:
and make update:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
update static files if needed:
php bin/magento setup:static-content:deploy
After that it should work as expected.
Note: do not forget to run all commands from the correspondent web-server's user to avoid permissions issue.
answered 2 days ago
Siarhey UchukhlebauSiarhey Uchukhlebau
9,43692757
9,43692757
works like a charm :) thnx alot
– devaraj arasu t s
2 days ago
add a comment |
works like a charm :) thnx alot
– devaraj arasu t s
2 days ago
works like a charm :) thnx alot
– devaraj arasu t s
2 days ago
works like a charm :) thnx alot
– devaraj arasu t s
2 days ago
add a comment |
Check that
Mageplaza_Core
module installed and enabled.– Siarhey Uchukhlebau
2 days ago
@SiarheyUchukhlebau how do i do that i am quite a newbie..
– devaraj arasu t s
2 days ago
I have written detailed answer. Please, check it.
– Siarhey Uchukhlebau
2 days ago