bawz
Newbie   Posts: 1 Registered: 3/28/2006 Status: Offline
|
posted on 3/28/2006 at 11:39 PM |
Not sure exactly what happened. After I had updated the site to the latest
phpnuke 7.9 3.2 patch, the left blocks on the side of the site
disappeared. I am using the Portalthemes wow6 template. Below is a snippet
of the source from the site, you'll notice the column where the the
leftblock.html should be.
<!-- Head from template -->
</head>
<body>
<div id="main">
<table width="90%" border="0" align="center" cellpadding="0"
cellspacing="0">
<tr>
<td width="250" height="600" align="center" valign="top"
class="mainleft"></td>
I tried doing a little research and the only thing that I could come up
with was a readme from the patch itself. Below is what was contained in the
readme.
Important notes relating to Nuke Patched 3.1 and above:
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')) {
Any thoughts or suggestions would be helpful...
Thanks in advance.
My website is http://www.bohguild.com I currently have the default
nuke theme enabled for my users.
[Edited on 29/3/2006 by bawz] |
| |
| |
Shawn
Administrator   Posts: 4570 Registered: 10/7/2002 Status: Online
|
posted on 3/29/2006 at 10:09 PM |
I will test this tomorrow afternoon.
-Shawn |
| |
Mtwo
Junior Member   Posts: 36 Registered: 8/28/2004 Status: Offline
|
posted on 4/26/2006 at 06:57 PM |
I am having the same problem with 1.77, what did you do to fix this?Please
let me know, Michael
[Edited on 26/4/2006 by Mtwo] |
| |
Mtwo
Junior Member   Posts: 36 Registered: 8/28/2004 Status: Offline
|
posted on 5/22/2006 at 10:09 AM |
Has anyone found a remedy for this? 7.932d fresh install but blocks do not
show up. Any ideas? |
| |
Shawn
Administrator   Posts: 4570 Registered: 10/7/2002 Status: Online
|
posted on 5/30/2006 at 03:49 PM |
I originally tested AutoTheme with the 3.2 patch and all was well. Let me
check this week.
-Shawn |
| |
Helidoc
Newbie   Posts: 2 Registered: 7/6/2006 Status: Offline
|
posted on 7/9/2006 at 01:03 PM |
Any solution with this ? I recently installed 7.9 3.2e and had the same
issue, could never figure out what was going on so install 7.6 instead to
get it to work.
Thanks |
| |
Shawn
Administrator   Posts: 4570 Registered: 10/7/2002 Status: Online
|
posted on 7/9/2006 at 01:04 PM |
Please give me a link to download 3.2e for 7.9, I can't find it.
Thanks!
-Shawn |
| |
Helidoc
Newbie   Posts: 2 Registered: 7/6/2006 Status: Offline
|
posted on 7/9/2006 at 01:29 PM |
This is where I got it from, I'm new to all of this so if this is an
unreliable site let me know.
http://dadanuke.org/modules.php?name=Downloads&d_op=getit&lid=62 |
| |
Jonj1611
Newbie   Posts: 1 Registered: 8/28/2006 Status: Offline
|
posted on 8/28/2006 at 06:50 AM |
I have the same problem.
I haven't got any support even though I paid for the wow7 template.
Once I installed the patch, blocks left and right have gone and the changes
it says to make in the code are not their or do not work.
Any help please?
Thanks
Jon |
| |
Dameon
Newbie   Posts: 1 Registered: 9/30/2006 Status: Offline
|
posted on 9/30/2006 at 06:46 PM |
Well, I just had the same problem when I installed nukesentinel. It turns
out that autothemes is using a discontinued use of $dbi to access the
database.
If in mainfile.php you see:
if(defined('FORUM_ADMIN')) {
define('INCLUDE_PATH', '../../../');
} elseif(defined('INSIDE_MOD')) {
define('INCLUDE_PATH', '../../');
} else {
define('INCLUDE_PATH', './');
}
@require_once(INCLUDE_PATH."config.php");
@require_once(INCLUDE_PATH."db/db.php");
Replace with:
if (defined('FORUM_ADMIN')) {
require_once("../../../config.php");
require_once("../../../db/db.php");
require_once("../../../includes/nukesentinel.php");
} elseif (defined('INSIDE_MOD')) {
require_once("../../config.php");
require_once("../../db/db.php");
require_once("../../includes/nukesentinel.php");
} else {
require_once("config.php");
require_once("db/db.php");
require_once("includes/nukesentinel.php");
/* FOLLOWING TWO LINES ARE DEPRECATED BUT ARE HERE FOR OLD MODULES
COMPATIBILITY */
/* PLEASE START USING THE NEW SQL ABSTRACTION LAYER. SEE MODULES DOC FOR
DETAILS */
require_once("includes/sql_layer.php");
$dbi = sql_connect($dbhost, $dbuname, $dbpass, $dbname);
}
It needs the $dbi line. I am sure others can find an easier and neater way
to do this but it worked for me. |
| |