monsieurbiz/mbiz_sitemap
Composer 安装命令:
composer require monsieurbiz/mbiz_sitemap
包简介
Magento module which adds models to generate XML sitemaps.
README 文档
README
This extension simplifies the sitemap.xml generation.
How it works
It is very simple.
Every 30 minutes, according to the cron setup in app/etc/config.xml the sitemaps will be generated.
By default there is not sitemap defined. You can add sitemaps by observing the event mbiz_sitemap_generate_sitemap and add a sitemap to the index in your code.
Example
This is an observer of the event mbiz_sitemap_generate_sitemap.
class Acme_Demo_Model_Observer { public function generateSitemaps(Varien_Event_Observer $observer) { // Fill the sitemap $sitemap = Mage::getModel('mbiz_sitemap/sitemap'); $collection = Mage::getResourceModel('acme_demo/article_collection'); foreach ($collection as $article) { $sitemap->addUrl( $article->getUrl(), // URL date('c', strtotime($article->getUpdatedAt())), // Last Updated 'monthly', // Frequency 0.8 // Priority ); } // Generate the XML file $sitemap->generate( Mage::getBaseDir() . DS . 'sitemaps' . DS . 'articles.xml', // The XML file Mage::getUrl('', [ // The URL '_direct' => 'sitemaps/articles.xml', '_type' => Mage_Core_Model_Store::URL_TYPE_DIRECT_LINK, ]) ); $observer->getIndex()->addSitemap($sitemap); } }
Troubleshooting
Where is the sitemap index?
You can find the index there: /sitemap-index-CODE.xml where CODE is the store's code. By default it is /sitemap-index-default.xml.
For now the module generates only for the store with store_id=1.
How can I change the schedule?
You can change the schedule by updating the configuration with your own module. By now it is not possible to change it using the admin panel.
Where do I need to generate the sitemaps?
You choose where to generate the sitemap in your observer.
By default the module creates the directory /sitemaps. So you can generate them in it.
But if you want to generate your sitemaps somewhere else you can, it will work well.
Can I generate the sitemaps myself?
Yes, just run this code:
Mage::getSingleton('mbiz_sitemap/cron')->generateSitemaps();
License
See LICENSE.
Maintainer
This module is maintained by Monsieur Biz.
monsieurbiz/mbiz_sitemap 适用场景与选型建议
monsieurbiz/mbiz_sitemap 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 283 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 10 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 monsieurbiz/mbiz_sitemap 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 monsieurbiz/mbiz_sitemap 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 283
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0
- 更新时间: 2017-10-04