Find you a layout? I design them myself, no need to copy paste stuff. I think I have a template that I was making for something else lying around.
EDIT:
What do you think of this one:
http://cl.ly/2q242g2L3a2C0g2I2a0P
I can implement navigation. Originally I made this for another emulator...
Go to app/management
There is Documentation (Readme) - by anyways
Open config.php
Find the line $_CONFIG['template']['style'] = 'Priv';
Priv is the default theme. Change this to the theme you wan't (themes folder) e.g. change to Mango.
Done.
Allright, but look at the Template class changes - I removed the $this-> since you don't need the functions in your class, they're already predefined in PHP 5.
And also, use hash('sha512', '<value>') since sha512 is not a function in PHP 5.
Try with this
<?php
class Template
{
public $salt = "tVaCYSAqNu6yjlIXWmcotT2SXL2Zrrl";
public function secure($var)
{
return $this->mysql_real_escape($var);
return trim($var);
return stripslashes($var);
return...
I found the solution. Inside class.template.php of RevCMS this function does the magic:
final public function filterParams($str)
{
foreach($this->params as $key => $value)
{
$str = str_ireplace('{' . $key . '}', $value, $str);
}
return $str;
}
Make sure everything is right inside external_variables and also make sure that you get a connection to the emulator.
Example, when client fails it should say that you disconnected on the emulator as well. If this is not the case, then you need to see trough your configurations again. Remember...