Joomla 1.0.11, SMF 1.1 RC3, and CPG 1.4.10 Fix Joomla 1.0.11, SMF 1.1 RC3, and CPG 1.4.10 Fix
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Joomla 1.0.11, SMF 1.1 RC3, and CPG 1.4.10 Fix

Started by devnet, November 10, 2006, 10:00:35 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

devnet

I've found that when I bridge CPG to SMF and have Joomla! bridged to SMF (specifically with SMF wrapped in joomla using Oristio's bridge) that my memberlist (usermode) and users (adminmode) links do not work.

Find:

// Pages to redirect to
                $this->page = array(

                        'register' => '/index.php?action=register',

                        'editusers' => '/index.php?action=mlist',

                        'edituserprofile' => '/index.php?action=profile;u='
);


Change to:
                $this->page = array(

                        'register' => '/index.php?&action=register',

                        'editusers' => '/index.php?&action=mlist',

                        'edituserprofile' => '/index.php?&action=profile;u='
);


Now the links that were broken before are fixed...

Please remember, this is only when SMF 1.1 RC3 is wrapped inside Joomla 1.0.11 and CPG 1.4.10 is bridged to SMF.

spiros71

The only difference I can see is that the comment line (below) is missing. Is this all?

// Pages to redirect to