David Ansermot Web Developer / TYPO3 Integrator

14déc/100

Magento : Undefined index after restore/moving site

Magento Logo RoundedIf you have encountered an error like "Notice: Undefined index: 0 in .../app/code/core/Mage/Core/Model/Mysql4/Config.php on line 92" after moving a Magento installation or, like me, after restored a mySQL dump, here's my solution.

I used it much times and tested on 1.3.x and 1.4.x < 1.4.2

13déc/100

Magento 1.4.2.0 available

Magento CE Version 1.4.2.0 Stable is available for download and upgrade.

View changelog and features
Download it

3nov/100

Magento – Actives CMS pages dynamic menu

Here's a little snippet to help you to build a dynamic menu listing the actives CMS pages from Magento.

  1. <div>
  2.     <?php $collection = Mage::getModel('cms/page')->getCollection()->addStoreFilter(Mage::app()->getStore()->getId());?>
  3.     <?php  $collection->getSelect()
  4.           ->where('is_active = 1'); ?>
  5.     <ul>
  6.     <?php foreach ($collection as $page): ?>
  7.       <?php $PageData = $page->getData(); ?>
  8.       <?php if($PageData['identifier']!='no-route') { ?>
  9.       <li>
  10.         <a href="/<?php echo $PageData['identifier']?>"><?php echo $PageData['title'] ?></a>
  11.       </li>
  12.       <?php } ?>
  13.     <?php endforeach; ?>
  14. </ul></div>
2nov/100

Magento Open House

The Magento team is pleased to invite 100 community members to the Magento's Headquarters in Culver City. The Open House will future lot of cool things like a Deejay, drinks, food and more.

The event's date is :
Thursday, November 18, 2010 - From 6h30 to 22h30 (PT) in Culver City, CA

There are only 100 spots available, so reserve your ticket here.

Source : Magento's Blog

29oct/100

Jirafe, a free realtime analytics for Magento

Jirafe  LogoThe leading extension developer Kristof Ringleff, known as Fooman to his large number of extension users, is releasing an exciting new free service called Jirafe. Jirafe provide a free realtime monitoring system for your Magento shops.