You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 51 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Right blocks Gone [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
Maxpower57
Nuke Soldier
Nuke Soldier


Joined: Jan 02, 2006
Posts: 13


PostPosted: Mon Jan 02, 2006 8:10 pm Reply with quoteBack to top

When i upgraded from 7.6 to 7.9 and afterwards the right blocks on the main page are gone..
i dont know what happened,

how do i fix this?
and what file are the right blocks called in?
Find all posts by Maxpower57View user's profileSend private message
dezina
Support Mod
Support Mod


Joined: Jun 09, 2003
Posts: 1713

Location: England

PostPosted: Tue Jan 03, 2006 6:17 am Reply with quoteBack to top

Code:

In your theme.php find:
if ($index == 1) {

and change to:
if (defined('INDEX_FILE')) {

_________________
Image
Backup files BEFORE altering
Use PHPNuke 7.6 with patches!!
No private messages please, POST in forums.
Find all posts by dezinaView user's profileSend private messageVisit poster's website
Maxpower57
Nuke Soldier
Nuke Soldier


Joined: Jan 02, 2006
Posts: 13


PostPosted: Wed Jan 04, 2006 10:50 am Reply with quoteBack to top

thanks, but now i noticed some other problems...


my forums dont work..
Quote:
phpBB : Critical Error

Could not obtain lastvisit data from user table

DEBUG MODE

SQL Error : 1146 Table 'maxswebp_nuke1._users' doesn't exist

SELECT * FROM _users WHERE user_id = '1'

Line : 74
File : sessions.php

and users cant login...
Quote:
Login Incorrect! Please Try Again...

and everything in the modules administration: banners. is undefined....
Quote:
_BANNERSADMIN

_ACTIVEBANNERS

_CLIENTNAME _IMPRESSIONS _IMPLEFT _CLICKS _CLICKSPERCENT Type Functions

_INACTIVEBANNERS...


how do i fix this stuff?
is there something i did wrong during the upgrade?
Find all posts by Maxpower57View user's profileSend private message
dezina
Support Mod
Support Mod


Joined: Jun 09, 2003
Posts: 1713

Location: England

PostPosted: Wed Jan 04, 2006 10:57 am Reply with quoteBack to top

Quote:
how do i fix this stuff?
is there something i did wrong during the upgrade?

Doubt you did anything wrong, hence..
READ my signature and revert back to 7.6

_________________
Image
Backup files BEFORE altering
Use PHPNuke 7.6 with patches!!
No private messages please, POST in forums.
Find all posts by dezinaView user's profileSend private messageVisit poster's website
ethana
Sergeant
Sergeant


Joined: Dec 26, 2005
Posts: 81


PostPosted: Wed Jan 04, 2006 11:26 am Reply with quoteBack to top

Code:
SELECT * FROM _users WHERE user_id = '1'


Missing the prefix right there, hows your config file look? I use 7.8 and i have no issues (granted i know your on .9 but im mostly saying to spite dezina Razz)
Find all posts by ethanaView user's profileSend private message
Maxpower57
Nuke Soldier
Nuke Soldier


Joined: Jan 02, 2006
Posts: 13


PostPosted: Wed Jan 04, 2006 1:15 pm Reply with quoteBack to top

my config is fine...
Code:
$dbhost = "*********";
$dbuname = "********_*******";
$dbpass = "********************";
$dbname = "********_nuke1";
$prefix = "nuke";
$user_prefix = "";
$dbtype = "MySQL";
$sitekey = "********************************";
$gfx_chk = 0;
$subscription_url = "/services/";
$admin_file = "admin";
$tipath = "images/topics/";
$nuke_editor = 1;
$display_errors = false;


i dont see anything wrong with it

-edit-
woah thats weird... noticed when i posted that the user prefix is gone....
ok its working now...
thanks!

also.. my backend.php doesnt work.. i've tried all of the fixes available but none of them work...
know anything that can help?
Find all posts by Maxpower57View user's profileSend private message
ethana
Sergeant
Sergeant


Joined: Dec 26, 2005
Posts: 81


PostPosted: Wed Jan 04, 2006 1:29 pm Reply with quoteBack to top

Can you give me specifics? Errors or anything like that? What are you trying to do when it goes wonkers? Thanks.
Find all posts by ethanaView user's profileSend private message
Maxpower57
Nuke Soldier
Nuke Soldier


Joined: Jan 02, 2006
Posts: 13


PostPosted: Wed Jan 04, 2006 1:41 pm Reply with quoteBack to top

ethana wrote:
Can you give me specifics? Errors or anything like that? What are you trying to do when it goes wonkers? Thanks.


heres the file: http://maxswebpage57.com/Mwp57/backend.php
and heres what it looks like:

Code:
<?php

/************************************************************************/
/* PHP-NUKE: Web Portal System                                          */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2005 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

include("mainfile.php");
include("includes/ipban.php");
global $prefix, $db, $nukeurl;
header("Content-Type: text/xml");
$cat = intval($cat);
if (isset($cat) && !empty($cat)) {
   $catid = $db->sql_fetchrow($db->sql_query("SELECT catid FROM ".$prefix."_stories_cat WHERE title LIKE '%$cat%' LIMIT 1"));
   if ($catid == "") {
      $result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories ORDER BY sid DESC LIMIT 10");
   } else {
      $catid = intval($catid);
      $result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories WHERE catid='$catid' ORDER BY sid DESC LIMIT 10");
   }
} else {
   $result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories ORDER BY sid DESC LIMIT 10");
}

echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n\n";
echo "<!DOCTYPE rss PUBLIC \"-//Netscape Communications//DTD RSS 0.91//EN\"\n";
echo " \"http://my.netscape.com/publish/formats/rss-0.91.dtd\">\n\n";
echo "<rss version=\"0.91\">\n\n";
echo "<channel>\n";
echo "<title>".htmlentities($sitename)."</title>\n";
echo "<link>$nukeurl</link>\n";
echo "<description>".htmlentities($backend_title)."</description>\n";
echo "<language>$backend_language</language>\n\n";

while ($row = $db->sql_fetchrow($result)) {
   $rsid = intval($row['sid']);
   $rtitle = filter($row['title'], "nohtml");
   $rtext = filter($row['hometext']);
   echo "<item>\n";
   echo "<title>".htmlentities($rtitle)."</title>\n";
   echo "<link>$nukeurl/modules.php?name=News&amp;file=article&amp;sid=$rsid</link>\n";
   echo "<description>".htmlentities($rtext)."</description>\n";
   echo "</item>\n\n";
}
echo "</channel>\n";
echo "</rss>";

?>
Find all posts by Maxpower57View user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
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



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.467 Seconds - 295 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::