Need Rapid Help

Permalink
I have just started using a CMS, usually didn't mind having CMS but since im doing a complete page for a common computer user I thought i would use one and C5 seemed best. I have C5'd my markup but the edit menu wont work i have a editable area and changed the title to the

<?php
Loader::element('header_required');
?>
what is wrong?
Screenshot below

1 Attachment

 
jordanlev replied on at Permalink Reply
jordanlev
The source in your screenshot is showing this:
<?
Loader::element('header_required');
?>


I'm guessing your server doesn't have the "php short tags" option enabled so instead you need to have this in your code:
<?php
Loader::element('header_required');
?>

(which I realize is the same as you posted in your question, but go check your theme and make sure you have it in there the correct way)