inovve

Magento First Steps - Resources, Guides, Tutorials, Tips

Jan 25th, 2013
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.83 KB | None | 0 0
  1. References
  2.  
  3. Install guide for windows http://www.magentocommerce.com/wiki/general/installing_on_windows_with_xampp_and_wamp
  4.  
  5. Good video/pdf describing templates/ui http://www.magentocommerce.com/media/screencasts/designers-guide-1/view http://www.magentocommerce.com/design_guide/articles/how-magento-builds-content
  6.  
  7. Magento is build on the Zend framework. there are afew views on here, the MVC aspect is very similar to .net MVC http://framework.zend.com/
  8.  
  9. I found it very useful to try and write my own custom module: http://www.magentocommerce.com/wiki/how-to/create-payment-method-module http://activecodeline.net/writing-a-custom-module-in-magento-detailed-walktrough/
  10.  
  11. This book is pretty good - only 160 odd pages but overs some good area.
  12.  
  13. The Magento forums are rubbish I'm afraid - no one replies to anything. It has taken me hours to figure some little things out. I would just say stick at it, the code can appear to be very fragmented, but as you get used to it you will appreciate how modular and extensible it is.
  14.  
  15. Good Blogs
  16.  
  17. http://www.westwideweb.com/wp/category/magento/
  18.  
  19. http://inchoo.net/category/ecommerce/magento/
  20.  
  21. http://activecodeline.net/
  22.  
  23. http://www.exploremagento.com/category/magento
  24.  
  25. Useful things
  26.  
  27. These things will bite you, so I'll save you the pain.
  28.  
  29. Problems logging in to admin panel after installation:
  30.  
  31. http://www.casualcommerce.com/2009/02/magento-notes-fix-for-admin-login-problem/
  32.  
  33. app/code/core/Mage/Core/Model/Session/Abstract and open up varien.php, and comment out
  34.  
  35. // set session cookie params
  36. session_set_cookie_params(
  37. $this->getCookie()->getLifetime(),
  38. $this->getCookie()->getPath() //remove this after putting on server (leave the comma)   ,
  39. //$this->getCookie()->getDomain(),
  40. //$this->getCookie()->isSecure(),
  41. //$this->getCookie()->getHttponly()
  42. );
  43.  
  44. //OR
  45.  
  46. $cookieParams = array(
  47. ‘lifetime’ => $cookie->getLifetime(),
  48. ‘path’ => $cookie->getPath(),
  49. //’domain’ => $cookie->getConfigDomain(),
  50. //’secure’ => $cookie->isSecure(),
  51. //’httponly’ => $cookie->getHttponly()
  52. );
  53.  
  54.  
  55. OR
  56.  
  57.  
  58. 1.Open “Varien.php” file Location “app\code\core\Mage\Core\Model\Session\Abstract”. 2.Find and comment the bellow code
  59.  
  60. if (!$cookieParams['httponly']) {
  61.        unset($cookieParams['httponly']);
  62.        if (!$cookieParams['secure']) {
  63.            unset($cookieParams['secure']);
  64.            if (!$cookieParams['domain']) {
  65.                unset($cookieParams['domain']);
  66.            }
  67.        }
  68.    }
  69.  
  70.    if (isset($cookieParams['domain'])) {
  71.        $cookieParams['domain'] = $cookie->getDomain();
  72.    }
  73.  
  74.  
  75. Back end running really slow, blank this file.
  76.  
  77. \app\design\adminhtml\default\default\template\notification\window.phtml
  78. Graph not showing in back end
  79.  
  80. Change getChartUrl(false) to getChartUrl(true) in
  81.  
  82. \app\design\adminhtml\default\default\template\dashboard\graph.phtml
Advertisement
Add Comment
Please, Sign In to add comment