Author |
Message |
LaMpiR
Regular


Joined: Oct 31, 2004
Posts: 50
|
Posted:
Thu Aug 04, 2005 9:39 am |
|
I've installed latest patch from nukescripts.net 7.6.0.3.1 but i don't see the right block side on index page where are news.
When i go to your account module i see right side etc... |
|
|
|
 |
chatserv
Member Emeritus

Joined: May 02, 2003
Posts: 1389
Location: Puerto Rico
|
Posted:
Thu Aug 04, 2005 10:10 am |
|
Check the readme file for changes you might need to perform on your theme. |
|
|
|
 |
Data-Base
New Member


Joined: Feb 23, 2005
Posts: 9
Location: Norway
|
Posted:
Mon Aug 15, 2005 4:18 am |
|
hello .. I just got the same problem when I installed the security patch !
and I did check the themes.
what happen !?!
thank you |
|
|
|
 |
LaMpiR

|
Posted:
Mon Aug 15, 2005 4:32 am |
|
I forgot to say tnx chatserv it's working perfectly  |
|
|
|
 |
Data-Base

|
Posted:
Mon Aug 15, 2005 5:01 am |
|
|
|
 |
LaMpiR

|
Posted:
Mon Aug 15, 2005 5:22 am |
|
Quote: | /************************************************************************/
/* PHP-Nuke Patched -- 2005 chatserv */
/* Nuke Patched DEV Team -- Evaders99 & Quake */
/* http://www.nukefixes.com -- http://www.nukeresources.com */
/************************************************************************/
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:
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')) {
|
|
|
|
|
 |
Data-Base

|
Posted:
Mon Aug 15, 2005 12:53 pm |
|
ok ..
I fixed it .. Thanks allot.
take care |
|
|
|
 |
Donovan
Client

Joined: Oct 07, 2003
Posts: 735
Location: Ohio
|
Posted:
Thu Aug 25, 2005 9:22 am |
|
|
 |
 |
chatserv

|
Posted:
Thu Aug 25, 2005 9:33 am |
|
Donovan send me your theme.php, don't send it compressed
chatserv at nukefixes dot com |
|
|
|
 |
Donovan

|
Posted:
Thu Aug 25, 2005 10:14 pm |
|
This was my fix.
In each of your Modules, or rather in every index.php within your modules folders search for
index = 1;
and change it to
define('INDEX_FILE', true);
Regardless if they are activated or not.
I had two that were not active but nontheless were the cause of the right blocks not displaying because they had index = 1; |
|
|
|
 |
Donovan

|
Posted:
Thu Aug 25, 2005 10:16 pm |
|
Forgot to say...
Thanks chatserv for the help. You are the ROCK in the PHPNuke community. |
|
|
|
 |
|