Magento módulo instrucciones creador instllation:
1) Accede al panel de administración de Magento
2) Ir a Sistema-> Magento Connect-> Magento Conectar Mmanager
3) Ir a Ajustes -> Estado preferidos: -> cambiar estable a la beta
4) Ir a las extensiones> instalar nuevo extensiones-> con esta tecla: - http://connect20.magentocommerce.com/community/Netz98_ModuleCreator-> haga clic en Install> haga clic listo para instalar
5) Después de la instalación exitosa ir a su administrador de archivos favorito frente ir a la ruta: app/código/core/mago/código de imagen/modelo/observer.php
y cambiar
public function checkUserLoginBackend($observer)
{
$formId = 'backend_login';
$captchaModel = Mage::helper('captcha')->getCaptcha($formId);
$loginParams = Mage::app()->getRequest()->getPost('login');
$login = array_key_exists('username', $loginParams) ? $loginParams['username'] : null;
if ($captchaModel->isRequired($login)) {
if (!$captchaModel->isCorrect($this->_getCaptchaString(Mage::app()->getRequest(), $formId))) {
$captchaModel->logAttempt($login);
Mage::throwException(Mage::helper('captcha')->__('Incorrect CAPTCHA.'));
}
}
$captchaModel->logAttempt($login);
return $this;
}
A
public function checkUserLoginBackend($observer)
{
$formId = 'backend_login';
$captchaModel = Mage::helper('captcha')->getCaptcha($formId);
$login = Mage::app()->getRequest()->getPost('username');
if ($captchaModel->isRequired($login)) {
if (!$captchaModel->isCorrect($this->_getCaptchaString(Mage::app()->getRequest(), $formId))) {
$captchaModel->logAttempt($login);
Mage::throwException(Mage::helper('captcha')->__('Incorrect CAPTCHA.'));
}
}
$captchaModel->logAttempt($login);
return $this;
}
6) Si está utilizando Linux/Unix
ir a TERMINAL> ir al proyecto Magento carpeta-> escriba chmod -R 777/VA r/www/tu-proyecto-carpeta/
7) abrir se url en el navegador y añadir/moduleCreator después de que
8) Listo. Deberías poder crear el módulo ahora.
Buena suerte.
¡Trabajó para 1.9.2.4, gracias! – Mohit