Hello, I mean to them that when nuke 7.5 installs chatserv 3,1 in my they disappeared blocks of the right and when I put blocks in the left if they are seen and in the right not that I make To repair it ?
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')) {
I have the same problem and opened Modules.php but can find no line that says "index = 1;" I can however find a line that says "define('MODULE_FILE', true);"
Got the same problem.
I found the line in theme.php an change it.
None of the other codes you wrote can be found in that file.
so my question is , where or in what file do you find this code to change?
Code:
Quote:
In Modules:
index = 1;
to:
define('INDEX_FILE', true);
And where or in what file do you find this to change?
code:
Quote:
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')) {
These changes apply to any addons that are not a part of the original phpNuke package. Thus any addon files.. modules/MODULENAME/*.php, any addon themes, themes/THEMENAME/*.php, etc
I recommend using a search file text feature, you can do this in Windows by using the search and put the search string in "Containing text"
I'm running 7.9 Patched in a Dev system to shake out any issues before I go into production.
I'm having the same problem, and I can assure you I've made all the necessary fixes that are documented. What I find odd is that the Login block for admins DOES show on the right, but none of the other blocks do.
In Modules:
index = 1;
to:
define('INDEX_FILE', true);
The change would be made to Modules.php
Correction, the change would be in module files but only on modules not included with Nuke, by modules we mean things like:
modules/Copermine/index.php