Error message

Permalink
I get the following error message when I try to use the new theme I have installed.

Parse error: syntax error, unexpected '=' in /home/davidcun/public_html/test3/themes/pearses/default.php on line 8

This is the code. Would appreciate any help. Thanks.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<?php
Loader::element('header_required');
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="<?=$this->getThemePath()?>/styles.css" rel="stylesheet" type="text/css" /></head>
<body id="intro">
<div id="container">
<div id="bodytext">
<div id="reg-text">
<?php
$a = new Area('Main Content');
$a->display($c);
?>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel eros vitae nisl vulputate porttitor a ut risus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque placerat quam non urna sodales tristique. Nam et libero enim. Pellentesque commodo, dui in lacinia pretium, nibh nunc accumsan nunc, vel cursus quam augue id risus. Ut ac aliquam lectus. Sed eget risus ligula. Suspendisse ipsum tortor, porta in facilisis a, vulputate nec libero. Maecenas et magna eget dolor mattis dapibus id sit amet nisi. In suscipit iaculis ultricies. Mauris enim metus, vulputate id ultrices at, aliquet quis lorem. Maecenas ut ligula a est scelerisque vestibulum. Aenean auctor nulla egestas massa fringilla tempor.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel eros vitae nisl vulputate porttitor a ut risus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque placerat quam non urna sodales tristique. Nam et libero enim. Pellentesque commodo, dui in lacinia pretium, nibh nunc accumsan nunc, vel cursus quam augue id risus. Ut ac aliquam lectus. Sed eget risus ligula. Suspendisse ipsum tortor, porta in facilisis a, vulputate nec libero. Maecenas et magna eget dolor mattis dapibus id sit amet nisi. In suscipit iaculis ultricies. Mauris enim metus, vulputate id ultrices at, aliquet quis lorem. Maecenas ut ligula a est scelerisque vestibulum. Aenean auctor nulla egestas massa fringilla tempor.</p>
</div>
</div>
<div id="nav-wrap">
<div id="right-column">
<div id="nav-btns-wrap">
<ul class="nav">
<li class="nav"><a href="index.html" id="intro"><span class="noshow">INTRODUCTION</span><span class="show">TIONSCNAMH</span></a></li>
<li class="nav"><a href="news.html" id="news"><span class="noshow">LATEST NEWS</span><span class="show">NUACHT IS DÉANAÍ</span></a></li>
<li class="nav"><a href="index.html" id="fixtures"><span class="noshow">FIXTURES</span><span class="show">CLUICHE</span></a></li>
<li class="nav"><a href="index.html" id="results"><span class="noshow">RESULTS &amp; REPORTS</span><span class="show">TORTHAÍ &amp; TUAIRISCÍ</span></a></li>
<li class="nav"><a href="index.html" id="photos"><span class="noshow">PHOTOS</span><span class="show">GRIANGHRAFANNA</span></a></li>
<li class="nav"><a href="index.html" id="videos"><span class="noshow">VIDEOS</span><span class="show">FÍSEÁNNA</span></a></li>
<li class="nav"><a href="index.html" id="lotto"><span class="noshow">FUNDRAISING LOTTO</span><span class="show">LOTTO CÍSTE</span></a></li>
<li class="nav"><a href="index.html" id="history"><span class="noshow">HISTORY &amp; HONOURS</span><span class="show">STAIR &amp; ONÓRAIGH</span></a></li>
<li class="nav"><a href="index.html" id="underage"><span class="noshow">UNDERAGE TEAMS</span><span class="show">FOIREANNA</span></a></li>
<li class="nav"><a href="index.html" id="contact"><span class="noshow">CONTACT</span><span class="show">TEAGMHÁLACHA</span></a></li>
</ul>
</div>
<div id="latest-lotto">
<div class="lotto-title">
<h1>Lotto - 20 FEB 2010</h1>
<p></p>
</div>
<p>No winners of this weeks jackpot of €12,000.
Winners of the €50 prizes: Eddie Mitchell, Tomas Kenny, Robbie Donnellan, Martin Barry, Tom O'Brien
Next Draw: February 28th Macs, Castleblakeney</p>
<form action="" method="get">
<p>Join our Mailing List</p>
<input name="email" type="text" class="email" value="Your Email">
<input name="submit" type="button" class="submit" value="submit">
</form>
</div>
</div>
</div>
</div>
</body>
</html>

Cyberdave
 
jgarcia replied on at Permalink Reply
jgarcia
Well, that's referring to this:
<?=$this->getThemePath()?>


A sure fix would be to just to this instead:
<? echo $this->getThemePath()?>
Cyberdave replied on at Permalink Reply
Cyberdave
Thanks for your reply. I have tried this:

<link href="<? echo $this->getThemePath()?>"main.css" rel="stylesheet" type="text/css" />

but I'm still getting the same error. Any other ideas? Thanks.
jgarcia replied on at Permalink Reply
jgarcia
maybe try putting <?php instead of just <?

It could be that you don't have short tags enabled on the server.