That's not the support topic. That was the original development topic. The extension was subsequently approved and submitted to the extension database: https://www.phpbb.com/customise/db/exte ... o_sitemap/thecas wrote: Wed Jan 08, 2020 11:12 am Hi everybody.
After the latest phpbb 3.3 update this extension doesn't work anymore: viewtopic.php?f=456&t=2269621
Unfortunately at the last post of the support topic there's the abandon alert.
Sir Link Not WorkingHiFiKabin wrote: Wed Jan 08, 2020 5:38 pm Disable the extension.
Download and unzip the attached, and use it to replace the config directory OF THE EXTENSION
Enable the extension
Offered "as is" no support given
https://filebin.net/mj3wmf2q464uigoy/co ... t=et4nvu1u
Code: Select all
shredder_sitemap_controller:
path: /sitemap.xml
defaults: { _controller: shredder.sitemap.controller:display_sitemap }
shredder_sitemap_controller_file:
path: /sitemap-{seqno}.xml
defaults: { _controller: shredder.sitemap.controller:display_sitemap_seqno_file: seqno }
requirements:
seqno: \d+
Code: Select all
services:
shredder.sitemap.appender:
class: shredder\sitemap\appender
arguments:
- '@config'
- '@user'
- '%core.root_path%'
- '%core.php_ext%'
shredder.sitemap.core:
class: shredder\sitemap\core
arguments:
- '@shredder.sitemap.appender'
- '@auth'
- '@config'
- '@config_text'
- '@dbal.conn'
- '@service_container'
- '@ext.manager'
- '@user'
- '%core.root_path%'
- '%core.php_ext%'
shredder.sitemap.controller:
class: shredder\sitemap\controller\sitemap
arguments:
- '@shredder.sitemap.appender'
- '@shredder.sitemap.core'
- '@cache'
- '@config'
- '@user'
shredder.sitemap.listener:
class: shredder\sitemap\event\listener
arguments:
- '@auth'
- '@config'
- '@dbal.conn'
- '@template'
- '@user'
- '%core.root_path%'
- '%core.php_ext%'
tags:
- { name: event.listener }