The bug:
$phpbb_root_path is set relatively to modules/Forums/admin/ used for the inludes in admin_smilies.php. Finally $phpbb_root_path targets to modules/Forums.
$board_config['smilies_path'] is set relatively to PHPNuke's root directory, targeting to modules/Forums/images/smiles.
Since the script concats both pathes to get the full path to the smilies, it creates this double modules/Forums/ mistake.
So, for the smilies path we have to change $phpbb_root_path AFTER it was used by the included files!
---
FIX: (line numbers are from Nuke7.9.0.3.2f, BBtoNuke 2.0.21)
OPEN FILE: modules/Forums/admin/admin_smilies.php
FIND: (line 56)
Code:
require('./pagestart.' . $phpEx);
AFTER ADD:
Code:
$phpbb_root_path = "./../../../"; // for smilies we need the path starting in PHPNuke's install folder!
SAVE FILE: modules/Forums/admin/admin_smilies.php
DONE:
--- _________________
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum