Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Magento Module creator instllation instructions:</p> <p>1) Login in to admin panel of magento </p> <p>2) Go to System->Magento Connect->Magento Connect Mmanager</p> <p>3) Go to Settings->Preferred State:->change stable to beta</p> <p>4) Go to Extensions->Install New Extensions->use this key: - <a href="http://connect20.magentocommerce.com/community/Netz98_ModuleCreator-" rel="nofollow">http://connect20.magentocommerce.com/community/Netz98_ModuleCreator-</a>>click install->click ready to install</p> <p>5) After successfull installation go to your favourate file manager go to path: app/code/core/mage/captcha/model/observer.php</p> <p>and change </p> <pre><code>public function checkUserLoginBackend($observer) { $formId = 'backend_login';         $captchaModel = Mage::helper('captcha')-&gt;getCaptcha($formId);         $loginParams = Mage::app()-&gt;getRequest()-&gt;getPost('login');         $login = array_key_exists('username', $loginParams) ? $loginParams['username'] : null;         if ($captchaModel-&gt;isRequired($login)) {             if (!$captchaModel-&gt;isCorrect($this-&gt;_getCaptchaString(Mage::app()-&gt;getRequest(), $formId))) {                 $captchaModel-&gt;logAttempt($login);                 Mage::throwException(Mage::helper('captcha')-&gt;__('Incorrect CAPTCHA.'));             }         }         $captchaModel-&gt;logAttempt($login);         return $this;     } </code></pre> <p>TO</p> <pre><code>public function checkUserLoginBackend($observer)     {         $formId = 'backend_login';         $captchaModel = Mage::helper('captcha')-&gt;getCaptcha($formId);         $login = Mage::app()-&gt;getRequest()-&gt;getPost('username');         if ($captchaModel-&gt;isRequired($login)) {             if (!$captchaModel-&gt;isCorrect($this-&gt;_getCaptchaString(Mage::app()-&gt;getRequest(), $formId))) {                 $captchaModel-&gt;logAttempt($login);                 Mage::throwException(Mage::helper('captcha')-&gt;__('Incorrect CAPTCHA.'));             }         }         $captchaModel-&gt;logAttempt($login);         return $this;     } </code></pre> <p>6) If you are using linux/unix </p> <p>Go to terminal->go to magento project folder->type chmod 777 -R /var/www/your-project-folder/</p> <p>7) open you url in browser and add /moduleCreator after it</p> <p>8) Done. You should be able to create module now.</p> <p>Good luck.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload