ModuleCreator
4
5
30
30
Working as Expected
This works as expected.
I also found this tool at http://brymayor.com/magento/magento-module-creator/ that might be helpful to you. It generates Magento custom module skeleton in an instant with versions 1.4 - 2.0
February 19, 2013
Thank you it´s a great tool, but i prefer a other solution to download.
http://connect.magentocommerce.com/community/get/Netz98_ModuleCreator-1.0.0.tgz
December 19, 2012
Thank you it´s a great tool, but i prefer a other solution.
If you need also to create a extension for ( Magento 2.0 beta ) or for Magento 1.4 - 1.7 i can highly recommend MGT Kickstarter!
Take a look at:
http://www.mgt-commerce.com/kickstarter/
A fast and simple online solution for a correct name space when you create a new extension.
No download needed
Full Magento 2.0 compatible!
December 11, 2012
Doesn't anyone think the steps needed to make this work with 1.7 kind of make this extensions obsolete? Would you buy a car that needed a load of work to get it running?
This is the biggest problem with Magento. Mostly it's down to changes in Magento and not a problem with the extensions. It's a real shame this problem is persisting. Drives me crazy.
October 25, 2012
did not work on 1.7
September 10, 2012
I used this module, it works on 1.7.
Thank for sharing this.
August 4, 2012
Solution for Magento 1.7.0.2 :)
edit /modulCreator/index.php
replace line 38
$session-gt;login($_POST['username'], $_POST['password'], $request);
to
$logindata = $_POST['login'];
$session-gt;login($logindata['username'], $logindata['password'], $request);
###AND ###
REPLACE LINE 71
lt;trgt;lt;td class="label"gt;lt;label for="username"gt;Username:lt;/labelgt;lt;/tdgt;lt;td class="value"gt;lt;input id="username" name="username" value=""/gt;lt;/tdgt;lt;/trgt;
lt;trgt;lt;td class="label"gt;lt;label for="password"gt;Password:lt;/labelgt;lt;/tdgt;lt;td class="value"gt;lt;input type="password" id="password" name="password"/gt;lt;/tdgt;lt;/trgt;
to
lt;trgt;lt;td class="label"gt;lt;label for="username"gt;Username:lt;/labelgt;lt;/tdgt;lt;td class="value"gt;lt;input id="username" name="login[username]" value=""/gt;lt;/tdgt;lt;/trgt;
lt;trgt;lt;td class="label"gt;lt;label for="password"gt;Password:lt;/labelgt;lt;/tdgt;lt;td class="value"gt;lt;input type="password" id="password" name="login[password]"/gt;lt;/tdgt;lt;/trgt;
July 26, 2012
Above magento 1.7.xxxxx
1. Edit File
[app/code/core/Mage/Captcha/Model/Observer.php]
2. Find Function Name
[public function checkUserLoginBackend($observer)]
3. Replace Context
[$loginParams = Mage::app()-gt;getRequest()-gt;getPost('login');]
To
[$loginParams = Mage::app()-gt;getRequest()-gt;getPost();]
4. Save OK;
[Editor]lt;a href="http://hi.baidu.com/hbvir/"gt;Huang Biaolt;/agt; [Edit Date]2012-07-13
July 13, 2012
I got it working on 1.7.0.1. Go ahead and install it either by using the ttp://connect20.magentocommerce.com/community/ prefix extension key or the tgz methods outlined below. xinhus' suggestion worked, but he has some typos in his code. You need to paste this code:
if (sizeof($loginParams)lt;1) $loginParams= array();
above this line (for me it was line 166)
$login = array_key_exists('username', $loginParams) ? $loginParams['username'] : null;
After that, browsing to /moduleCreator/ worked for me.
July 5, 2012
i use magento 1.5 and magento 1.7 but in both this extension not work.
any other option?
June 19, 2012