How do I install the MagMi for Magento 2 extension?
I have downloaded and extracted the MagMi M2 module from https://github.com/macopedia/magmi-m2 but I have no idea how to install it.
I tried copying it into the vendor
dir in several locations, ran ./magento setup
, but the module is nowhere to be found in my Magento 2 installation.
So, how do I install that module?
magento2 magmi
add a comment |
I have downloaded and extracted the MagMi M2 module from https://github.com/macopedia/magmi-m2 but I have no idea how to install it.
I tried copying it into the vendor
dir in several locations, ran ./magento setup
, but the module is nowhere to be found in my Magento 2 installation.
So, how do I install that module?
magento2 magmi
add a comment |
I have downloaded and extracted the MagMi M2 module from https://github.com/macopedia/magmi-m2 but I have no idea how to install it.
I tried copying it into the vendor
dir in several locations, ran ./magento setup
, but the module is nowhere to be found in my Magento 2 installation.
So, how do I install that module?
magento2 magmi
I have downloaded and extracted the MagMi M2 module from https://github.com/macopedia/magmi-m2 but I have no idea how to install it.
I tried copying it into the vendor
dir in several locations, ran ./magento setup
, but the module is nowhere to be found in my Magento 2 installation.
So, how do I install that module?
magento2 magmi
magento2 magmi
asked Jan 5 '18 at 10:48
Bart Friederichs
18810
18810
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There is not install for magmi just Copy magmi in main folder
/magmi
and just the following your url you will be able to access the magmi
http://installmagentourl/magmi/web/magmi.php
and use default user: magmi paswd: magmi
You are good to go..
One thing more
go to
magmi/inc/magmi_engine.php replace the one 511 line and replace else code and add you credential
else {
$host = $this->getProp("DATABASE", "host", "localhost");
$dbname = $this->getProp("DATABASE", "dbname", "magento");
$user = $this->getProp("DATABASE", "user",'root');
$pass = $this->getProp("DATABASE", "password",'root');
$port = $this->getProp("DATABASE", "port", "3306");
}
I get a login (basic http auth) screen, no user/pass combo to be found. I am logged in into my Magento 2 admin backend.
– Bart Friederichs
Jan 5 '18 at 12:34
@BartFriederichs use default login foruser: magmi paswd: magmi
– Qaisar Satti
Jan 5 '18 at 12:39
OK, I can login now, but it gives me just PHP errors (engine not given). I fixed one and I get a lot more now (permission denied, sql connection fail). This really doesn't look like the way to use this.
– Bart Friederichs
Jan 5 '18 at 12:41
1
Also, the webserver needs write access to plugins, conf and state.
– Bart Friederichs
Jan 5 '18 at 12:58
1
@NagarajuKasa give permission to folder.
– Qaisar Satti
Dec 20 '18 at 9:03
|
show 7 more comments
You need to add database name, database username and password, as well as set the permission for the database user to use that database
New contributor
add a comment |
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%2f208225%2fhow-do-i-install-the-magmi-for-magento-2-extension%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is not install for magmi just Copy magmi in main folder
/magmi
and just the following your url you will be able to access the magmi
http://installmagentourl/magmi/web/magmi.php
and use default user: magmi paswd: magmi
You are good to go..
One thing more
go to
magmi/inc/magmi_engine.php replace the one 511 line and replace else code and add you credential
else {
$host = $this->getProp("DATABASE", "host", "localhost");
$dbname = $this->getProp("DATABASE", "dbname", "magento");
$user = $this->getProp("DATABASE", "user",'root');
$pass = $this->getProp("DATABASE", "password",'root');
$port = $this->getProp("DATABASE", "port", "3306");
}
I get a login (basic http auth) screen, no user/pass combo to be found. I am logged in into my Magento 2 admin backend.
– Bart Friederichs
Jan 5 '18 at 12:34
@BartFriederichs use default login foruser: magmi paswd: magmi
– Qaisar Satti
Jan 5 '18 at 12:39
OK, I can login now, but it gives me just PHP errors (engine not given). I fixed one and I get a lot more now (permission denied, sql connection fail). This really doesn't look like the way to use this.
– Bart Friederichs
Jan 5 '18 at 12:41
1
Also, the webserver needs write access to plugins, conf and state.
– Bart Friederichs
Jan 5 '18 at 12:58
1
@NagarajuKasa give permission to folder.
– Qaisar Satti
Dec 20 '18 at 9:03
|
show 7 more comments
There is not install for magmi just Copy magmi in main folder
/magmi
and just the following your url you will be able to access the magmi
http://installmagentourl/magmi/web/magmi.php
and use default user: magmi paswd: magmi
You are good to go..
One thing more
go to
magmi/inc/magmi_engine.php replace the one 511 line and replace else code and add you credential
else {
$host = $this->getProp("DATABASE", "host", "localhost");
$dbname = $this->getProp("DATABASE", "dbname", "magento");
$user = $this->getProp("DATABASE", "user",'root');
$pass = $this->getProp("DATABASE", "password",'root');
$port = $this->getProp("DATABASE", "port", "3306");
}
I get a login (basic http auth) screen, no user/pass combo to be found. I am logged in into my Magento 2 admin backend.
– Bart Friederichs
Jan 5 '18 at 12:34
@BartFriederichs use default login foruser: magmi paswd: magmi
– Qaisar Satti
Jan 5 '18 at 12:39
OK, I can login now, but it gives me just PHP errors (engine not given). I fixed one and I get a lot more now (permission denied, sql connection fail). This really doesn't look like the way to use this.
– Bart Friederichs
Jan 5 '18 at 12:41
1
Also, the webserver needs write access to plugins, conf and state.
– Bart Friederichs
Jan 5 '18 at 12:58
1
@NagarajuKasa give permission to folder.
– Qaisar Satti
Dec 20 '18 at 9:03
|
show 7 more comments
There is not install for magmi just Copy magmi in main folder
/magmi
and just the following your url you will be able to access the magmi
http://installmagentourl/magmi/web/magmi.php
and use default user: magmi paswd: magmi
You are good to go..
One thing more
go to
magmi/inc/magmi_engine.php replace the one 511 line and replace else code and add you credential
else {
$host = $this->getProp("DATABASE", "host", "localhost");
$dbname = $this->getProp("DATABASE", "dbname", "magento");
$user = $this->getProp("DATABASE", "user",'root');
$pass = $this->getProp("DATABASE", "password",'root');
$port = $this->getProp("DATABASE", "port", "3306");
}
There is not install for magmi just Copy magmi in main folder
/magmi
and just the following your url you will be able to access the magmi
http://installmagentourl/magmi/web/magmi.php
and use default user: magmi paswd: magmi
You are good to go..
One thing more
go to
magmi/inc/magmi_engine.php replace the one 511 line and replace else code and add you credential
else {
$host = $this->getProp("DATABASE", "host", "localhost");
$dbname = $this->getProp("DATABASE", "dbname", "magento");
$user = $this->getProp("DATABASE", "user",'root');
$pass = $this->getProp("DATABASE", "password",'root');
$port = $this->getProp("DATABASE", "port", "3306");
}
edited Jan 5 '18 at 12:46
answered Jan 5 '18 at 11:03
Qaisar Satti
26.3k1255106
26.3k1255106
I get a login (basic http auth) screen, no user/pass combo to be found. I am logged in into my Magento 2 admin backend.
– Bart Friederichs
Jan 5 '18 at 12:34
@BartFriederichs use default login foruser: magmi paswd: magmi
– Qaisar Satti
Jan 5 '18 at 12:39
OK, I can login now, but it gives me just PHP errors (engine not given). I fixed one and I get a lot more now (permission denied, sql connection fail). This really doesn't look like the way to use this.
– Bart Friederichs
Jan 5 '18 at 12:41
1
Also, the webserver needs write access to plugins, conf and state.
– Bart Friederichs
Jan 5 '18 at 12:58
1
@NagarajuKasa give permission to folder.
– Qaisar Satti
Dec 20 '18 at 9:03
|
show 7 more comments
I get a login (basic http auth) screen, no user/pass combo to be found. I am logged in into my Magento 2 admin backend.
– Bart Friederichs
Jan 5 '18 at 12:34
@BartFriederichs use default login foruser: magmi paswd: magmi
– Qaisar Satti
Jan 5 '18 at 12:39
OK, I can login now, but it gives me just PHP errors (engine not given). I fixed one and I get a lot more now (permission denied, sql connection fail). This really doesn't look like the way to use this.
– Bart Friederichs
Jan 5 '18 at 12:41
1
Also, the webserver needs write access to plugins, conf and state.
– Bart Friederichs
Jan 5 '18 at 12:58
1
@NagarajuKasa give permission to folder.
– Qaisar Satti
Dec 20 '18 at 9:03
I get a login (basic http auth) screen, no user/pass combo to be found. I am logged in into my Magento 2 admin backend.
– Bart Friederichs
Jan 5 '18 at 12:34
I get a login (basic http auth) screen, no user/pass combo to be found. I am logged in into my Magento 2 admin backend.
– Bart Friederichs
Jan 5 '18 at 12:34
@BartFriederichs use default login for
user: magmi paswd: magmi
– Qaisar Satti
Jan 5 '18 at 12:39
@BartFriederichs use default login for
user: magmi paswd: magmi
– Qaisar Satti
Jan 5 '18 at 12:39
OK, I can login now, but it gives me just PHP errors (engine not given). I fixed one and I get a lot more now (permission denied, sql connection fail). This really doesn't look like the way to use this.
– Bart Friederichs
Jan 5 '18 at 12:41
OK, I can login now, but it gives me just PHP errors (engine not given). I fixed one and I get a lot more now (permission denied, sql connection fail). This really doesn't look like the way to use this.
– Bart Friederichs
Jan 5 '18 at 12:41
1
1
Also, the webserver needs write access to plugins, conf and state.
– Bart Friederichs
Jan 5 '18 at 12:58
Also, the webserver needs write access to plugins, conf and state.
– Bart Friederichs
Jan 5 '18 at 12:58
1
1
@NagarajuKasa give permission to folder.
– Qaisar Satti
Dec 20 '18 at 9:03
@NagarajuKasa give permission to folder.
– Qaisar Satti
Dec 20 '18 at 9:03
|
show 7 more comments
You need to add database name, database username and password, as well as set the permission for the database user to use that database
New contributor
add a comment |
You need to add database name, database username and password, as well as set the permission for the database user to use that database
New contributor
add a comment |
You need to add database name, database username and password, as well as set the permission for the database user to use that database
New contributor
You need to add database name, database username and password, as well as set the permission for the database user to use that database
New contributor
New contributor
answered yesterday
MARTIN P
1
1
New contributor
New contributor
add a comment |
add a comment |
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.
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%2fmagento.stackexchange.com%2fquestions%2f208225%2fhow-do-i-install-the-magmi-for-magento-2-extension%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