NukeXchange Network

          

NukeZone Hosting - Fast, Affordable and Dependable
Nuke Fixes · NukeForums · NukeZone Hosting · NukeUnited · Nuke Sites · Nuke Skins · NukeLance
Nuke Resources
 :: Home  :: Downloads  :: Your Account  :: Forums  :: Advertise :: 
Login or Register
Main Menu
General
 Main
 AvantGo
 Banner_Clients
 cfaq
 Donations
 Downloads
 Forums
 Members_List
 Private_Messages
 Search
 Stories_Archive
 Submit_News
 Surveys
 Topics
 Web_Links
 Your_Account

Your Account
 Login
 Register
 Lost Pass

Modules
Quick Links
· CMS Focus
· Domain Names
. Game Quest
· Learning Linux
. MateMaker
· NukeFixes
· NukeForums
· NukeLance
· Nuke Sites
· Nuke Skins
· NukeZone Hosting
. SearchDevil
Other Options

Download Resources
· Nuke Downloads
· Add a Link
· New Files
· Top Rated
· Most Popular

Web Site Resources
· Nuke Sites
· Add A Site
· New Sites
· Top Rated
· Most Popular

Support
· NukeZone Hosting
· NukeSkins.com
· NukeForums.com
· phpnuke.org
· NukeFixes.com
Information
NukeForums
·decompressing EN-Book-Nuke.tar.tar
·How to allow spaces/gaps/"-" in allowed usernames
·How to Setup PHPNUKE on win2k
·cannot save changes
·voting?
·Nuke forum picture problem
·How to change smtp port on wampserver and windows
·yet another 301 redirect problem
·Image display? - newbie
·php nuke help

read more...
Top10 Links
· 1: Nuke Forums
· 2: PHPNukeFiles
· 3: NukeSkins
· 4: Nuke Templates
· 5: EcomJunk
· 6: MDesign
· 7: Windows Installation: PHP
· 8: FLASH-FOR-NUKE
· 9: Dezina
· 10: Global Dream News Sharing Portal!
Site Visitors
User Login:

Nickname:
Password:
Security Code: Security Code
Type Security Code Here:

Members List Membership:
Latest: qwertz
Today: 0
Yesterday: 1
Overall: 15102

Visitation:
Guests: 587
Members: 0
Total: 587


You are Anonymous user. You can register for free by clicking here
Sponsor Links
Game Quest Online - Games and more!
Game Quest Online - Games and more!

NukeResources :: View topic - blocks of the right is not seen
NukeResources Forum Index

NukeResources Forum Index -> Bug Fixes -> blocks of the right is not seen
Post new topic  Reply to topic    View previous topic :: View next topic 
blocks of the right is not seen
PostPosted: Sat Aug 27, 2005 2:14 pm Reply with quote
Mercenario
Resource Seeker
Resource Seeker
 
Joined: Aug 27, 2005
Posts: 2




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 ?
View user's profile Send private message
PostPosted: Sat Aug 27, 2005 10:51 pm Reply with quote
Evaders99
Resource Master
Resource Master
 
Joined: May 25, 2004
Posts: 1785




From the readme

Code:

******************************************************/

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')) {

_________________
- Star Wars Rebellion Network - Evaders Squadron Coding -

Need help? Nuke Patched Core, Coding Services, Webmaster Services
View user's profile Send private message Visit poster's website AIM Address
PostPosted: Sun Aug 28, 2005 8:40 am Reply with quote
Mercenario
Resource Seeker
Resource Seeker
 
Joined: Aug 27, 2005
Posts: 2




in where I put that I code?
View user's profile Send private message
PostPosted: Mon Aug 29, 2005 9:53 pm Reply with quote
Timberwolf
Resource Seeker
Resource Seeker
 
Joined: Jan 07, 2005
Posts: 4




Mercenario wrote:
in where I put that I code?


The location is there...for instance

Code:
In Modules:
index = 1;
to:
define('INDEX_FILE', true);

The change would be made to Modules.php
View user's profile Send private message
PostPosted: Fri Sep 09, 2005 10:14 pm Reply with quote
LionElJonson
Resource Seeker
Resource Seeker
 
Joined: Apr 05, 2005
Posts: 10




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);"
View user's profile Send private message
PostPosted: Fri Sep 09, 2005 10:18 pm Reply with quote
Evaders99
Resource Master
Resource Master
 
Joined: May 25, 2004
Posts: 1785




Check your theme.php
Code:

In Themes:
if ($index == 1) {
to:
if (defined('INDEX_FILE')) {

_________________
- Star Wars Rebellion Network - Evaders Squadron Coding -

Need help? Nuke Patched Core, Coding Services, Webmaster Services
View user's profile Send private message Visit poster's website AIM Address
Right blocks
PostPosted: Sat Sep 17, 2005 4:52 pm Reply with quote
larsendata
Resource Seeker
Resource Seeker
 
Joined: Sep 17, 2005
Posts: 1




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')) {


Right blocks only shows when you look at the index file ,like:
http://www.larsendata.com/index.php
I´m verry thankfull to get this fixed.
View user's profile Send private message Visit poster's website
PostPosted: Sat Sep 17, 2005 7:16 pm Reply with quote
Evaders99
Resource Master
Resource Master
 
Joined: May 25, 2004
Posts: 1785




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"

_________________
- Star Wars Rebellion Network - Evaders Squadron Coding -

Need help? Nuke Patched Core, Coding Services, Webmaster Services
View user's profile Send private message Visit poster's website AIM Address
well that wont work
PostPosted: Fri Nov 04, 2005 9:47 pm Reply with quote
BoogeyMan
Resource Seeker
Resource Seeker
 
Joined: Nov 04, 2005
Posts: 2




ok this is a pain, does anyone have a fix for this?
cause I did all that cant find half that stuff and still no right blocks Evil or Very Mad

whats the skinny on this?
View user's profile Send private message
PostPosted: Sun Nov 06, 2005 4:20 am Reply with quote
Evaders99
Resource Master
Resource Master
 
Joined: May 25, 2004
Posts: 1785




In your theme.php
Code:


if ($index == 1) {
to:
if (defined('INDEX_FILE')) {

_________________
- Star Wars Rebellion Network - Evaders Squadron Coding -

Need help? Nuke Patched Core, Coding Services, Webmaster Services
View user's profile Send private message Visit poster's website AIM Address
PostPosted: Sat Dec 10, 2005 10:35 pm Reply with quote
woodb01
Resource Seeker
Resource Seeker
 
Joined: Dec 10, 2005
Posts: 7




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.

Any other ideas?
View user's profile Send private message
PostPosted: Mon Dec 12, 2005 12:20 pm Reply with quote
chatserv
Site Admin
Site Admin
 
Joined: Apr 21, 2002
Posts: 1732
Location: Puerto Rico




Timberwolf wrote:
Mercenario wrote:
in where I put that I code?


The location is there...for instance

Code:
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

modules.php requires no change.

_________________
NukeResources | ScriptHeaven
View user's profile Send private message Visit poster's website
PostPosted: Wed Dec 14, 2005 10:24 pm Reply with quote