1- If you want right side blocks to appear in third party add-ons change:
In Modules:
index = 1;
to:
define('INDEX_FILE', true);
In Themes:
if ($index == 1) {
to:
if (defined('INDEX_FILE')) {
2- Additional changes for third party add-ons:
if ($mainfile == 1) {
should be changed to:
if (defined('NUKE_FILE')) {
if ($module == 1) {
should be changed to:
if (defined('MODULE_FILE')) {
if ($footer == 1) {
should be changed to:
if (defined('NUKE_FOOTER')) {
if ($header == 1) {
should be changed to:
if (defined('NUKE_HEADER')) {
in what files i must change this?
Beta3 Private
Joined: Jul 30, 2005
Posts: 35
Posted:
Fri Aug 12, 2005 10:23 pm
Ok, ok i just find
o.k. now i´m happy i migrate from a PHPBB Forum to a PHP-Nuke 7.7 SIte
Finally its done...(2 months stunding, undestanding, patchin, migrating database and triing to not lose the users... and some graphic design) Lot´s of works ...
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