How do I install the MagMi for Magento 2 extension? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Fatal Error with Magmi for Magento2Magmi doesn't seem to update the price index?Magento2 does not showing images/css/jsHow to install Magento-CE-2.0.2 Full Release with Sample Data?Install Magento SMTP Pro Email Extension in 2.04Magento 2 installation fails for Sample DataMagento Magmi Multiselect import not workingMagento2 Install extension from multiple-extensions repositoryHow to install “stripe-php” library manually for stripe extension?Database not updated with moduleHow to install TCPDF lib without composer in Magento 2?
How do living politicians protect their readily obtainable signatures from misuse?
As a dual citizen, my US passport will expire one day after traveling to the US. Will this work?
What would you call this weird metallic apparatus that allows you to lift people?
The Nth Gryphon Number
what is the log of the PDF for a Normal Distribution?
What is the difference between a "ranged attack" and a "ranged weapon attack"?
Simple Http Server
Differences to CCompactSize and CVarInt
Asymptotics question
Is openssl rand command cryptographically secure?
How to write capital alpha?
How to ternary Plot3D a function
Is CEO the "profession" with the most psychopaths?
Found this skink in my tomato plant bucket. Is he trapped? Or could he leave if he wanted?
Monty Hall Problem-Probability Paradox
Delete free apps from library
Why weren't discrete x86 CPUs ever used in game hardware?
Why is std::move not [[nodiscard]] in C++20?
Why not send Voyager 3 and 4 following up the paths taken by Voyager 1 and 2 to re-transmit signals of later as they fly away from Earth?
Is there hard evidence that the grant peer review system performs significantly better than random?
What is the "studentd" process?
What is the origin of 落第?
License to disallow distribution in closed source software, but allow exceptions made by owner?
NERDTreeMenu Remapping
How do I install the MagMi for Magento 2 extension?
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Fatal Error with Magmi for Magento2Magmi doesn't seem to update the price index?Magento2 does not showing images/css/jsHow to install Magento-CE-2.0.2 Full Release with Sample Data?Install Magento SMTP Pro Email Extension in 2.04Magento 2 installation fails for Sample DataMagento Magmi Multiselect import not workingMagento2 Install extension from multiple-extensions repositoryHow to install “stripe-php” library manually for stripe extension?Database not updated with moduleHow to install TCPDF lib without composer in Magento 2?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
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 FriederichsBart Friederichs
198111
198111
add a comment |
add a comment |
3 Answers
3
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
add a comment |
if you do this settings:
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");
then in first prompt you have to give your admin username/password instead of magmi/magmi
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
3 Answers
3
active
oldest
votes
3 Answers
3
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 SattiQaisar Satti
27.2k1257110
27.2k1257110
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
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
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
You need to add database name, database username and password, as well as set the permission for the database user to use that database
answered Jan 4 at 23:58
MARTIN PMARTIN P
1
1
add a comment |
add a comment |
if you do this settings:
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");
then in first prompt you have to give your admin username/password instead of magmi/magmi
add a comment |
if you do this settings:
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");
then in first prompt you have to give your admin username/password instead of magmi/magmi
add a comment |
if you do this settings:
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");
then in first prompt you have to give your admin username/password instead of magmi/magmi
if you do this settings:
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");
then in first prompt you have to give your admin username/password instead of magmi/magmi
answered 2 days ago
Hassan Ali ShahzadHassan Ali Shahzad
744317
744317
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.
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