Current Path :
/
home
/
zrcdevco
/
public_html
/
zrcprod
/
templates
/
luminate
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/zrcdevco/public_html/zrcprod/templates/luminate/error.php
<?php defined('_JEXEC') or die; if (!isset($this->error)) { $this->error = JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); $this->debug = false; } $doc = JFactory::getDocument(); $this->language = $doc->language; $this->direction = $doc->direction; ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <title><?php echo $this->error->getCode(); ?> - <?php echo $this->title; ?></title> <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/system/error.css" type="text/css" /> <?php if ($this->direction == 'rtl') : ?> <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/error_rtl.css" type="text/css" /> <?php endif; ?> </head> <body> <div class="error"> <div id="errorboxbody"> <h1>Oh, dear, we have a <?php echo $this->error->getCode(); ?></h1> <h2 class="error-type"><?php echo $this->error->getMessage(); ?></h2> <h3><?php echo JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES'); ?></h3> <div class="home-btn"> <a style="color:#000;font-size:18px;" href="<?php echo $this->baseurl; ?>/index.php" title="<?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a> </div> <p> <?php if ($this->debug) : echo $this->renderBacktrace(); endif; ?> </p> </div> </body> </html>