Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
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();
$app = JFactory::getApplication();
$this->language = $doc->language;
$this->direction = $doc->direction;
if($this->error->getCode()=='404') {
header("HTTP/1.0 404 Not Found");
$url=JURI::root()."index.php?option=com_content&view=article&id=1001";
$data = file_get_contents($url) or die("Cannot open URL");
echo $data;
}
Это нужно создать материал и запомнить его ID, этот ID материала вставить вместо 1001Спасибо сейчас сделаю, а куда должна вести ссылка index.php?option=com_content&view=article&id=1001
<?php
defined('_JEXEC') or die;
?>
<?php
if ($this->error->getCode() == '404') {
echo file_get_contents(JURI::root().'/404');
}
?>
Для просмотра ссылки ВойдиА кокого нибудь плагина нет хитрого для этого?