Problems after moving to another server

Permalink
Hi after moving to a new server my page will display this:


display($c); ?>
display($c); ?>
display($c); ?>


display($c); ?>


display($c); ?>

When i look at the source code of the page i get this
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<? Loader::element('header_required'); ?>
<? Loader::element('footer_required'); ?>
<link href="<?=$this->getThemePath()?>/includes/CSSLayouts/CSSLayouts.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<?=$this->getThemePath()?>/includes/CSSLayouts/debug_plus.js"></script>
<link href="<?=$this->getThemePath()?>/includes/CSSLayouts/calmags_bg.css" rel="stylesheet" type="text/css" />
<link href="<?=$this->getThemePath()?>/includes/CSSLayouts/calmags_user.css" rel="stylesheet" type="text/css" />
<link href="includes/CSSLayouts/calmags.css" rel="stylesheet" type="text/css" />
<link href="includes/CSSLayouts/calmags_user.css" rel="stylesheet" type="text/css" />
</head>
<body class="calmags_body_design">
<div class="calmags">
  <!-- (CSSLayouts Begin)  #calmags #build_version=1.1.284;pack=;category=;layout=;layoutType=page;scheme=;cssSource=file;assets=;halign=center;minwidth=1000px;maxwidth=1000px;width=1000px;bc=;bl=-->

You can have a look yourself at : relaunch.calmags.de

 
Phallanx replied on at Permalink Best Answer Reply
Phallanx
The files are using PHP "short-tags" (<? instead of <?PHP) and the server is probably not set up to use them.
http://php.net/manual/en/language.basic-syntax.phptags.php...

Concrete5 is supposed to replace all the short-tags before deployment.
If you have access to the php.ini you can add
short_open_tag=On

then restart Apache.
plagil replied on at Permalink Reply
Made my day Thx