Codezwiz

General PHP Nuke Help - Work board help

stealthusa -
Post subject: Work board help
hello i just installed the work board and it all works but the block when you put the block on the main page center i get this message right above it.

Parse error: parse error in /home/stealth/public_html/html/blocks/block-Work_Board.php on line 29

and in the block i get this message

Work Board


There isn't content right now for this block.
Telli -
Post subject: re: Work board help
Which version of WorkBoard is this? And did you get it from Nukescripts or Burnwave?
stealthusa -
Post subject:
i got it from nukescript and the verison is

Module's Name: NSN Work Board
Module's Version: 1.2.0
Release Date: 22 Feb 2004
License: Copyright © 2000-2004 NukeScripts Network & Burnwave Ltd.
Author's Name: NukeScripts Network & Burnwave Ltd.
Module's Description: Advanced project tracking system.

--------------------------------------------------------------------------------

i also got that suporter from there and i can't get the block right it is scrolling off the page.
Telli -
Post subject: re: Work board help
Yea i remeber having some problems with the block too. I can give you mine but I only have the one on the front page. Can you post the contents of the block maybe it is just a simple error.
stealthusa -
Post subject: re: Work board help
yes here it is

<?php

/********************************************************/
/* NSN Work Board                                       */
/* By: NukeScripts Network (webmaster@nukescripts.net)  */
/* http://www.nukescripts.net                           */
/* Copyright © 2000-2004 by NukeScripts Network         */
/********************************************************/
/* WorkBoard                                            */
/* Copyright (c) 2003 by Michael Squires                */
/* All rights reserved.                                 */
/* http://www.burnwave.com/                             */
/********************************************************/

if( eregi( "block-Work_Board.php", $_SERVER['PHP_SELF'])) {
   Header("Location: index.php");
   die();
}

global $prefix, $db, $bgcolor2;
$modname = "Work_Board";
get_lang($modname);
require_once("modules/$modname/includes/functions.php");

