Tunnel2CPG compatibility with phpBB3 3.3.0 Tunnel2CPG compatibility with phpBB3 3.3.0
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Tunnel2CPG compatibility with phpBB3 3.3.0

Started by panhead, January 14, 2020, 02:51:27 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

panhead

Ron,

Unfortunately Tunnel2CPG is not compatible with the new phpBB3 3.3.0 version (The services.yml file is invalid). Is that difficult to fix?

regards,

ron4mac


panhead

Thank you. Apparently: there is a change in Symfony that requires the services.yml file to have a particular syntax

ron4mac

#3
The simple fix is to edit the services.yml file and put single quotes around the entities that start with @

I'll post an updated phpBB3 extension.

panhead

Here is an updated version of the services.yml file:

services:
    ron4mac.tunneltocpg.controller:
        class: ron4mac\tunneltocpg\controller\main
        arguments:
            - '@config'
            - '@controller.helper'
            - '@template'
            - '@user'
    ron4mac.tunneltocpg.listener:
        class: ron4mac\tunneltocpg\event\listener
        arguments:
            - '@config'
        tags:
            - { name: event.listener }