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
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
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>";
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