$content = "<center><table width='100%' border='1' cellspacing='0' cellpadding='2'>";
$content .= "<tr>";
$content .= "<td width=100% bgcolor='$bgcolor2' align='left' colspan='2'><b>"._WB_PROJECTNAME."</b></td>";
$content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_REQUESTS."</b></nobr></td>";
if (is_active("Work_Probe") {
    $content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_REPORTS."</b></nobr></td>";
}
if (is_active("Work_Request") {
    $content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_TASKS."</b></nobr></td>";
}
$content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_STATUS."</b></nobr></td>";
$content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_PROGRESSBAR."</b></nobr></td>";
$content .= "</tr>";
$projectresult = $db->sql_query("SELECT project_id FROM ".$prefix."_nsnwb_projects order by project_name");
while (list($project_id) = $db->sql_fetchrow($projectresult)) {
    $project = wbproject_info2($project_id);
    $status = wbstatus_info($project['status_id']);
    $content .= "<tr>";
    $wbimage = wbimage2("project.png", $modname);
    $content .= "<td align=center><img src='$wbimage' alt='"._WB_PROJECTID." #$project_id' title='"._WB_PROJECTID." #$project_id'></td>";
    $content .= "<td align=left width=100%>".$project['project_name']."</td>";
    if (is_active("Work_Probe") {
        $numrequests = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_nsnre_requests WHERE project_id='$project_id'"));
        if (!$numrequests) { $numrequests = 0; }
        $content .= "<td align=center width=100%><a href='modules.php?name=Request&op=REViewProject&project_id=$project_id'>$numrequests</a></td>";
    }
    if (is_active("Work_Request") {
        $numreports = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_nsnpr_bugs WHERE project_id='$project_id'"));
        if (!$numreports) { $numreports = 0; }
        $content .= "<td align=center width=100%><a href='modules.php?name=Probe&op=PRViewProject&project_id=$project_id'>$numreports</a></td>";
    }
    $numtasks = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_nsnwb_tasks WHERE project_id='$project_id'"));
    if (!$numtasks) { $numtasks = 0; }
    $content .= "<td align=center width=100%><a href='modules.php?name=$modname&op=WBProject&project_id=$project_id'>$numtasks</a></td>";

    $content .= "<td align=center>";
    if($status['status_name'] != ""){ $content .= "".$status['status_name'].""; } else { $content .= "<i>"._WB_NA."</i>"; }
    $content .=  "</td>";
    $content .=  "<td align=left><nobr>";
    $wbimage = wbimage2("bar_left.png", $modname);
    $content .= "<img src='$wbimage' width='1' height='7'>";
    if($project['project_percent'] == 0){
        $wbimage = wbimage2("bar_center_red.png", $modname);
        $content .= "<img src='$wbimage' width='100' height='7' alt='0"._WB_PERCENT." "._WB_COMPLETED."' title='0"._WB_PERCENT." "._WB_COMPLETED."'>";
    } else {
        if($project['project_percent'] > 100){ $project_percent = 100; } else { $project_percent = $project['project_percent']; }
        $wbimage = wbimage2("bar_center_grn.png", $modname);
        $content .= "<img src='$wbimage' width='".$project_percent."' height=7 alt='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."' title='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."'>";
        if($project_percent < 100){
            $percent_incomplete = 100 - $project_percent;
            $wbimage = wbimage2("bar_center_red.png", $modname);
            $content .= "<img src='$wbimage' width='".$percent_incomplete."' height=7 alt='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."' title='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."'>";
        }
    }
    $wbimage = wbimage2("bar_right.png", $modname);
    $content .= "<img src='$wbimage' width='1' height='7'>";
    $content .=  "</nobr></td>";
    $content .=  "</tr>";
}
$content .=  "</table></center>";

?>

Telli -
Post subject: re: Work board help
Line 29, change from:
if (is_active("Work_Probe") {

to:
if (is_active("Work_Probe")) {

Line 32, change:
if (is_active("Work_Request") {

to:
if (is_active("Work_Request")) {
stealthusa -
Post subject:
ok i did that now i am getting this error

Parse error: parse error in /home/stealth/public_html/html/blocks/block-Work_Board.php on line 46
Telli -
Post subject: re: Work board help
Post lines 30 - 80 here please.
stealthusa -
Post subject: re: Work board help
    $content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_REPORTS."</b></nobr></td>";
}
if (is_active("Work_Request")) {
    $content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_TASKS."</b></nobr></td>";
}
$content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_STATUS."</b></nobr></td>";
$content .= "<td bgcolor='$bgcolor2' align='center'><nobr><b>"._WB_PROGRESSBAR."</b></nobr></td>";
$content .= "</tr>";
$projectresult = $db->sql_query("SELECT project_id FROM ".$prefix."_nsnwb_projects order by project_name");
while (list($project_id) = $db->sql_fetchrow($projectresult)) {
    $project = wbproject_info2($project_id);
    $status = wbstatus_info($project['status_id']);
    $content .= "<tr>";
    $wbimage = wbimage2("project.png", $modname);
    $content .= "<td align=center><img src='$wbimage' alt='"._WB_PROJECTID." #$project_id' title='"._WB_PROJECTID." #$project_id'></td>";
    $content .= "<td align=left width=100%>".$project['project_name']."</td>";
    if (is_active("Work_Probe") {
        $numrequests = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_nsnre_requests WHERE project_id='$project_id'"));
        if (!$numrequests) { $numrequests = 0; }
        $content .= "<td align=center width=100%><a href='modules.php?name=Request&op=REViewProject&project_id=$project_id'>$numrequests</a></td>";
    }
    if (is_active("Work_Request") {
        $numreports = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_nsnpr_bugs WHERE project_id='$project_id'"));
        if (!$numreports) { $numreports = 0; }
        $content .= "<td align=center width=100%><a href='modules.php?name=Probe&op=PRViewProject&project_id=$project_id'>$numreports</a></td>";
    }
    $numtasks = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_nsnwb_tasks WHERE project_id='$project_id'"));
    if (!$numtasks) { $numtasks = 0; }
    $content .= "<td align=center width=100%><a href='modules.php?name=$modname&op=WBProject&project_id=$project_id'>$numtasks</a></td>";

    $content .= "<td align=center>";
    if($status['status_name'] != ""){ $content .= "".$status['status_name'].""; } else { $content .= "<i>"._WB_NA."</i>"; }
    $content .=  "</td>";
    $content .=  "<td align=left><nobr>";
    $wbimage = wbimage2("bar_left.png", $modname);
    $content .= "<img src='$wbimage' width='1' height='7'>";
    if($project['project_percent'] == 0){
        $wbimage = wbimage2("bar_center_red.png", $modname);
        $content .= "<img src='$wbimage' width='100' height='7' alt='0"._WB_PERCENT." "._WB_COMPLETED."' title='0"._WB_PERCENT." "._WB_COMPLETED."'>";
    } else {
        if($project['project_percent'] > 100){ $project_percent = 100; } else { $project_percent = $project['project_percent']; }
        $wbimage = wbimage2("bar_center_grn.png", $modname);
        $content .= "<img src='$wbimage' width='".$project_percent."' height=7 alt='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."' title='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."'>";
        if($project_percent < 100){
            $percent_incomplete = 100 - $project_percent;
            $wbimage = wbimage2("bar_center_red.png", $modname);
            $content .= "<img src='$wbimage' width='".$percent_incomplete."' height=7 alt='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."' title='".$project_percent.""._WB_PERCENT." "._WB_COMPLETED."'>";
        }
    }
    $wbimage = wbimage2("bar_right.png", $modname);
    $content .= "<img src='$wbimage' width='1' height='7'>";

Telli -
Post subject: re: Work board help
You didnt change anything in that block apply the fixes above then try it.
stealthusa -
Post subject:
ok i have changed those 2 you said now if i change line 46 and 51
to the same thing like you have at the top then it show on site


This post comes from Codezwiz
https://www.codezwiz.com

The URL for this post is:
https://www.codezwiz.com/ftopict-2306.html