Hi i am new and have just downloaded "tpwhois" and i also cant get into the component to configure it, i have read the above and i am not using XAMPP but rather WAMP and i get the following error also:
Parse error: parse error in C:wamp
wwwJoomlaadministratorcomponentscom_...min.tpwhois.html.php on line 398
Using XAMPP is certainly not the only answer to the problem. Below is the php code with the specific line.
/* ------------------------------------------------------------------ */
// Display Menu
/* ------------------------------------------------------------------ */
function show($menu_id = 0)
{
if ($this->available())
{
// Do a loop to display either all ids (if menu_id = 0), or one id ($menu_id).
for ($i = ($menu_id ? $menu_id : 1); $i < ($menu_id ? ($menu_id + 1) : (count($this->MenuData)+1)); $i++)
{
// Cycle through all entries for this menu.
for ($j=0; $j < count($this->MenuData[$i]['item']); $j++)
{
// If a url for item exists, then make item a link
if (!empty($this->MenuData[$i]['url'][$j]))
{
echo "<a class="menuitem" href="".$this->MenuData[$i]['url'][$j]."">".$this->MenuData[$i]['item'][$j]."</a>";
}
// Else make it a Menu Header / Category
else
{
echo $this->MenuData[$i]['item'][$j];
}
echo "<br>";
}
?>
<br>
<?php
}
}
}(THIS BEING LINE 398)
Please help!!!!
Thanks in Adv.