help

Permalink
A site I put together a while back is suddenly brokenhttp://hmpetrographics.com/

No idea what happened, no updates have been made for some time. It also will not let me login "No input file specified."

 
juliandale replied on at Permalink Reply
juliandale
It's probably an update that your host has made, perhaps to the PHP version, or to update some system settings. I would contact them and ask if they have made any recent upgrades or settings changes that may have affected your hosting account. Your Concrete5 version is pretty old (the Meta Tags say it is 5.3.3.1), so once you get back in, I would recommend an update to the newest version.
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Open your themes elements folder & find header.php
Then open it and find the below code
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('main.css')?>" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />


And replace it with the below one
<!-- Site Header Content //-->
<link rel="stylesheet" media="screen" type="text/css" href="<?php  echo $this->getThemePath(); ?>/main.css" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php  echo $this->getThemePath(); ?>/typography.css" />


Hope it will solve your problem. And yes you should update your Concrete5 version to avail the latest advanced features.

Rony