Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • hbf1000 Friend
    #199258

    I have created a custom 404 error page.

    How/Where to edit the code so that Joomla displays my custom 404 page instead of default 404 page ?

    I am using JA Elastica.

    Tks

    TomC Moderator
    hbf1000 Friend
    #540556

    Hi TOM, tks for the reply, but I have already tried thoses resources. The problem is that the error.php file that I found inside template/system did not had the code that was mentioned on those resources. Tks.

    Ninja Lead Moderator
    #540618

    <em>@hbf1000 434423 wrote:</em><blockquote>Hi TOM, tks for the reply, but I have already tried thoses resources. The problem is that the error.php file that I found inside template/system did not had the code that was mentioned on those resources. Tks.</blockquote>

    You can try my suggestions below:

    + Copy the templates/system/css/error.css file into your templates/ja_elastica/css directory

    + Copy the templates/system/error.php file into your templates/ja_elastica directory.

    + Open the templates/ja_elastica/error.php file and override whole source code in error.php file with script below:


    <?php
    /**
    * @package Joomla.Site
    * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
    * @license GNU General Public License version 2 or later; see LICENSE.txt
    */

    defined('_JEXEC') or die;
    if (!isset($this->error)) {
    $this->error = JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
    $this->debug = false;
    }
    //get language and direction
    $doc = JFactory::getDocument();
    $this->language = $doc->language;
    $this->direction = $doc->direction;
    ?>
    <!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" 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/ja_elastica/css/error.css" type="text/css" />
    </head>
    <body>
    <div class="error">
    <div id="outline">
    <div id="errorboxoutline">
    <div id="errorboxheader"><?php echo $this->error->getCode(); ?>, <?php echo $this->error->getMessage(); ?></div>
    <div class="errormenu"><?php echo JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES'); ?> <a 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> Or <?php echo JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR'); ?>
    </div>
    <div id="techinfo">
    <p>
    <?php if ($this->debug) :
    echo $this->renderBacktrace();
    endif; ?>
    </p>
    </div>
    </div>
    </div>
    </div>
    </body>
    </html>

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 3 voices, and was last updated by  Ninja Lead 10 years, 4 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum