Hi, how are you folks?
I`m trying too add a link to my whmcs website but I`m receiving the following error
Parse error: syntax error, unexpected T_SL in /home/mghosped/public_html/portal/messenger.php on line 23
Here goes the code:
I tried removing quoatas from line 11 and 12 but even so got the same error, help me please.
PS: I`m having another trouble, I add categories and articles inside whcms admnistration, and they works (only in admin)
But they doesnt work on the site frontend
See here, just click on the folder icons behind ¨Categorias¨:
Thanks
I`m trying too add a link to my whmcs website but I`m receiving the following error
Parse error: syntax error, unexpected T_SL in /home/mghosped/public_html/portal/messenger.php on line 23
Here goes the code:
Code:
<?
define("CLIENTAREA",true);
require("dbconnect.php");
require("includes/functions.php");
require("includes/clientareafunctions.php");
$pagetitle = $_LANG['messengertitle'];
$pageicon = "http://bytes.com/images/messenger.gif";
$breadcrumbnav = '<a href="index.php">'.$_LANG['globalsystemname'].'</a>';
$breadcrumbnav .= '<a href="http://mghospedagem.com/portal/messenger.php">messenger</a>';
initialiseClientArea($pagetitle,$pageicon,$breadcrumbnav);
if ($_SESSION['uid']) {
# User is Logged In - put any code you like here
}
# Define the template filename to be used without the .tpl extension
$templatefile = "messenger"; << change this to the name of your tpl file.
outputClientArea($templatefile);
?>
I tried removing quoatas from line 11 and 12 but even so got the same error, help me please.
PS: I`m having another trouble, I add categories and articles inside whcms admnistration, and they works (only in admin)
But they doesnt work on the site frontend
See here, just click on the folder icons behind ¨Categorias¨:
Thanks
Comment