>>  Site Map >>  Forums >>  Tips and Tricks

Forum module - topics in forum:



Tips and Tricks - Get the most from your PHP-NUKE website. Post things you have discovered and would like to share with others.



When using PHP-Nuke Patched x.x.0.3.1 and higher

If you should have problems with the right side blocks not showing, when using Nuke Patched 3.1 or A Pre-Patched Version Of PHP-Nuke x.x.0.3.1

Follow these simple instructions:
Important notes relating to Nuke Patched 3.1:

1- If you want right side blocks to appear in third party add-ons change:
In Modules:
Code: :
index = 1;

to:
Code: :
define('INDEX_FILE', true);

In Themes:
Code: :
if ($index == 1) {

to:
Code: :
if (defined('INDEX_FILE')) {


2- Additional changes for third party add-ons:
Code: :
if ($mainfile == 1) {

should be changed to:
Code: :
if (defined('NUKE_FILE')) {


Code: :
if ($module == 1) {

should be changed to:
Code: :
if (defined('MODULE_FILE')) {


Code: :
if ($footer == 1) {

should be changed to:
Code: :
if (defined('NUKE_FOOTER')) {


Code: :
if ($header == 1) {
should be changed to:
Code: :
if (defined('NUKE_HEADER')) {


Credit: Nuke Patched DEV Team -- Evaders99 & Quake




Attention! You are currently viewing sitemap page!
We strongly suggest to look at original content

Search from web

Valid HTML 4.01 Valid CSS