Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/joomla4/ |
| [Home] [System Details] [Kill Me] |
home/lmsyaran/public_html/joomla3/templates/system/error.php000064400000010245147365265360020377
0ustar00<?php
/**
* @package Joomla.Site
* @subpackage Template.system
*
* @copyright (C) 2006 Open Source Matters, Inc.
<https://www.joomla.org>
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/** @var JDocumentError $this */
if (!isset($this->error))
{
$this->error = JError::raiseWarning(404,
JText::_('JERROR_ALERTNOAUTHOR'));
$this->debug = false;
}
$app = JFactory::getApplication();
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->error->getCode(); ?> - <?php
echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/error.css"
rel="stylesheet" />
<?php if ($this->direction === 'rtl') : ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/error_rtl.css" rel="stylesheet" />
<?php endif; ?>
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body>
<div class="error">
<div id="outline">
<div id="errorboxoutline">
<div id="errorboxheader"><?php echo
$this->error->getCode(); ?> - <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></div>
<div id="errorboxbody">
<p><strong><?php echo
JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT');
?></strong></p>
<ol>
<li><?php echo
JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST');
?></li>
</ol>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES');
?></strong></p>
<ul>
<li><a href="<?php echo JUri::root(true);
?>/index.php" title="<?php echo
JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE');
?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE');
?></a></li>
</ul>
<p><?php echo
JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR');
?></p>
<div id="techinfo">
<p>
<?php echo htmlspecialchars($this->error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</p>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data
as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the loop
so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
home/lmsyaran/public_html/j3/libraries/legacy/error/error.php000064400000053310151160721720020357
0ustar00<?php
/**
* @package Joomla.Legacy
* @subpackage Error
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('JPATH_PLATFORM') or die;
/**
* Error Definition: Illegal Options
*
* @var integer
* @since 1.5
* @deprecated 4.0
*/
const JERROR_ILLEGAL_OPTIONS = 1;
/**
* Error Definition: Callback does not exist
*
* @var integer
* @since 1.5
* @deprecated 4.0
*/
const JERROR_CALLBACK_NOT_CALLABLE = 2;
/**
* Error Definition: Illegal Handler
*
* @var integer
* @since 1.5
* @deprecated 4.0
*/
const JERROR_ILLEGAL_MODE = 3;
/**
* Error Handling Class
*
* This class is inspired in design and concept by patErrorManager
<http://www.php-tools.net>
*
* patErrorManager contributors include:
* - gERD Schaufelberger <gerd@php-tools.net>
* - Sebastian Mordziol <argh@php-tools.net>
* - Stephan Schmidt <scst@php-tools.net>
*
* @since 1.5
* @deprecated 4.0 Will be removed without replacement
*/
abstract class JError
{
/**
* Legacy error handling marker
*
* @var boolean True to enable legacy error handling using JError,
false to use exception handling. This flag
* is present to allow an easy transition into exception
handling for code written against the
* existing JError API in Joomla.
* @since 1.7
* @deprecated 4.0
*/
public static $legacy = false;
/**
* Array of message levels
*
* @var array
* @since 1.6
* @deprecated 4.0
*/
protected static $levels = array(E_NOTICE => 'Notice',
E_WARNING => 'Warning', E_ERROR => 'Error');
/**
* Array of message handlers
*
* @var array
* @since 1.6
* @deprecated 4.0
*/
protected static $handlers = array(
E_NOTICE => array('mode' => 'ignore'),
E_WARNING => array('mode' => 'ignore'),
E_ERROR => array('mode' => 'ignore'),
);
/**
* Array containing the error stack
*
* @var JException[]
* @since 1.6
* @deprecated 4.0
*/
protected static $stack = array();
/**
* Method to determine if a value is an exception object.
*
* @param mixed $object Object to check.
*
* @return boolean True if argument is an exception, false otherwise.
*
* @since 1.5
* @deprecated 4.0
*/
public static function isError($object)
{
JLog::add('JError::isError() is deprecated.', JLog::WARNING,
'deprecated');
return $object instanceof Exception;
}
/**
* Method for retrieving the last exception object in the error stack
*
* @param boolean $unset True to remove the error from the stack.
*
* @return JException|boolean Last JException object in the error stack
or boolean false if none exist
*
* @since 1.5
* @deprecated 4.0
*/
public static function getError($unset = false)
{
JLog::add('JError::getError() is deprecated.', JLog::WARNING,
'deprecated');
if (!isset(self::$stack[0]))
{
return false;
}
if ($unset)
{
$error = array_shift(self::$stack);
}
else
{
$error = &self::$stack[0];
}
return $error;
}
/**
* Method for retrieving the exception stack
*
* @return JException[] Chronological array of errors that have been
stored during script execution
*
* @since 1.5
* @deprecated 4.0
*/
public static function getErrors()
{
JLog::add('JError::getErrors() is deprecated.', JLog::WARNING,
'deprecated');
return self::$stack;
}
/**
* Method to add non-JError thrown JExceptions to the JError stack for
debugging purposes
*
* @param JException $e Add an exception to the stack.
*
* @return void
*
* @since 1.6
* @deprecated 4.0
*/
public static function addToStack(JException $e)
{
JLog::add('JError::addToStack() is deprecated.', JLog::WARNING,
'deprecated');
self::$stack[] = &$e;
}
/**
* Create a new JException object given the passed arguments
*
* @param integer $level The error level - use any of PHP's
own error levels for
* this: E_ERROR, E_WARNING, E_NOTICE,
E_USER_ERROR,
* E_USER_WARNING, E_USER_NOTICE.
* @param string $code The application-internal error code for
this error
* @param string $msg The error message, which may also be
shown the user if need be.
* @param mixed $info Optional: Additional error information
(usually only
* developer-relevant information that the
user should never see,
* like a database DSN).
* @param boolean $backtrace Add a stack backtrace to the exception.
*
* @return JException
*
* @since 1.5
* @deprecated 4.0
* @see JException
*/
public static function raise($level, $code, $msg, $info = null, $backtrace
= false)
{
JLog::add('JError::raise() is deprecated.', JLog::WARNING,
'deprecated');
// Build error object
$exception = new JException($msg, $code, $level, $info, $backtrace);
return self::throwError($exception);
}
/**
* Throw an error
*
* @param JException &$exception An exception to throw.
*
* @return JException A reference to the handled JException object
*
* @since 1.6
* @deprecated 4.0 Just throw an Exception
* @see JException
*/
public static function throwError(&$exception)
{
JLog::add('JError::throwError() is deprecated.', JLog::WARNING,
'deprecated');
static $thrown = false;
// If thrown is hit again, we've come back to JError in the middle
of throwing another JError, so die!
if ($thrown)
{
self::handleEcho($exception, array());
// Inifite loop.
jexit();
}
$thrown = true;
$level = $exception->get('level');
// See what to do with this kind of error
$handler = self::getErrorHandling($level);
$function = 'handle' . ucfirst($handler['mode']);
if (is_callable(array('JError', $function)))
{
$reference = call_user_func_array(array('JError', $function),
array(&$exception, isset($handler['options']) ?
$handler['options'] : array()));
}
else
{
// This is required to prevent a very unhelpful white-screen-of-death
jexit(
'JError::raise -> Static method JError::' . $function .
' does not exist. Contact a developer to debug' .
'<br /><strong>Error was</strong> <br
/>' . $exception->getMessage()
);
}
// We don't need to store the error, since JException already does
that for us!
// Remove loop check
$thrown = false;
return $reference;
}
/**
* Wrapper method for the raise() method with predefined error level of
E_ERROR and backtrace set to true.
*
* @param string $code The application-internal error code for this
error
* @param string $msg The error message, which may also be shown the
user if need be.
* @param mixed $info Optional: Additional error information (usually
only
* developer-relevant information that the user
should
* never see, like a database DSN).
*
* @return JException $error The thrown JException object
*
* @since 1.5
* @deprecated 4.0 Just throw an Exception
* @see JError::raise()
*/
public static function raiseError($code, $msg, $info = null)
{
JLog::add('JError::raiseError() is deprecated.', JLog::WARNING,
'deprecated');
return self::raise(E_ERROR, $code, $msg, $info, true);
}
/**
* Wrapper method for the {@link raise()} method with predefined error
level of E_WARNING and backtrace set to false.
*
* @param string $code The application-internal error code for this
error
* @param string $msg The error message, which may also be shown the
user if need be.
* @param mixed $info Optional: Additional error information (usually
only
* developer-relevant information that
* the user should never see, like a database
DSN).
*
* @return JException $error The thrown JException object
*
* @since 1.5
* @deprecated 4.0 Use
\Joomla\CMS\Factory::getApplication()->enqueueMessage($msg,
'warning') when wou want to notify the UI
* @see JError::raise()
*/
public static function raiseWarning($code, $msg, $info = null)
{
JLog::add('JError::raiseWarning() is deprecated.',
JLog::WARNING, 'deprecated');
return self::raise(E_WARNING, $code, $msg, $info);
}
/**
* Wrapper method for the {@link raise()} method with predefined error
level of E_NOTICE and backtrace set to false.
*
* @param string $code The application-internal error code for this
error
* @param string $msg The error message, which may also be shown the
user if need be.
* @param mixed $info Optional: Additional error information (usually
only
* developer-relevant information that the user
* should never see, like a database DSN).
*
* @return JException $error The thrown JException object
*
* @since 1.5
* @deprecated 4.0 Use
\Joomla\CMS\Factory::getApplication()->enqueueMessage($msg,
'notice') when wou want to notify the UI
* @see JError::raise()
*/
public static function raiseNotice($code, $msg, $info = null)
{
JLog::add('JError::raiseNotice() is deprecated.',
JLog::WARNING, 'deprecated');
return self::raise(E_NOTICE, $code, $msg, $info);
}
/**
* Method to get the current error handler settings for a specified error
level.
*
* @param integer $level The error level to retrieve. This can be any
of PHP's
* own error levels, e.g. E_ALL, E_NOTICE...
*
* @return array All error handling details
*
* @since 1.5
* @deprecated 4.0
*/
public static function getErrorHandling($level)
{
JLog::add('JError::getErrorHandling() is deprecated.',
JLog::WARNING, 'deprecated');
return self::$handlers[$level];
}
/**
* Method to set the way the JError will handle different error levels.
Use this if you want to override the default settings.
*
* Error handling modes:
* - ignore
* - echo
* - verbose
* - die
* - message
* - log
* - callback
*
* You may also set the error handling for several modes at once using
PHP's bit operations.
* Examples:
* - E_ALL = Set the handling for all levels
* - E_ERROR | E_WARNING = Set the handling for errors and warnings
* - E_ALL ^ E_ERROR = Set the handling for all levels except errors
*
* @param integer $level The error level for which to set the error
handling
* @param string $mode The mode to use for the error handling.
* @param mixed $options Optional: Any options needed for the given
mode.
*
* @return boolean|JException True on success or a JException object if
failed.
*
* @since 1.5
* @deprecated 4.0
*/
public static function setErrorHandling($level, $mode, $options = null)
{
JLog::add('JError::setErrorHandling() is deprecated.',
JLog::WARNING, 'deprecated');
$levels = self::$levels;
$function = 'handle' . ucfirst($mode);
if (!is_callable(array('JError', $function)))
{
return self::raiseError(E_ERROR, 'JError:' .
JERROR_ILLEGAL_MODE, 'Error Handling mode is not known',
'Mode: ' . $mode . ' is not implemented.');
}
foreach ($levels as $eLevel => $eTitle)
{
if (($level & $eLevel) !== $eLevel)
{
continue;
}
// Set callback options
if ($mode === 'callback')
{
if (!is_array($options))
{
return self::raiseError(E_ERROR, 'JError:' .
JERROR_ILLEGAL_OPTIONS, 'Options for callback not valid');
}
if (!is_callable($options))
{
$tmp = array('GLOBAL');
if (is_array($options))
{
$tmp[0] = $options[0];
$tmp[1] = $options[1];
}
else
{
$tmp[1] = $options;
}
return self::raiseError(
E_ERROR,
'JError:' . JERROR_CALLBACK_NOT_CALLABLE,
'Function is not callable',
'Function:' . $tmp[1] . ' scope ' . $tmp[0] .
'.'
);
}
}
// Save settings
self::$handlers[$eLevel] = array('mode' => $mode);
if ($options != null)
{
self::$handlers[$eLevel]['options'] = $options;
}
}
return true;
}
/**
* Method that attaches the error handler to JError
*
* @return void
*
* @since 1.5
* @deprecated 4.0
* @see set_error_handler
*/
public static function attachHandler()
{
JLog::add('JError::getErrorHandling() is deprecated.',
JLog::WARNING, 'deprecated');
set_error_handler(array('JError',
'customErrorHandler'));
}
/**
* Method that detaches the error handler from JError
*
* @return void
*
* @since 1.5
* @deprecated 4.0
* @see restore_error_handler
*/
public static function detachHandler()
{
JLog::add('JError::detachHandler() is deprecated.',
JLog::WARNING, 'deprecated');
restore_error_handler();
}
/**
* Method to register a new error level for handling errors
*
* This allows you to add custom error levels to the built-in
* - E_NOTICE
* - E_WARNING
* - E_NOTICE
*
* @param integer $level Error level to register
* @param string $name Human readable name for the error level
* @param string $handler Error handler to set for the new error
level [optional]
*
* @return boolean True on success; false if the level already has been
registered
*
* @since 1.5
* @deprecated 4.0
*/
public static function registerErrorLevel($level, $name, $handler =
'ignore')
{
JLog::add('JError::registerErrorLevel() is deprecated.',
JLog::WARNING, 'deprecated');
if (isset(self::$levels[$level]))
{
return false;
}
self::$levels[$level] = $name;
self::setErrorHandling($level, $handler);
return true;
}
/**
* Translate an error level integer to a human readable string
* e.g. E_ERROR will be translated to 'Error'
*
* @param integer $level Error level to translate
*
* @return string|boolean Human readable error level name or boolean
false if it doesn't exist
*
* @since 1.5
* @deprecated 4.0
*/
public static function translateErrorLevel($level)
{
JLog::add('JError::translateErrorLevel() is deprecated.',
JLog::WARNING, 'deprecated');
if (isset(self::$levels[$level]))
{
return self::$levels[$level];
}
return false;
}
/**
* Ignore error handler
* - Ignores the error
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleIgnore(&$error, $options)
{
JLog::add('JError::handleIgnore() is deprecated.',
JLog::WARNING, 'deprecated');
return $error;
}
/**
* Echo error handler
* - Echos the error message to output
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleEcho(&$error, $options)
{
JLog::add('JError::handleEcho() is deprecated.', JLog::WARNING,
'deprecated');
$level_human =
self::translateErrorLevel($error->get('level'));
// If system debug is set, then output some more information.
if (JDEBUG)
{
$backtrace = $error->getTrace();
$trace = '';
for ($i = count($backtrace) - 1; $i >= 0; $i--)
{
if (isset($backtrace[$i]['class']))
{
$trace .= sprintf("\n%s %s %s()",
$backtrace[$i]['class'], $backtrace[$i]['type'],
$backtrace[$i]['function']);
}
else
{
$trace .= sprintf("\n%s()",
$backtrace[$i]['function']);
}
if (isset($backtrace[$i]['file']))
{
$trace .= sprintf(' @ %s:%d',
$backtrace[$i]['file'], $backtrace[$i]['line']);
}
}
}
if (isset($_SERVER['HTTP_HOST']))
{
// Output as html
echo "<br /><b>jos-$level_human</b>: "
. $error->get('message') . "<br />\n"
. (JDEBUG ? nl2br($trace) : '');
}
else
{
// Output as simple text
if (defined('STDERR'))
{
fwrite(STDERR, "J$level_human: " .
$error->get('message') . "\n");
if (JDEBUG)
{
fwrite(STDERR, $trace);
}
}
else
{
echo "J$level_human: " . $error->get('message')
. "\n";
if (JDEBUG)
{
echo $trace;
}
}
}
return $error;
}
/**
* Verbose error handler
* - Echos the error message to output as well as related info
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleVerbose(&$error, $options)
{
JLog::add('JError::handleVerbose() is deprecated.',
JLog::WARNING, 'deprecated');
$level_human =
self::translateErrorLevel($error->get('level'));
$info = $error->get('info');
if (isset($_SERVER['HTTP_HOST']))
{
// Output as html
echo "<br /><b>J$level_human</b>: " .
$error->get('message') . "<br />\n";
if ($info != null)
{
echo '   ' . $info . "<br
/>\n";
}
echo $error->getBacktrace(true);
}
else
{
// Output as simple text
echo "J$level_human: " . $error->get('message') .
"\n";
if ($info != null)
{
echo "\t" . $info . "\n";
}
}
return $error;
}
/**
* Die error handler
* - Echos the error message to output and then dies
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return void Calls die()
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleDie(&$error, $options)
{
JLog::add('JError::handleDie() is deprecated.', JLog::WARNING,
'deprecated');
$level_human =
self::translateErrorLevel($error->get('level'));
if (isset($_SERVER['HTTP_HOST']))
{
// Output as html
jexit("<br /><b>J$level_human</b>: " .
$error->get('message') . "<br />\n");
}
else
{
// Output as simple text
if (defined('STDERR'))
{
fwrite(STDERR, "J$level_human: " .
$error->get('message') . "\n");
jexit();
}
else
{
jexit("J$level_human: " . $error->get('message')
. "\n");
}
}
return $error;
}
/**
* Message error handler
* Enqueues the error message into the system queue
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleMessage(&$error, $options)
{
JLog::add('JError::hanleMessage() is deprecated.',
JLog::WARNING, 'deprecated');
$appl = JFactory::getApplication();
$type = ($error->get('level') == E_NOTICE) ?
'notice' : 'error';
$appl->enqueueMessage($error->get('message'), $type);
return $error;
}
/**
* Log error handler
* Logs the error message to a system log file
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleLog(&$error, $options)
{
JLog::add('JError::handleLog() is deprecated.', JLog::WARNING,
'deprecated');
static $log;
if ($log == null)
{
$options['text_file'] = date('Y-m-d') .
'.error.log';
$options['format'] =
"{DATE}\t{TIME}\t{LEVEL}\t{CODE}\t{MESSAGE}";
JLog::addLogger($options, JLog::ALL, array('error'));
}
$entry = new JLogEntry(
str_replace(array("\r", "\n"), array('',
'\\n'), $error->get('message')),
$error->get('level'),
'error'
);
$entry->code = $error->get('code');
JLog::add($entry);
return $error;
}
/**
* Callback error handler
* - Send the error object to a callback method for error handling
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleCallback(&$error, $options)
{
JLog::add('JError::handleCallback() is deprecated.',
JLog::WARNING, 'deprecated');
return call_user_func_array($options, array(&$error));
}
/**
* Display a custom error page and exit gracefully
*
* @param JException $error Exception object
*
* @return void
*
* @since 1.5
* @deprecated 4.0 Use \Joomla\CMS\Exception\ExceptionHandler::render()
instead
*/
public static function customErrorPage($error)
{
JLog::add('JError::customErrorPage() is deprecated, use
JErrorPage::render() instead.', JLog::WARNING,
'deprecated');
\Joomla\CMS\Exception\ExceptionHandler::render($error);
}
/**
* Display a message to the user
*
* @param integer $level The error level - use any of PHP's own
error levels
* for this: E_ERROR, E_WARNING, E_NOTICE, E_USER_ERROR,
* E_USER_WARNING, E_USER_NOTICE.
* @param string $msg Error message, shown to user if need be.
*
* @return void
*
* @since 1.5
* @deprecated 4.0 Throw an Exception or enqueue the message to the
application, eg.
\Joomla\CMS\Factory::getApplication()->enqueueMessage($msg)
*/
public static function customErrorHandler($level, $msg)
{
JLog::add('JError::customErrorHandler() is deprecated.',
JLog::WARNING, 'deprecated');
self::raise($level, '', $msg);
}
/**
* Render the backtrace
*
* @param Exception $error The error
*
* @return string Contents of the backtrace
*
* @since 1.6
* @deprecated 4.0 Use
JLayoutHelper::render('joomla.error.backtrace',
array('backtrace' => $error->getTrace())) instead
*/
public static function renderBacktrace($error)
{
JLog::add('JError::renderBacktrace() is deprecated.',
JLog::WARNING, 'deprecated');
return
\Joomla\CMS\Layout\LayoutHelper::render('joomla.error.backtrace',
array('backtrace' => $error->getTrace()));
}
}
home/lmsyaran/public_html/templates/system/error.php000064400000010262151163054560017017
0ustar00<?php
/**
* @package Joomla.Site
* @subpackage Template.system
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/** @var JDocumentError $this */
if (!isset($this->error))
{
$this->error = JError::raiseWarning(404,
JText::_('JERROR_ALERTNOAUTHOR'));
$this->debug = false;
}
$app = JFactory::getApplication();
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->error->getCode(); ?> - <?php
echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/error.css"
rel="stylesheet" />
<?php if ($this->direction === 'rtl') : ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/error_rtl.css" rel="stylesheet" />
<?php endif; ?>
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body>
<div class="error">
<div id="outline">
<div id="errorboxoutline">
<div id="errorboxheader"><?php echo
$this->error->getCode(); ?> - <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></div>
<div id="errorboxbody">
<p><strong><?php echo
JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT');
?></strong></p>
<ol>
<li><?php echo
JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST');
?></li>
</ol>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES');
?></strong></p>
<ul>
<li><a href="<?php echo JUri::root(true);
?>/index.php" title="<?php echo
JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE');
?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE');
?></a></li>
</ul>
<p><?php echo
JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR');
?></p>
<div id="techinfo">
<p>
<?php echo htmlspecialchars($this->error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</p>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data
as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the loop
so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
home/lmsyaran/public_html/templates/protostar/error.php000064400000022767151163054570017546
0ustar00<?php
/**
* @package Joomla.Site
* @subpackage Templates.protostar
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/** @var JDocumentError $this */
$app = JFactory::getApplication();
$user = JFactory::getUser();
// Getting params from template
$params = $app->getTemplate(true)->params;
// Detecting Active Variables
$option = $app->input->getCmd('option', '');
$view = $app->input->getCmd('view', '');
$layout = $app->input->getCmd('layout', '');
$task = $app->input->getCmd('task', '');
$itemid = $app->input->getCmd('Itemid', '');
$format = $app->input->getCmd('format',
'html');
$sitename = htmlspecialchars($app->get('sitename'),
ENT_QUOTES, 'UTF-8');
if ($task === 'edit' || $layout === 'form')
{
$fullWidth = 1;
}
else
{
$fullWidth = 0;
}
// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');
// Logo file or site title param
if ($params->get('logoFile'))
{
$logo = '<img src="' . JUri::root() .
$params->get('logoFile') . '" alt="' .
$sitename . '" />';
}
elseif ($params->get('sitetitle'))
{
$logo = '<span class="site-title" title="' .
$sitename . '">' .
htmlspecialchars($params->get('sitetitle')) .
'</span>';
}
else
{
$logo = '<span class="site-title" title="' .
$sitename . '">' . $sitename . '</span>';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->title; ?> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<?php // Use of Google Font ?>
<?php if ($params->get('googleFont')) : ?>
<link href="https://fonts.googleapis.com/css?family=<?php echo
$params->get('googleFontName'); ?>"
rel="stylesheet" />
<style>
h1, h2, h3, h4, h5, h6, .site-title {
font-family: '<?php echo str_replace('+', '
', $params->get('googleFontName')); ?>',
sans-serif;
}
</style>
<?php endif; ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/template.css" rel="stylesheet" />
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<?php // If Right-to-Left ?>
<?php if ($this->direction === 'rtl') : ?>
<link href="<?php echo JUri::root(true);
?>/media/jui/css/bootstrap-rtl.css" rel="stylesheet"
/>
<?php endif; ?>
<?php if (file_exists('templates/' . $this->template .
'/css/user.css')) : ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/user.css"
rel="stylesheet" />
<?php endif; ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/favicon.ico"
rel="shortcut icon" type="image/vnd.microsoft.icon"
/>
<?php // Template color ?>
<?php if ($params->get('templateColor')) : ?>
<style>
body.site {
border-top: 3px solid <?php echo
$params->get('templateColor'); ?>;
background-color: <?php echo
$params->get('templateBackgroundColor'); ?>
}
a {
color: <?php echo $params->get('templateColor'); ?>;
}
.navbar-inner, .nav-list > .active > a, .nav-list > .active
> a:hover, .dropdown-menu li > a:hover, .dropdown-menu .active >
a, .dropdown-menu .active > a:hover, .nav-pills > .active > a,
.nav-pills > .active > a:hover {
background: <?php echo $params->get('templateColor');
?>;
}
.navbar-inner {
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0,
0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0
rgba(0, 0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0, 0,
.1), inset 0 30px 10px rgba(0, 0, 0, .2);
}
</style>
<?php endif; ?>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body class="site <?php echo $option
. ' view-' . $view
. ($layout ? ' layout-' . $layout : ' no-layout')
. ($task ? ' task-' . $task : ' no-task')
. ($itemid ? ' itemid-' . $itemid : '')
. ($params->get('fluidContainer') ? ' fluid' :
'')
. ($this->direction === 'rtl' ? ' rtl' :
'');
?>">
<!-- Body -->
<div class="body" id="top">
<div class="container<?php echo
($params->get('fluidContainer') ? '-fluid' :
''); ?>">
<!-- Header -->
<header class="header" role="banner">
<div class="header-inner clearfix">
<a class="brand pull-left" href="<?php echo
$this->baseurl; ?>/">
<?php echo $logo; ?>
</a>
<?php if ($format === 'html') : ?>
<div class="header-search pull-right">
<?php // Display position-0 modules ?>
<?php echo
$this->loadRenderer('modules')->render('position-0',
array('style' => 'none')); ?>
</div>
<?php endif; ?>
</div>
</header>
<?php if ($format === 'html') : ?>
<nav class="navigation" role="navigation">
<?php // Display position-1 modules ?>
<?php echo
$this->loadRenderer('modules')->render('position-1',
array('style' => 'none')); ?>
</nav>
<?php endif; ?>
<!-- Banner -->
<?php if ($format === 'html') : ?>
<div class="banner">
<?php echo
$this->loadRenderer('modules')->render('banner',
array('style' => 'xhtml')); ?>
</div>
<?php endif; ?>
<div class="row-fluid">
<main id="content" role="main"
class="span12">
<!-- Begin Content -->
<h1 class="page-header"><?php echo
JText::_('JERROR_LAYOUT_PAGE_NOT_FOUND'); ?></h1>
<div class="well">
<div class="row-fluid">
<div class="span6">
<p><strong><?php echo
JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST');
?></strong></p>
<p><?php echo
JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></p>
<ul>
<li><?php echo
JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE');
?></li>
</ul>
</div>
<div class="span6">
<?php if ($format === 'html' &&
JModuleHelper::getModule('mod_search')) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_SEARCH'); ?></strong></p>
<p><?php echo
JText::_('JERROR_LAYOUT_SEARCH_PAGE'); ?></p>
<?php $module =
JModuleHelper::getModule('mod_search'); ?>
<?php echo JModuleHelper::renderModule($module); ?>
<?php endif; ?>
<p><?php echo
JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?></p>
<p><a href="<?php echo $this->baseurl;
?>/index.php" class="btn"><span
class="icon-home" aria-hidden="true"></span>
<?php echo JText::_('JERROR_LAYOUT_HOME_PAGE');
?></a></p>
</div>
</div>
<hr />
<p><?php echo
JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR');
?></p>
<blockquote>
<span class="label label-inverse"><?php echo
$this->error->getCode(); ?></span> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8');?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</blockquote>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their
data as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the
loop so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo
htmlspecialchars($this->_error->getMessage(), ENT_QUOTES,
'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<!-- End Content -->
</main>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer" role="contentinfo">
<div class="container<?php echo
($params->get('fluidContainer') ? '-fluid' :
''); ?>">
<hr />
<?php if ($format === 'html') : ?>
<?php echo
$this->loadRenderer('modules')->render('footer',
array('style' => 'none')); ?>
<?php endif; ?>
<p class="pull-right">
<a href="#top" id="back-top">
<?php echo JText::_('TPL_PROTOSTAR_BACKTOTOP'); ?>
</a>
</p>
<p>
© <?php echo date('Y'); ?> <?php echo
$sitename; ?>
</p>
</div>
</footer>
<?php if ($format === 'html') : ?>
<?php echo
$this->loadRenderer('modules')->render('debug',
array('style' => 'none')); ?>
<?php endif; ?>
</body>
</html>
home/lmsyaran/public_html/templates/g5_hydrogen/error.php000064400000001674151163163210017705
0ustar00<?php
/**
* @package Gantry 5 Theme
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2017 RocketTheme, LLC
* @license GNU/GPLv2 and later
*
* http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die;
// Bootstrap Gantry framework or fail gracefully (inside included file).
$gantry = include __DIR__ . '/includes/gantry.php';
/** @var \Gantry\Framework\Theme $theme */
$theme = $gantry['theme'];
$context = array(
'errorcode' => isset($this->error) ?
$this->error->getCode() : null,
'error' => isset($this->error) ?
$this->error->getMessage() : null,
'debug' => $app->get('debug_lang',
'0') == '1' || $app->get('debug',
'0') == '1',
'backtrace' => $this->debug ?
$this->renderBacktrace() : null
);
// Reset used outline configuration.
unset($gantry['configuration']);
// Render the page.
echo $theme
->setLayout('_error', true)
->render('error.html.twig', $context);
home/lmsyaran/public_html/j3/logss/error.php000064400000017644151163215750015153
0ustar00#
#<?php die('Forbidden.'); ?>
#Date: 2024-12-18 10:23:14 UTC
#Software: Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00
GMT
#Fields: datetime priority clientip category message
2024-12-18T10:23:14+00:00 INFO 138.255.30.90 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:23:36+00:00 INFO 138.255.30.90 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:23:37+00:00 INFO 138.255.30.90 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:23:39+00:00 INFO 138.255.30.90 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:23:53+00:00 INFO 109.70.100.5 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:23:55+00:00 INFO 109.70.100.1 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:24:04+00:00 INFO 192.42.116.200 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:24:07+00:00 INFO 45.134.225.36 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T10:24:12+00:00 INFO 185.40.4.94 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:37+00:00 INFO 89.147.68.108 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:37+00:00 INFO 89.147.68.108 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:38+00:00 INFO 89.147.68.108 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:38+00:00 INFO 89.147.68.108 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:39+00:00 INFO 89.147.68.108 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:43+00:00 INFO 185.220.100.250 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:44+00:00 INFO 185.220.100.246 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:47+00:00 INFO 185.220.101.10 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:48+00:00 INFO 185.220.101.70 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T11:03:49+00:00 INFO 192.42.116.198 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T14:12:37+00:00 INFO 148.113.175.246 joomlacanceled
2024-12-18T14:37:13+00:00 INFO 148.113.175.246 joomlacanceled
2024-12-18T21:59:28+00:00 INFO 103.87.68.58 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-18T22:08:14+00:00 INFO 103.87.68.58 joomlacanceled
2024-12-18T22:08:43+00:00 INFO 103.87.68.58 joomlacanceled
2024-12-18T22:08:55+00:00 INFO 103.87.68.58 joomlacanceled
2024-12-18T23:17:53+00:00 INFO 148.113.175.246 joomlacanceled
2024-12-19T08:20:46+00:00 INFO 206.189.83.126 joomlacanceled
2024-12-19T09:07:30+00:00 INFO 103.87.68.153 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-19T11:08:16+00:00 INFO 178.128.94.68 joomlacanceled
2024-12-19T11:20:42+00:00 INFO 157.230.253.43 joomlacanceled
2024-12-19T13:52:49+00:00 INFO 104.28.233.73 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-19T14:25:04+00:00 INFO 104.28.233.73 joomlacanceled
2024-12-19T20:20:05+00:00 INFO 148.113.175.246 joomlacanceled
2024-12-20T18:16:27+00:00 INFO 45.251.228.110 joomlacanceled
2024-12-23T03:26:25+00:00 INFO 151.83.71.9 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-23T03:26:25+00:00 INFO 151.83.71.9 joomlacanceled
2024-12-23T03:48:14+00:00 INFO 170.205.30.30 joomlacanceled
2024-12-23T08:26:04+00:00 INFO 193.32.126.212 joomlacanceled
2024-12-23T09:03:12+00:00 INFO 148.113.175.246 joomlacanceled
2024-12-23T09:21:34+00:00 INFO 148.113.175.246 joomlacanceled
2024-12-24T00:05:32+00:00 INFO 156.253.164.22 joomlacanceled
2024-12-24T00:16:48+00:00 INFO 128.199.206.127 joomlacanceled
2024-12-24T09:44:52+00:00 INFO 103.54.154.251 joomlacanceled
2024-12-24T10:41:42+00:00 INFO 185.213.83.103 joomlacanceled
2024-12-24T11:07:32+00:00 INFO 139.99.34.216 joomlacanceled
2024-12-24T12:16:49+00:00 INFO 128.199.206.127 joomlacanceled
2024-12-24T12:24:21+00:00 INFO 104.28.233.73 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-24T12:24:44+00:00 INFO 104.28.233.73 joomlacanceled
2024-12-25T09:00:50+00:00 INFO 128.199.206.127 joomlacanceled
2024-12-25T10:34:08+00:00 INFO 122.154.118.162 joomlacanceled
2024-12-25T20:02:11+00:00 INFO 159.223.34.173 joomlacanceled
2024-12-25T23:18:27+00:00 INFO 159.223.34.173 joomlacanceled
2024-12-25T23:35:08+00:00 INFO 159.223.34.173 joomlacanceled
2024-12-26T02:41:44+00:00 INFO 193.32.126.212 joomlacanceled
2024-12-26T04:24:59+00:00 INFO 217.15.163.107 joomlacanceled
2024-12-26T06:20:18+00:00 INFO 193.32.126.212 joomlacanceled
2024-12-26T09:09:08+00:00 INFO 217.15.163.107 joomlacanceled
2024-12-26T13:24:37+00:00 INFO 152.42.215.199 joomlacanceled
2024-12-26T13:59:24+00:00 INFO 193.32.126.212 joomlacanceled
2024-12-26T15:42:18+00:00 INFO 139.99.123.92 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-26T16:10:43+00:00 INFO 159.223.57.26 joomlacanceled
2024-12-26T17:17:41+00:00 INFO 217.15.163.107 joomlacanceled
2024-12-26T18:05:53+00:00 INFO 168.119.177.222 joomlacanceled
2024-12-26T19:08:02+00:00 INFO 168.119.177.222 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-27T07:33:52+00:00 INFO 162.55.6.123 joomlacanceled
2024-12-27T07:39:36+00:00 INFO 122.154.118.162 joomlacanceled
2024-12-27T07:52:38+00:00 INFO 193.32.126.212 joomlacanceled
2024-12-27T08:16:10+00:00 INFO 162.55.6.123 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-27T08:32:02+00:00 INFO 193.32.126.212 joomlacanceled
2024-12-27T09:56:23+00:00 INFO 128.199.206.127 joomlacanceled
2024-12-27T10:08:14+00:00 INFO 128.199.206.127 joomlacanceled
2024-12-27T11:44:56+00:00 INFO 139.99.34.216 joomlacanceled
2024-12-27T12:32:38+00:00 INFO 208.77.22.212 joomlacanceled
2024-12-27T12:34:07+00:00 INFO 208.77.22.212 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-27T19:14:27+00:00 INFO 185.156.174.27 joomlacanceled
2024-12-27T19:29:17+00:00 INFO 79.142.69.160 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-27T23:34:46+00:00 INFO 47.84.54.7 joomlacanceled
2024-12-28T03:03:39+00:00 INFO 138.199.15.173 joomlacanceled
2024-12-28T09:05:35+00:00 INFO 185.213.83.153 joomlacanceled
2024-12-28T12:10:23+00:00 INFO 143.198.198.4 joomlacanceled
2024-12-28T12:45:40+00:00 INFO 182.2.132.233 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-28T12:47:35+00:00 INFO 182.2.132.233 joomlacanceled
2024-12-28T12:47:44+00:00 INFO 182.2.132.233 joomlacanceled
2024-12-28T12:47:54+00:00 INFO 182.2.132.233 joomlacanceled
2024-12-28T22:41:20+00:00 INFO 51.89.199.117 joomlacanceled
2024-12-28T22:41:20+00:00 INFO 51.89.199.117 joomlafailure Username and
password do not match or you do not have an account yet.
2024-12-29T03:01:14+00:00 INFO 45.134.79.102 joomlacanceled
2024-12-29T06:17:48+00:00 INFO 134.209.109.184 joomlacanceled
2025-01-04T11:02:25+00:00 INFO 178.131.147.52 joomlafailure Username and
password do not match or you do not have an account yet.
2025-01-08T12:28:50+00:00 INFO 5.75.239.182 joomlafailure Username and
password do not match or you do not have an account yet.
2025-01-08T12:28:54+00:00 INFO 5.75.239.182 joomlafailure Username and
password do not match or you do not have an account yet.
home/lmsyaran/public_html/templates/beez3/error.php000064400000020506151163427720016507
0ustar00<?php
/**
* @package Joomla.Site
* @subpackage Templates.beez3
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/** @var JDocumentError $this */
$showRightColumn = 0;
$showleft = 0;
$showbottom = 0;
// Get params
$app = JFactory::getApplication();
$params = $app->getTemplate(true)->params;
$logo = $params->get('logo');
$color = $params->get('templatecolor');
$navposition = $params->get('navposition');
$format = $app->input->getCmd('format',
'html');
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->error->getCode(); ?> - <?php
echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<link href="<?php echo $this->baseurl;
?>/templates/system/css/system.css" rel="stylesheet"
/>
<link href="<?php echo $this->baseurl;
?>/templates/system/css/error.css" rel="stylesheet" />
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/position.css" rel="stylesheet"
media="screen" />
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/layout.css" rel="stylesheet"
media="screen" />
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/print.css"
rel="stylesheet" media="print" />
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/<?php echo
htmlspecialchars($color); ?>.css" rel="stylesheet" />
<?php $files = JHtml::_('stylesheet',
'general.css', array('relative' => true,
'returnPath' => true)); ?>
<?php if ($files) : ?>
<?php if (!is_array($files)) : ?>
<?php $files = array($files); ?>
<?php endif; ?>
<?php foreach ($files as $file) : ?>
<link href="<?php echo $file; ?>"
rel="stylesheet" />
<?php endforeach; ?>
<?php endif; ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/<?php echo
htmlspecialchars($color, ENT_COMPAT, 'UTF-8'); ?>.css"
rel="stylesheet" />
<?php if ($this->direction === 'rtl') : ?>
<link href="<?php echo $this->baseurl
?>/templates/<?php echo $this->template;
?>/css/template_rtl.css" rel="stylesheet" />
<?php if (file_exists(JPATH_SITE . '/templates/' .
$this->template . '/css/' . $color . '_rtl.css')) :
?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/<?php echo
htmlspecialchars($color, ENT_COMPAT, 'UTF-8');
?>_rtl.css" rel="stylesheet" />
<?php endif; ?>
<?php endif; ?>
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<!--[if lte IE 6]><link href="<?php echo
$this->baseurl; ?>/templates/<?php echo $this->template;
?>/css/ieonly.css" rel="stylesheet"
/><![endif]-->
<!--[if IE 7]><link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/ie7only.css" rel="stylesheet"
/><![endif]-->
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
<style>
<!--
#errorboxbody
{margin:30px}
#errorboxbody h2
{font-weight:normal;
font-size:1.5em}
#searchbox
{background:#eee;
padding:10px;
margin-top:20px;
border:solid 1px #ddd
}
-->
</style>
</head>
<body>
<div id="all">
<div id="back">
<div id="header">
<div class="logoheader">
<h1 id="logo">
<?php if ($logo) : ?>
<img src="<?php echo $this->baseurl; ?>/<?php
echo htmlspecialchars($logo); ?>" alt="<?php echo
htmlspecialchars($params->get('sitetitle')); ?>" />
<?php else : ?>
<?php echo
htmlspecialchars($params->get('sitetitle')); ?>
<?php endif; ?>
<span class="header1">
<?php echo
htmlspecialchars($params->get('sitedescription')); ?>
</span>
</h1>
</div><!-- end logoheader -->
<ul class="skiplinks">
<li>
<a href="#wrapper2" class="u2">
<?php echo
JText::_('TPL_BEEZ3_SKIP_TO_ERROR_CONTENT'); ?>
</a>
</li>
<li>
<a href="#nav" class="u2">
<?php echo JText::_('TPL_BEEZ3_ERROR_JUMP_TO_NAV');
?>
</a>
</li>
</ul>
<div id="line">
</div><!-- end line -->
</div><!-- end header -->
<div id="contentarea2" >
<div class="left1" id="nav">
<h2 class="unseen">
<?php echo JText::_('TPL_BEEZ3_NAVIGATION'); ?>
</h2>
<?php $module = JModuleHelper::getModule('menu'); ?>
<?php echo JModuleHelper::renderModule($module); ?>
</div><!-- end navi -->
<div id="wrapper2">
<div id="errorboxbody">
<h2>
<?php echo JText::_('JERROR_LAYOUT_PAGE_NOT_FOUND');
?>
</h2>
<h3><?php echo
JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST');
?></h3>
<p><?php echo
JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></p>
<ul>
<li><?php echo
JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE');
?></li>
</ul>
<?php if ($format === 'html' &&
JModuleHelper::getModule('mod_search')) : ?>
<div id="searchbox">
<h3 class="unseen">
<?php echo JText::_('TPL_BEEZ3_SEARCH'); ?>
</h3>
<p>
<?php echo JText::_('JERROR_LAYOUT_SEARCH'); ?>
</p>
<?php $module =
JModuleHelper::getModule('mod_search'); ?>
<?php echo JModuleHelper::renderModule($module); ?>
</div><!-- end searchbox -->
<?php endif; ?>
<div><!-- start goto home page -->
<p>
<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>
</p>
</div><!-- end goto home page -->
<h3>
<?php echo
JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR');
?>
</h3>
<h2>
#<?php echo $this->error->getCode();
?> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?>
</h2>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
<br />
</div><!-- end errorboxbody -->
</div><!-- end wrapper2 -->
</div><!-- end contentarea2 -->
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data
as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the loop
so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div><!--end back -->
</div><!--end all -->
<div id="footer-outer">
<div id="footer-sub">
<div id="footer">
<p>
<?php echo JText::_('TPL_BEEZ3_POWERED_BY'); ?>
<a href="https://www.joomla.org/">
Joomla!®
</a>
</p>
</div><!-- end footer -->
</div><!-- end footer-sub -->
</div><!-- end footer-outer-->
</body>
</html>
home/lmsyaran/public_html/administrator/templates/hathor/error.php000064400000006220151163442360021636
0ustar00<?php
/**
* @package Joomla.Administrator
* @subpackage Template.hathor
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/** @var JDocumentError $this */
$app = JFactory::getApplication();
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->title; ?> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/error.css" rel="stylesheet" />
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<!-- Load additional CSS styles for debug mode-->
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<!-- Load additional CSS styles for rtl sites -->
<?php if ($this->direction == 'rtl') : ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/template_rtl.css" rel="stylesheet" />
<?php endif; ?>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body class="errors">
<div>
<h1>
<?php echo $this->error->getCode(); ?> - <?php echo
JText::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?>
</h1>
</div>
<div>
<p>
<?php echo htmlspecialchars($this->error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</p>
<p><a href="index.php"><?php echo
JText::_('JGLOBAL_TPL_CPANEL_LINK_TEXT');
?></a></p>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data as
well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the loop
so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious()); ?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<div class="clr"></div>
<noscript>
<?php echo JText::_('JGLOBAL_WARNJAVASCRIPT'); ?>
</noscript>
</body>
</html>
home/lmsyaran/public_html/administrator/templates/isis/error.php000064400000030103151163446330021316
0ustar00<?php
/**
* @package Joomla.Administrator
* @subpackage Templates.isis
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\Registry\Registry;
/** @var JDocumentError $this */
// Getting params from template
$params = JFactory::getApplication()->getTemplate(true)->params;
$app = JFactory::getApplication();
$lang = JFactory::getLanguage();
$input = $app->input;
$user = JFactory::getUser();
// Gets the FrontEnd Main page Uri
$frontEndUri = JUri::getInstance(JUri::root());
$frontEndUri->setScheme(((int) $app->get('force_ssl', 0)
=== 2) ? 'https' : 'http');
$mainPageUri = $frontEndUri->toString();
// Detecting Active Variables
$option = $input->get('option', '');
$view = $input->get('view', '');
$layout = $input->get('layout', '');
$task = $input->get('task', '');
$itemid = $input->get('Itemid', 0, 'int');
$sitename = htmlspecialchars($app->get('sitename'),
ENT_QUOTES, 'UTF-8');
$cpanel = ($option === 'com_cpanel');
$showSubmenu = false;
$this->submenumodules = JModuleHelper::getModules('submenu');
foreach ($this->submenumodules as $submenumodule)
{
$output = JModuleHelper::renderModule($submenumodule);
if ($output !== '')
{
$showSubmenu = true;
break;
}
}
// Logo file
if ($params->get('logoFile'))
{
$logo = JUri::root() . $params->get('logoFile');
}
else
{
$logo = $this->baseurl . '/templates/' . $this->template .
'/images/logo.png';
}
// Template Parameters
$displayHeader = $params->get('displayHeader', '1');
$statusFixed = $params->get('statusFixed', '1');
$stickyToolbar = $params->get('stickyToolbar', '1');
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"
content="IE=edge" />
<title><?php echo $this->title; ?> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<!-- Load additional CSS styles for debug mode-->
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<?php // If Right-to-Left ?>
<?php if ($this->direction == 'rtl') : ?>
<link href="<?php echo JUri::root(true);
?>/media/jui/css/bootstrap-rtl.css" rel="stylesheet"
/>
<?php endif; ?>
<?php // Load specific language related CSS ?>
<?php $file = '/administrator/language/' . $lang->getTag()
. '/' . $lang->getTag() . '.css'; ?>
<?php if (is_file(JPATH_ROOT . $file)) : ?>
<link href="<?php echo JUri::root(true) . $file; ?>"
rel="stylesheet" />
<?php endif; ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/template<?php echo ($this->direction == 'rtl' ?
'-rtl' : ''); ?>.css"
rel="stylesheet" />
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/favicon.ico"
rel="shortcut icon" type="image/vnd.microsoft.icon"
/>
<?php // Template color ?>
<?php if ($params->get('templateColor')) : ?>
<style>
.navbar-inner, .navbar-inverse .navbar-inner, .nav-list > .active >
a, .nav-list > .active > a:hover, .dropdown-menu li > a:hover,
.dropdown-menu .active > a, .dropdown-menu .active > a:hover,
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle
{
background: <?php echo
$params->get('templateColor');?>;
}
.navbar-inner, .navbar-inverse .nav li.dropdown.open >
.dropdown-toggle, .navbar-inverse .nav li.dropdown.active >
.dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active >
.dropdown-toggle{
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0,
0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0,
0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0, 0,
.1), inset 0 30px 10px rgba(0, 0, 0, .2);
}
</style>
<?php endif; ?>
<?php // Template header color ?>
<?php if ($params->get('headerColor')) : ?>
<style>
.header
{
background: <?php echo
$params->get('headerColor');?>;
}
</style>
<?php endif; ?>
<?php // Sidebar background color ?>
<?php if ($params->get('sidebarColor')) : ?>
<style>
.nav-list > .active > a, .nav-list > .active > a:hover {
background: <?php echo $params->get('sidebarColor');
?>;
}
</style>
<?php endif; ?>
<script src="<?php echo JUri::root(true);
?>/media/jui/js/jquery.js"></script>
<script src="<?php echo JUri::root(true);
?>/media/jui/js/jquery-noconflict.js"></script>
<script src="<?php echo JUri::root(true);
?>/media/jui/js/bootstrap.js"></script>
<script src="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/js/template.js"></script>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body class="admin <?php echo $option . ' view-' .
$view . ' layout-' . $layout . ' task-' .
$task;?>" data-spy="scroll"
data-target=".subhead" data-offset="87">
<!-- Top Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<?php if ($params->get('admin_menus') != '0')
: ?>
<a class="btn btn-navbar"
data-toggle="collapse" data-target=".nav-collapse">
<span class="element-invisible"><?php echo
JTEXT::_('TPL_ISIS_TOGGLE_MENU'); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<?php endif; ?>
<a class="admin-logo" href="<?php echo
$this->baseurl; ?>"><span
class="icon-joomla"></span></a>
<a class="brand hidden-desktop hidden-tablet"
href="<?php echo $mainPageUri; ?>" title="<?php
echo JText::sprintf('TPL_ISIS_PREVIEW', $sitename); ?>"
target="_blank"><?php echo
JHtml::_('string.truncate', $sitename, 14, false, false); ?>
<span class="icon-out-2 small"></span></a>
<?php if ($params->get('admin_menus') != '0')
: ?>
<div class="nav-collapse">
<?php else : ?>
<div>
<?php endif; ?>
<?php // Display menu modules ?>
<?php $this->menumodules =
JModuleHelper::getModules('menu'); ?>
<?php foreach ($this->menumodules as $menumodule) : ?>
<?php $output = JModuleHelper::renderModule($menumodule,
array('style' => 'none')); ?>
<?php $params = new Registry($menumodule->params); ?>
<?php echo $output; ?>
<?php endforeach; ?>
<ul class="nav nav-user<?php echo ($this->direction ==
'rtl') ? ' pull-left' : ' pull-right';
?>">
<li class="dropdown">
<a class="dropdown-toggle"
data-toggle="dropdown" href="#"><span
class="icon-cog"></span>
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li>
<span>
<span class="icon-user"></span>
<strong><?php echo htmlspecialchars($user->name,
ENT_QUOTES, 'UTF-8'); ?></strong>
</span>
</li>
<li class="divider"></li>
<li class="">
<a
href="index.php?option=com_admin&task=profile.edit&id=<?php
echo $user->id; ?>"><?php echo
JText::_('TPL_ISIS_EDIT_ACCOUNT'); ?></a>
</li>
<li class="divider"></li>
<li class="">
<a href="<?php echo
JRoute::_('index.php?option=com_login&task=logout&' .
JSession::getFormToken() . '=1'); ?>"><?php echo
JText::_('TPL_ISIS_LOGOUT'); ?></a>
</li>
</ul>
</li>
</ul>
<a class="brand visible-desktop visible-tablet"
href="<?php echo $mainPageUri; ?>" title="<?php
echo JText::sprintf('TPL_ISIS_PREVIEW', $sitename); ?>"
target="_blank"><?php echo
JHtml::_('string.truncate', $sitename, 14, false, false); ?>
<span class="icon-out-2
small"></span></a>
</div>
<!--/.nav-collapse -->
</div>
</div>
</nav>
<!-- Header -->
<header class="header">
<?php if ($displayHeader) : ?>
<div class="container-logo">
<img src="<?php echo $logo; ?>"
class="logo" />
</div>
<?php endif; ?>
<div class="container-title">
<h1 class="page-title"><?php echo
JText::_('ERROR'); ?></h1>
</div>
</header>
<?php if (!$statusFixed &&
$this->getInstance()->countModules('status')) : ?>
<!-- Begin Status Module -->
<div id="status" class="navbar status-top
hidden-phone">
<div class="btn-toolbar">
<div class="btn-group pull-right">
<p>
© <?php echo date('Y'); ?> <?php echo
$sitename; ?>
</p>
</div>
<?php // Display status modules ?>
<?php $this->statusmodules =
JModuleHelper::getModules('status'); ?>
<?php foreach ($this->statusmodules as $statusmodule) : ?>
<?php $output = JModuleHelper::renderModule($statusmodule,
array('style' => 'no')); ?>
<?php $params = new Registry($statusmodule->params); ?>
<?php echo $output; ?>
<?php endforeach; ?>
</div>
<div class="clearfix"></div>
</div>
<!-- End Status Module -->
<?php endif; ?>
<div class="subhead-spacer" style="margin-bottom:
20px"></div>
<!-- container-fluid -->
<div class="container-fluid container-main">
<section id="content">
<!-- Begin Content -->
<div class="row-fluid">
<div class="span12">
<!-- Begin Content -->
<h1 class="page-header"><?php echo
JText::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?></h1>
<blockquote>
<span class="label label-inverse"><?php echo
$this->error->getCode(); ?></span> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8');?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</blockquote>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data
as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the
loop so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
<p><a href="<?php echo $this->baseurl; ?>"
class="btn"><span
class="icon-dashboard"></span> <?php echo
JText::_('JGLOBAL_TPL_CPANEL_LINK_TEXT');
?></a></p>
<!-- End Content -->
</div>
</div>
<!-- End Content -->
</section>
<hr />
</div>
<script>
(function($){
// fix sub nav on scroll
var $win = $(window)
, $nav = $('.subhead')
, navTop = $('.subhead').length &&
$('.subhead').offset().top - 40
, isFixed = 0
processScroll()
// hack sad times - holdover until rewrite for 2.1
$nav.on('click', function ()
{
if (!isFixed) setTimeout(function () { $win.scrollTop($win.scrollTop()
- 47) }, 10)
})
$win.on('scroll', processScroll)
function processScroll()
{
var i, scrollTop = $win.scrollTop()
if (scrollTop >= navTop && !isFixed)
{
isFixed = 1
$nav.addClass('subhead-fixed')
} else if (scrollTop <= navTop && isFixed)
{
isFixed = 0
$nav.removeClass('subhead-fixed')
}
}
})(jQuery);
</script>
</body>
</html>
home/lmsyaran/public_html/j3/templates/system/error.php000064400000010262151163446350017335
0ustar00<?php
/**
* @package Joomla.Site
* @subpackage Template.system
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/** @var JDocumentError $this */
if (!isset($this->error))
{
$this->error = JError::raiseWarning(404,
JText::_('JERROR_ALERTNOAUTHOR'));
$this->debug = false;
}
$app = JFactory::getApplication();
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->error->getCode(); ?> - <?php
echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/error.css"
rel="stylesheet" />
<?php if ($this->direction === 'rtl') : ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/error_rtl.css" rel="stylesheet" />
<?php endif; ?>
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body>
<div class="error">
<div id="outline">
<div id="errorboxoutline">
<div id="errorboxheader"><?php echo
$this->error->getCode(); ?> - <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></div>
<div id="errorboxbody">
<p><strong><?php echo
JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT');
?></strong></p>
<ol>
<li><?php echo
JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST');
?></li>
</ol>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES');
?></strong></p>
<ul>
<li><a href="<?php echo JUri::root(true);
?>/index.php" title="<?php echo
JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE');
?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE');
?></a></li>
</ul>
<p><?php echo
JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR');
?></p>
<div id="techinfo">
<p>
<?php echo htmlspecialchars($this->error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</p>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data
as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the loop
so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
home/lmsyaran/public_html/administrator/logs/error.php000064400000077162151163532050017330
0ustar00#
#<?php die('Forbidden.'); ?>
#Date: 2023-02-13 12:13:11 UTC
#Software: Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00
GMT
#Fields: datetime priority clientip category message
2023-02-13T12:13:11+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T12:20:57+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T12:27:18+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T12:39:30+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T15:57:10+00:00 INFO 185.119.81.99 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T16:22:57+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T16:41:03+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T17:20:16+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T18:12:31+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T19:55:32+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T19:57:21+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T21:30:14+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T03:14:35+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T03:31:32+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T05:50:22+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T05:53:34+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T06:03:17+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T06:24:19+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T06:31:30+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T09:08:11+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T09:08:11+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T10:12:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T10:12:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T10:42:32+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:05:30+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:11:56+00:00 INFO 135.148.232.242 joomlafailure کاربر
موجود نیست
2023-02-14T11:13:27+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:13:27+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:13:28+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:13:28+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T12:47:21+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T12:47:22+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T12:47:23+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T15:37:32+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T16:11:58+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T17:21:00+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T17:39:23+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T20:25:21+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T20:25:21+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:31:34+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:45:41+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:49:34+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:49:35+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:49:35+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T22:00:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T22:00:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:10:03+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:24+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:25+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:25+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:30+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:38:03+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T04:27:24+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T06:15:56+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T06:22:25+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T07:49:27+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T09:00:19+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T09:20:29+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T12:39:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T12:39:12+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T13:13:45+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T13:43:41+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:11:45+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:07+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:07+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:08+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:08+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:25+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T17:34:34+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T17:34:34+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T18:29:51+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:02+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:03+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:04+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:14+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:33:15+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:33:15+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:50+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T23:19:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:00:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:00:58+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:00:59+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:01:02+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:06:24+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T05:47:43+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:56+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:56+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:56+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T07:23:05+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T08:46:24+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T11:00:54+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T15:28:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:12:46+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:15+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:15+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:22+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:22+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:23+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:23+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:08:04+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T21:20:50+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:47+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:47+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:47+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:48+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T00:38:37+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T01:44:13+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T05:04:03+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T05:08:29+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T06:01:38+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T06:10:45+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T08:54:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T08:54:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T09:20:17+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T09:25:59+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T11:17:14+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T11:17:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T13:30:54+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T13:47:45+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T14:13:38+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T14:13:38+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T16:37:13+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T16:37:13+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T18:09:51+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T18:43:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T18:43:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T20:52:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T20:52:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T22:32:56+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T22:55:31+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T22:55:31+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:03+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:03+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:03+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:04+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:05+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:07+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:07+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:07+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:09+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:09+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:09+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:10+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:11+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:11+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T02:57:34+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T07:08:21+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T07:20:49+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T07:36:21+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T10:47:48+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T10:47:48+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T11:23:38+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T11:46:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T13:57:36+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T13:57:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T14:26:26+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T15:36:06+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T16:12:26+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T17:11:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T17:11:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T17:15:33+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T19:08:19+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T19:54:17+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:18:30+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:18:31+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:40:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:57:46+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T22:46:05+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T23:11:59+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T23:12:00+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T00:07:13+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T00:33:22+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T01:03:55+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T02:02:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T02:02:11+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T02:22:51+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T03:01:25+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:15:57+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:23:56+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:56:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:56:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T05:23:59+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T06:10:31+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T07:38:44+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:05:31+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:05:31+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:09:34+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:41:23+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T09:47:05+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T10:13:51+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T11:11:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T11:11:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T12:14:11+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-20T10:11:02+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-20T19:51:54+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-21T05:10:35+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-21T21:15:38+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-21T23:27:34+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-22T00:11:52+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-22T08:53:49+00:00 INFO 135.148.233.69 joomlafailure پسورد
خالی اجازه داده نمی شود
2023-02-22T11:01:23+00:00 INFO 37.98.72.60 joomlafailure کاربر
موجود نیست
2023-02-22T11:27:16+00:00 INFO 37.98.72.60 joomlafailure کاربر
موجود نیست
2023-02-22T11:31:44+00:00 INFO 37.98.77.122 joomlafailure کاربر
موجود نیست
2023-02-22T11:34:14+00:00 INFO 37.98.77.122 joomlafailure کاربر
موجود نیست
2023-02-23T02:46:11+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-23T08:02:45+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-23T15:26:10+00:00 INFO 143.42.98.150 joomlafailure رمز عبور
اشتباه
home/lmsyaran/public_html/j3/htaccess.back/legacy/error/error.php000064400000053310151164445440021105
0ustar00<?php
/**
* @package Joomla.Legacy
* @subpackage Error
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('JPATH_PLATFORM') or die;
/**
* Error Definition: Illegal Options
*
* @var integer
* @since 1.5
* @deprecated 4.0
*/
const JERROR_ILLEGAL_OPTIONS = 1;
/**
* Error Definition: Callback does not exist
*
* @var integer
* @since 1.5
* @deprecated 4.0
*/
const JERROR_CALLBACK_NOT_CALLABLE = 2;
/**
* Error Definition: Illegal Handler
*
* @var integer
* @since 1.5
* @deprecated 4.0
*/
const JERROR_ILLEGAL_MODE = 3;
/**
* Error Handling Class
*
* This class is inspired in design and concept by patErrorManager
<http://www.php-tools.net>
*
* patErrorManager contributors include:
* - gERD Schaufelberger <gerd@php-tools.net>
* - Sebastian Mordziol <argh@php-tools.net>
* - Stephan Schmidt <scst@php-tools.net>
*
* @since 1.5
* @deprecated 4.0 Will be removed without replacement
*/
abstract class JError
{
/**
* Legacy error handling marker
*
* @var boolean True to enable legacy error handling using JError,
false to use exception handling. This flag
* is present to allow an easy transition into exception
handling for code written against the
* existing JError API in Joomla.
* @since 1.7
* @deprecated 4.0
*/
public static $legacy = false;
/**
* Array of message levels
*
* @var array
* @since 1.6
* @deprecated 4.0
*/
protected static $levels = array(E_NOTICE => 'Notice',
E_WARNING => 'Warning', E_ERROR => 'Error');
/**
* Array of message handlers
*
* @var array
* @since 1.6
* @deprecated 4.0
*/
protected static $handlers = array(
E_NOTICE => array('mode' => 'ignore'),
E_WARNING => array('mode' => 'ignore'),
E_ERROR => array('mode' => 'ignore'),
);
/**
* Array containing the error stack
*
* @var JException[]
* @since 1.6
* @deprecated 4.0
*/
protected static $stack = array();
/**
* Method to determine if a value is an exception object.
*
* @param mixed $object Object to check.
*
* @return boolean True if argument is an exception, false otherwise.
*
* @since 1.5
* @deprecated 4.0
*/
public static function isError($object)
{
JLog::add('JError::isError() is deprecated.', JLog::WARNING,
'deprecated');
return $object instanceof Exception;
}
/**
* Method for retrieving the last exception object in the error stack
*
* @param boolean $unset True to remove the error from the stack.
*
* @return JException|boolean Last JException object in the error stack
or boolean false if none exist
*
* @since 1.5
* @deprecated 4.0
*/
public static function getError($unset = false)
{
JLog::add('JError::getError() is deprecated.', JLog::WARNING,
'deprecated');
if (!isset(self::$stack[0]))
{
return false;
}
if ($unset)
{
$error = array_shift(self::$stack);
}
else
{
$error = &self::$stack[0];
}
return $error;
}
/**
* Method for retrieving the exception stack
*
* @return JException[] Chronological array of errors that have been
stored during script execution
*
* @since 1.5
* @deprecated 4.0
*/
public static function getErrors()
{
JLog::add('JError::getErrors() is deprecated.', JLog::WARNING,
'deprecated');
return self::$stack;
}
/**
* Method to add non-JError thrown JExceptions to the JError stack for
debugging purposes
*
* @param JException $e Add an exception to the stack.
*
* @return void
*
* @since 1.6
* @deprecated 4.0
*/
public static function addToStack(JException $e)
{
JLog::add('JError::addToStack() is deprecated.', JLog::WARNING,
'deprecated');
self::$stack[] = &$e;
}
/**
* Create a new JException object given the passed arguments
*
* @param integer $level The error level - use any of PHP's
own error levels for
* this: E_ERROR, E_WARNING, E_NOTICE,
E_USER_ERROR,
* E_USER_WARNING, E_USER_NOTICE.
* @param string $code The application-internal error code for
this error
* @param string $msg The error message, which may also be
shown the user if need be.
* @param mixed $info Optional: Additional error information
(usually only
* developer-relevant information that the
user should never see,
* like a database DSN).
* @param boolean $backtrace Add a stack backtrace to the exception.
*
* @return JException
*
* @since 1.5
* @deprecated 4.0
* @see JException
*/
public static function raise($level, $code, $msg, $info = null, $backtrace
= false)
{
JLog::add('JError::raise() is deprecated.', JLog::WARNING,
'deprecated');
// Build error object
$exception = new JException($msg, $code, $level, $info, $backtrace);
return self::throwError($exception);
}
/**
* Throw an error
*
* @param JException &$exception An exception to throw.
*
* @return JException A reference to the handled JException object
*
* @since 1.6
* @deprecated 4.0 Just throw an Exception
* @see JException
*/
public static function throwError(&$exception)
{
JLog::add('JError::throwError() is deprecated.', JLog::WARNING,
'deprecated');
static $thrown = false;
// If thrown is hit again, we've come back to JError in the middle
of throwing another JError, so die!
if ($thrown)
{
self::handleEcho($exception, array());
// Inifite loop.
jexit();
}
$thrown = true;
$level = $exception->get('level');
// See what to do with this kind of error
$handler = self::getErrorHandling($level);
$function = 'handle' . ucfirst($handler['mode']);
if (is_callable(array('JError', $function)))
{
$reference = call_user_func_array(array('JError', $function),
array(&$exception, isset($handler['options']) ?
$handler['options'] : array()));
}
else
{
// This is required to prevent a very unhelpful white-screen-of-death
jexit(
'JError::raise -> Static method JError::' . $function .
' does not exist. Contact a developer to debug' .
'<br /><strong>Error was</strong> <br
/>' . $exception->getMessage()
);
}
// We don't need to store the error, since JException already does
that for us!
// Remove loop check
$thrown = false;
return $reference;
}
/**
* Wrapper method for the raise() method with predefined error level of
E_ERROR and backtrace set to true.
*
* @param string $code The application-internal error code for this
error
* @param string $msg The error message, which may also be shown the
user if need be.
* @param mixed $info Optional: Additional error information (usually
only
* developer-relevant information that the user
should
* never see, like a database DSN).
*
* @return JException $error The thrown JException object
*
* @since 1.5
* @deprecated 4.0 Just throw an Exception
* @see JError::raise()
*/
public static function raiseError($code, $msg, $info = null)
{
JLog::add('JError::raiseError() is deprecated.', JLog::WARNING,
'deprecated');
return self::raise(E_ERROR, $code, $msg, $info, true);
}
/**
* Wrapper method for the {@link raise()} method with predefined error
level of E_WARNING and backtrace set to false.
*
* @param string $code The application-internal error code for this
error
* @param string $msg The error message, which may also be shown the
user if need be.
* @param mixed $info Optional: Additional error information (usually
only
* developer-relevant information that
* the user should never see, like a database
DSN).
*
* @return JException $error The thrown JException object
*
* @since 1.5
* @deprecated 4.0 Use
\Joomla\CMS\Factory::getApplication()->enqueueMessage($msg,
'warning') when wou want to notify the UI
* @see JError::raise()
*/
public static function raiseWarning($code, $msg, $info = null)
{
JLog::add('JError::raiseWarning() is deprecated.',
JLog::WARNING, 'deprecated');
return self::raise(E_WARNING, $code, $msg, $info);
}
/**
* Wrapper method for the {@link raise()} method with predefined error
level of E_NOTICE and backtrace set to false.
*
* @param string $code The application-internal error code for this
error
* @param string $msg The error message, which may also be shown the
user if need be.
* @param mixed $info Optional: Additional error information (usually
only
* developer-relevant information that the user
* should never see, like a database DSN).
*
* @return JException $error The thrown JException object
*
* @since 1.5
* @deprecated 4.0 Use
\Joomla\CMS\Factory::getApplication()->enqueueMessage($msg,
'notice') when wou want to notify the UI
* @see JError::raise()
*/
public static function raiseNotice($code, $msg, $info = null)
{
JLog::add('JError::raiseNotice() is deprecated.',
JLog::WARNING, 'deprecated');
return self::raise(E_NOTICE, $code, $msg, $info);
}
/**
* Method to get the current error handler settings for a specified error
level.
*
* @param integer $level The error level to retrieve. This can be any
of PHP's
* own error levels, e.g. E_ALL, E_NOTICE...
*
* @return array All error handling details
*
* @since 1.5
* @deprecated 4.0
*/
public static function getErrorHandling($level)
{
JLog::add('JError::getErrorHandling() is deprecated.',
JLog::WARNING, 'deprecated');
return self::$handlers[$level];
}
/**
* Method to set the way the JError will handle different error levels.
Use this if you want to override the default settings.
*
* Error handling modes:
* - ignore
* - echo
* - verbose
* - die
* - message
* - log
* - callback
*
* You may also set the error handling for several modes at once using
PHP's bit operations.
* Examples:
* - E_ALL = Set the handling for all levels
* - E_ERROR | E_WARNING = Set the handling for errors and warnings
* - E_ALL ^ E_ERROR = Set the handling for all levels except errors
*
* @param integer $level The error level for which to set the error
handling
* @param string $mode The mode to use for the error handling.
* @param mixed $options Optional: Any options needed for the given
mode.
*
* @return boolean|JException True on success or a JException object if
failed.
*
* @since 1.5
* @deprecated 4.0
*/
public static function setErrorHandling($level, $mode, $options = null)
{
JLog::add('JError::setErrorHandling() is deprecated.',
JLog::WARNING, 'deprecated');
$levels = self::$levels;
$function = 'handle' . ucfirst($mode);
if (!is_callable(array('JError', $function)))
{
return self::raiseError(E_ERROR, 'JError:' .
JERROR_ILLEGAL_MODE, 'Error Handling mode is not known',
'Mode: ' . $mode . ' is not implemented.');
}
foreach ($levels as $eLevel => $eTitle)
{
if (($level & $eLevel) !== $eLevel)
{
continue;
}
// Set callback options
if ($mode === 'callback')
{
if (!is_array($options))
{
return self::raiseError(E_ERROR, 'JError:' .
JERROR_ILLEGAL_OPTIONS, 'Options for callback not valid');
}
if (!is_callable($options))
{
$tmp = array('GLOBAL');
if (is_array($options))
{
$tmp[0] = $options[0];
$tmp[1] = $options[1];
}
else
{
$tmp[1] = $options;
}
return self::raiseError(
E_ERROR,
'JError:' . JERROR_CALLBACK_NOT_CALLABLE,
'Function is not callable',
'Function:' . $tmp[1] . ' scope ' . $tmp[0] .
'.'
);
}
}
// Save settings
self::$handlers[$eLevel] = array('mode' => $mode);
if ($options != null)
{
self::$handlers[$eLevel]['options'] = $options;
}
}
return true;
}
/**
* Method that attaches the error handler to JError
*
* @return void
*
* @since 1.5
* @deprecated 4.0
* @see set_error_handler
*/
public static function attachHandler()
{
JLog::add('JError::getErrorHandling() is deprecated.',
JLog::WARNING, 'deprecated');
set_error_handler(array('JError',
'customErrorHandler'));
}
/**
* Method that detaches the error handler from JError
*
* @return void
*
* @since 1.5
* @deprecated 4.0
* @see restore_error_handler
*/
public static function detachHandler()
{
JLog::add('JError::detachHandler() is deprecated.',
JLog::WARNING, 'deprecated');
restore_error_handler();
}
/**
* Method to register a new error level for handling errors
*
* This allows you to add custom error levels to the built-in
* - E_NOTICE
* - E_WARNING
* - E_NOTICE
*
* @param integer $level Error level to register
* @param string $name Human readable name for the error level
* @param string $handler Error handler to set for the new error
level [optional]
*
* @return boolean True on success; false if the level already has been
registered
*
* @since 1.5
* @deprecated 4.0
*/
public static function registerErrorLevel($level, $name, $handler =
'ignore')
{
JLog::add('JError::registerErrorLevel() is deprecated.',
JLog::WARNING, 'deprecated');
if (isset(self::$levels[$level]))
{
return false;
}
self::$levels[$level] = $name;
self::setErrorHandling($level, $handler);
return true;
}
/**
* Translate an error level integer to a human readable string
* e.g. E_ERROR will be translated to 'Error'
*
* @param integer $level Error level to translate
*
* @return string|boolean Human readable error level name or boolean
false if it doesn't exist
*
* @since 1.5
* @deprecated 4.0
*/
public static function translateErrorLevel($level)
{
JLog::add('JError::translateErrorLevel() is deprecated.',
JLog::WARNING, 'deprecated');
if (isset(self::$levels[$level]))
{
return self::$levels[$level];
}
return false;
}
/**
* Ignore error handler
* - Ignores the error
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleIgnore(&$error, $options)
{
JLog::add('JError::handleIgnore() is deprecated.',
JLog::WARNING, 'deprecated');
return $error;
}
/**
* Echo error handler
* - Echos the error message to output
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleEcho(&$error, $options)
{
JLog::add('JError::handleEcho() is deprecated.', JLog::WARNING,
'deprecated');
$level_human =
self::translateErrorLevel($error->get('level'));
// If system debug is set, then output some more information.
if (JDEBUG)
{
$backtrace = $error->getTrace();
$trace = '';
for ($i = count($backtrace) - 1; $i >= 0; $i--)
{
if (isset($backtrace[$i]['class']))
{
$trace .= sprintf("\n%s %s %s()",
$backtrace[$i]['class'], $backtrace[$i]['type'],
$backtrace[$i]['function']);
}
else
{
$trace .= sprintf("\n%s()",
$backtrace[$i]['function']);
}
if (isset($backtrace[$i]['file']))
{
$trace .= sprintf(' @ %s:%d',
$backtrace[$i]['file'], $backtrace[$i]['line']);
}
}
}
if (isset($_SERVER['HTTP_HOST']))
{
// Output as html
echo "<br /><b>jos-$level_human</b>: "
. $error->get('message') . "<br />\n"
. (JDEBUG ? nl2br($trace) : '');
}
else
{
// Output as simple text
if (defined('STDERR'))
{
fwrite(STDERR, "J$level_human: " .
$error->get('message') . "\n");
if (JDEBUG)
{
fwrite(STDERR, $trace);
}
}
else
{
echo "J$level_human: " . $error->get('message')
. "\n";
if (JDEBUG)
{
echo $trace;
}
}
}
return $error;
}
/**
* Verbose error handler
* - Echos the error message to output as well as related info
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleVerbose(&$error, $options)
{
JLog::add('JError::handleVerbose() is deprecated.',
JLog::WARNING, 'deprecated');
$level_human =
self::translateErrorLevel($error->get('level'));
$info = $error->get('info');
if (isset($_SERVER['HTTP_HOST']))
{
// Output as html
echo "<br /><b>J$level_human</b>: " .
$error->get('message') . "<br />\n";
if ($info != null)
{
echo '   ' . $info . "<br
/>\n";
}
echo $error->getBacktrace(true);
}
else
{
// Output as simple text
echo "J$level_human: " . $error->get('message') .
"\n";
if ($info != null)
{
echo "\t" . $info . "\n";
}
}
return $error;
}
/**
* Die error handler
* - Echos the error message to output and then dies
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return void Calls die()
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleDie(&$error, $options)
{
JLog::add('JError::handleDie() is deprecated.', JLog::WARNING,
'deprecated');
$level_human =
self::translateErrorLevel($error->get('level'));
if (isset($_SERVER['HTTP_HOST']))
{
// Output as html
jexit("<br /><b>J$level_human</b>: " .
$error->get('message') . "<br />\n");
}
else
{
// Output as simple text
if (defined('STDERR'))
{
fwrite(STDERR, "J$level_human: " .
$error->get('message') . "\n");
jexit();
}
else
{
jexit("J$level_human: " . $error->get('message')
. "\n");
}
}
return $error;
}
/**
* Message error handler
* Enqueues the error message into the system queue
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleMessage(&$error, $options)
{
JLog::add('JError::hanleMessage() is deprecated.',
JLog::WARNING, 'deprecated');
$appl = JFactory::getApplication();
$type = ($error->get('level') == E_NOTICE) ?
'notice' : 'error';
$appl->enqueueMessage($error->get('message'), $type);
return $error;
}
/**
* Log error handler
* Logs the error message to a system log file
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleLog(&$error, $options)
{
JLog::add('JError::handleLog() is deprecated.', JLog::WARNING,
'deprecated');
static $log;
if ($log == null)
{
$options['text_file'] = date('Y-m-d') .
'.error.log';
$options['format'] =
"{DATE}\t{TIME}\t{LEVEL}\t{CODE}\t{MESSAGE}";
JLog::addLogger($options, JLog::ALL, array('error'));
}
$entry = new JLogEntry(
str_replace(array("\r", "\n"), array('',
'\\n'), $error->get('message')),
$error->get('level'),
'error'
);
$entry->code = $error->get('code');
JLog::add($entry);
return $error;
}
/**
* Callback error handler
* - Send the error object to a callback method for error handling
*
* @param JException &$error Exception object to handle
* @param array $options Handler options
*
* @return JException The exception object
*
* @since 1.5
* @deprecated 4.0
* @see JError::raise()
*/
public static function handleCallback(&$error, $options)
{
JLog::add('JError::handleCallback() is deprecated.',
JLog::WARNING, 'deprecated');
return call_user_func_array($options, array(&$error));
}
/**
* Display a custom error page and exit gracefully
*
* @param JException $error Exception object
*
* @return void
*
* @since 1.5
* @deprecated 4.0 Use \Joomla\CMS\Exception\ExceptionHandler::render()
instead
*/
public static function customErrorPage($error)
{
JLog::add('JError::customErrorPage() is deprecated, use
JErrorPage::render() instead.', JLog::WARNING,
'deprecated');
\Joomla\CMS\Exception\ExceptionHandler::render($error);
}
/**
* Display a message to the user
*
* @param integer $level The error level - use any of PHP's own
error levels
* for this: E_ERROR, E_WARNING, E_NOTICE, E_USER_ERROR,
* E_USER_WARNING, E_USER_NOTICE.
* @param string $msg Error message, shown to user if need be.
*
* @return void
*
* @since 1.5
* @deprecated 4.0 Throw an Exception or enqueue the message to the
application, eg.
\Joomla\CMS\Factory::getApplication()->enqueueMessage($msg)
*/
public static function customErrorHandler($level, $msg)
{
JLog::add('JError::customErrorHandler() is deprecated.',
JLog::WARNING, 'deprecated');
self::raise($level, '', $msg);
}
/**
* Render the backtrace
*
* @param Exception $error The error
*
* @return string Contents of the backtrace
*
* @since 1.6
* @deprecated 4.0 Use
JLayoutHelper::render('joomla.error.backtrace',
array('backtrace' => $error->getTrace())) instead
*/
public static function renderBacktrace($error)
{
JLog::add('JError::renderBacktrace() is deprecated.',
JLog::WARNING, 'deprecated');
return
\Joomla\CMS\Layout\LayoutHelper::render('joomla.error.backtrace',
array('backtrace' => $error->getTrace()));
}
}
home/lmsyaran/public_html/j3/administrator/logs/error.php000064400000077162151164574030017651
0ustar00#
#<?php die('Forbidden.'); ?>
#Date: 2023-02-13 12:13:11 UTC
#Software: Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00
GMT
#Fields: datetime priority clientip category message
2023-02-13T12:13:11+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T12:20:57+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T12:27:18+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T12:39:30+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T15:57:10+00:00 INFO 185.119.81.99 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T16:22:57+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T16:41:03+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T17:20:16+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T18:12:31+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T19:55:32+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T19:57:21+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-13T21:30:14+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T03:14:35+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T03:31:32+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T05:50:22+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T05:53:34+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T06:03:17+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T06:24:19+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T06:31:30+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T09:08:11+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T09:08:11+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T10:12:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T10:12:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T10:42:32+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:05:30+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:11:56+00:00 INFO 135.148.232.242 joomlafailure کاربر
موجود نیست
2023-02-14T11:13:27+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:13:27+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:13:28+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T11:13:28+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T12:47:21+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T12:47:22+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T12:47:23+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T15:37:32+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T16:11:58+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T17:21:00+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T17:39:23+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T20:25:21+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T20:25:21+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:31:34+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:45:41+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:49:34+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:49:35+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T21:49:35+00:00 INFO 5.182.37.175 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T22:00:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-14T22:00:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:10:03+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:24+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:25+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:25+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:18:30+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T02:38:03+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T04:27:24+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T06:15:56+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T06:22:25+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T07:49:27+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T09:00:19+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T09:20:29+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T12:39:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T12:39:12+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T13:13:45+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T13:43:41+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:11:45+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:07+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:07+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:08+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:08+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T15:51:25+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T17:34:34+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T17:34:34+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T18:29:51+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:02+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:03+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:04+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:14:14+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:33:15+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T19:33:15+00:00 INFO 45.142.213.46 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:50+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T22:24:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-15T23:19:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T01:12:44+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:00:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:00:58+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:00:59+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:01:02+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T04:06:24+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T05:47:43+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:56+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:56+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:56+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T06:57:57+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T07:23:05+00:00 INFO 185.119.81.100 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T08:46:24+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T09:58:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T11:00:54+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T13:27:34+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T15:28:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:12:46+00:00 INFO 93.99.104.106 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T16:47:49+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:15+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:15+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:22+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:22+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:23+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:02:23+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T20:08:04+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T21:20:50+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:47+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:47+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:47+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-16T23:18:48+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T00:38:37+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T01:44:13+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T05:04:03+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T05:08:29+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T06:01:38+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T06:10:45+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T08:54:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T08:54:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T09:20:17+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T09:25:59+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T11:17:14+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T11:17:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T13:30:54+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T13:47:45+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T14:13:38+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T14:13:38+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T16:37:13+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T16:37:13+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T18:09:51+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T18:43:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T18:43:15+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T20:52:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T20:52:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T22:32:56+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T22:55:31+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-17T22:55:31+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:03+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:02+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:03+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:03+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:04+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:05+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:07+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:07+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:07+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:08+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:09+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:09+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:09+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:10+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:11+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:11+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T00:00:12+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T02:57:34+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T07:08:21+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T07:20:49+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T07:36:21+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T10:47:48+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T10:47:48+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T11:23:38+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T11:46:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T13:57:36+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T13:57:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T14:26:26+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T15:36:06+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T16:12:26+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T17:11:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T17:11:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T17:15:33+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T19:08:19+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T19:54:17+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:18:30+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:18:31+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:40:27+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T20:57:46+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T22:46:05+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T23:11:59+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-18T23:12:00+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T00:07:13+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T00:33:22+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T01:03:55+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T02:02:10+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T02:02:11+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T02:22:51+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T03:01:25+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:15:57+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:23:56+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:56:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T04:56:46+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T05:23:59+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T06:10:31+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T07:38:44+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:05:31+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:05:31+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:09:34+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T08:41:23+00:00 INFO 193.200.16.61 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T09:47:05+00:00 INFO 45.95.11.26 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T10:13:51+00:00 INFO 45.142.213.20 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T11:11:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T11:11:40+00:00 INFO 54.38.144.149 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-19T12:14:11+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-20T10:11:02+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-20T19:51:54+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-21T05:10:35+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-21T21:15:38+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-21T23:27:34+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-22T00:11:52+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-22T08:53:49+00:00 INFO 135.148.233.69 joomlafailure پسورد
خالی اجازه داده نمی شود
2023-02-22T11:01:23+00:00 INFO 37.98.72.60 joomlafailure کاربر
موجود نیست
2023-02-22T11:27:16+00:00 INFO 37.98.72.60 joomlafailure کاربر
موجود نیست
2023-02-22T11:31:44+00:00 INFO 37.98.77.122 joomlafailure کاربر
موجود نیست
2023-02-22T11:34:14+00:00 INFO 37.98.77.122 joomlafailure کاربر
موجود نیست
2023-02-23T02:46:11+00:00 INFO 185.119.81.97 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-23T08:02:45+00:00 INFO 5.188.62.174 joomlafailure Username and
password do not match or you do not have an account yet.
2023-02-23T15:26:10+00:00 INFO 143.42.98.150 joomlafailure رمز عبور
اشتباه
home/lmsyaran/public_html/j3/templates/protostar/error.php000064400000022767151165631310020055
0ustar00<?php
/**
* @package Joomla.Site
* @subpackage Templates.protostar
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/** @var JDocumentError $this */
$app = JFactory::getApplication();
$user = JFactory::getUser();
// Getting params from template
$params = $app->getTemplate(true)->params;
// Detecting Active Variables
$option = $app->input->getCmd('option', '');
$view = $app->input->getCmd('view', '');
$layout = $app->input->getCmd('layout', '');
$task = $app->input->getCmd('task', '');
$itemid = $app->input->getCmd('Itemid', '');
$format = $app->input->getCmd('format',
'html');
$sitename = htmlspecialchars($app->get('sitename'),
ENT_QUOTES, 'UTF-8');
if ($task === 'edit' || $layout === 'form')
{
$fullWidth = 1;
}
else
{
$fullWidth = 0;
}
// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');
// Logo file or site title param
if ($params->get('logoFile'))
{
$logo = '<img src="' . JUri::root() .
$params->get('logoFile') . '" alt="' .
$sitename . '" />';
}
elseif ($params->get('sitetitle'))
{
$logo = '<span class="site-title" title="' .
$sitename . '">' .
htmlspecialchars($params->get('sitetitle')) .
'</span>';
}
else
{
$logo = '<span class="site-title" title="' .
$sitename . '">' . $sitename . '</span>';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->title; ?> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<?php // Use of Google Font ?>
<?php if ($params->get('googleFont')) : ?>
<link href="https://fonts.googleapis.com/css?family=<?php echo
$params->get('googleFontName'); ?>"
rel="stylesheet" />
<style>
h1, h2, h3, h4, h5, h6, .site-title {
font-family: '<?php echo str_replace('+', '
', $params->get('googleFontName')); ?>',
sans-serif;
}
</style>
<?php endif; ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/template.css" rel="stylesheet" />
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<?php // If Right-to-Left ?>
<?php if ($this->direction === 'rtl') : ?>
<link href="<?php echo JUri::root(true);
?>/media/jui/css/bootstrap-rtl.css" rel="stylesheet"
/>
<?php endif; ?>
<?php if (file_exists('templates/' . $this->template .
'/css/user.css')) : ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/css/user.css"
rel="stylesheet" />
<?php endif; ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/favicon.ico"
rel="shortcut icon" type="image/vnd.microsoft.icon"
/>
<?php // Template color ?>
<?php if ($params->get('templateColor')) : ?>
<style>
body.site {
border-top: 3px solid <?php echo
$params->get('templateColor'); ?>;
background-color: <?php echo
$params->get('templateBackgroundColor'); ?>
}
a {
color: <?php echo $params->get('templateColor'); ?>;
}
.navbar-inner, .nav-list > .active > a, .nav-list > .active
> a:hover, .dropdown-menu li > a:hover, .dropdown-menu .active >
a, .dropdown-menu .active > a:hover, .nav-pills > .active > a,
.nav-pills > .active > a:hover {
background: <?php echo $params->get('templateColor');
?>;
}
.navbar-inner {
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0,
0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0
rgba(0, 0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0, 0,
.1), inset 0 30px 10px rgba(0, 0, 0, .2);
}
</style>
<?php endif; ?>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body class="site <?php echo $option
. ' view-' . $view
. ($layout ? ' layout-' . $layout : ' no-layout')
. ($task ? ' task-' . $task : ' no-task')
. ($itemid ? ' itemid-' . $itemid : '')
. ($params->get('fluidContainer') ? ' fluid' :
'')
. ($this->direction === 'rtl' ? ' rtl' :
'');
?>">
<!-- Body -->
<div class="body" id="top">
<div class="container<?php echo
($params->get('fluidContainer') ? '-fluid' :
''); ?>">
<!-- Header -->
<header class="header" role="banner">
<div class="header-inner clearfix">
<a class="brand pull-left" href="<?php echo
$this->baseurl; ?>/">
<?php echo $logo; ?>
</a>
<?php if ($format === 'html') : ?>
<div class="header-search pull-right">
<?php // Display position-0 modules ?>
<?php echo
$this->loadRenderer('modules')->render('position-0',
array('style' => 'none')); ?>
</div>
<?php endif; ?>
</div>
</header>
<?php if ($format === 'html') : ?>
<nav class="navigation" role="navigation">
<?php // Display position-1 modules ?>
<?php echo
$this->loadRenderer('modules')->render('position-1',
array('style' => 'none')); ?>
</nav>
<?php endif; ?>
<!-- Banner -->
<?php if ($format === 'html') : ?>
<div class="banner">
<?php echo
$this->loadRenderer('modules')->render('banner',
array('style' => 'xhtml')); ?>
</div>
<?php endif; ?>
<div class="row-fluid">
<main id="content" role="main"
class="span12">
<!-- Begin Content -->
<h1 class="page-header"><?php echo
JText::_('JERROR_LAYOUT_PAGE_NOT_FOUND'); ?></h1>
<div class="well">
<div class="row-fluid">
<div class="span6">
<p><strong><?php echo
JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST');
?></strong></p>
<p><?php echo
JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></p>
<ul>
<li><?php echo
JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING');
?></li>
<li><?php echo
JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE');
?></li>
</ul>
</div>
<div class="span6">
<?php if ($format === 'html' &&
JModuleHelper::getModule('mod_search')) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_SEARCH'); ?></strong></p>
<p><?php echo
JText::_('JERROR_LAYOUT_SEARCH_PAGE'); ?></p>
<?php $module =
JModuleHelper::getModule('mod_search'); ?>
<?php echo JModuleHelper::renderModule($module); ?>
<?php endif; ?>
<p><?php echo
JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?></p>
<p><a href="<?php echo $this->baseurl;
?>/index.php" class="btn"><span
class="icon-home" aria-hidden="true"></span>
<?php echo JText::_('JERROR_LAYOUT_HOME_PAGE');
?></a></p>
</div>
</div>
<hr />
<p><?php echo
JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR');
?></p>
<blockquote>
<span class="label label-inverse"><?php echo
$this->error->getCode(); ?></span> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8');?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</blockquote>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their
data as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the
loop so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo
htmlspecialchars($this->_error->getMessage(), ENT_QUOTES,
'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<!-- End Content -->
</main>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer" role="contentinfo">
<div class="container<?php echo
($params->get('fluidContainer') ? '-fluid' :
''); ?>">
<hr />
<?php if ($format === 'html') : ?>
<?php echo
$this->loadRenderer('modules')->render('footer',
array('style' => 'none')); ?>
<?php endif; ?>
<p class="pull-right">
<a href="#top" id="back-top">
<?php echo JText::_('TPL_PROTOSTAR_BACKTOTOP'); ?>
</a>
</p>
<p>
© <?php echo date('Y'); ?> <?php echo
$sitename; ?>
</p>
</div>
</footer>
<?php if ($format === 'html') : ?>
<?php echo
$this->loadRenderer('modules')->render('debug',
array('style' => 'none')); ?>
<?php endif; ?>
</body>
</html>
home/lmsyaran/public_html/j3/templates/g5_hydrogen/error.php000064400000001674151165671530020234
0ustar00<?php
/**
* @package Gantry 5 Theme
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2017 RocketTheme, LLC
* @license GNU/GPLv2 and later
*
* http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die;
// Bootstrap Gantry framework or fail gracefully (inside included file).
$gantry = include __DIR__ . '/includes/gantry.php';
/** @var \Gantry\Framework\Theme $theme */
$theme = $gantry['theme'];
$context = array(
'errorcode' => isset($this->error) ?
$this->error->getCode() : null,
'error' => isset($this->error) ?
$this->error->getMessage() : null,
'debug' => $app->get('debug_lang',
'0') == '1' || $app->get('debug',
'0') == '1',
'backtrace' => $this->debug ?
$this->renderBacktrace() : null
);
// Reset used outline configuration.
unset($gantry['configuration']);
// Render the page.
echo $theme
->setLayout('_error', true)
->render('error.html.twig', $context);
home/lmsyaran/public_html/j3/administrator/templates/isis/error.php000064400000030103151166577740021647
0ustar00<?php
/**
* @package Joomla.Administrator
* @subpackage Templates.isis
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\Registry\Registry;
/** @var JDocumentError $this */
// Getting params from template
$params = JFactory::getApplication()->getTemplate(true)->params;
$app = JFactory::getApplication();
$lang = JFactory::getLanguage();
$input = $app->input;
$user = JFactory::getUser();
// Gets the FrontEnd Main page Uri
$frontEndUri = JUri::getInstance(JUri::root());
$frontEndUri->setScheme(((int) $app->get('force_ssl', 0)
=== 2) ? 'https' : 'http');
$mainPageUri = $frontEndUri->toString();
// Detecting Active Variables
$option = $input->get('option', '');
$view = $input->get('view', '');
$layout = $input->get('layout', '');
$task = $input->get('task', '');
$itemid = $input->get('Itemid', 0, 'int');
$sitename = htmlspecialchars($app->get('sitename'),
ENT_QUOTES, 'UTF-8');
$cpanel = ($option === 'com_cpanel');
$showSubmenu = false;
$this->submenumodules = JModuleHelper::getModules('submenu');
foreach ($this->submenumodules as $submenumodule)
{
$output = JModuleHelper::renderModule($submenumodule);
if ($output !== '')
{
$showSubmenu = true;
break;
}
}
// Logo file
if ($params->get('logoFile'))
{
$logo = JUri::root() . $params->get('logoFile');
}
else
{
$logo = $this->baseurl . '/templates/' . $this->template .
'/images/logo.png';
}
// Template Parameters
$displayHeader = $params->get('displayHeader', '1');
$statusFixed = $params->get('statusFixed', '1');
$stickyToolbar = $params->get('stickyToolbar', '1');
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"
content="IE=edge" />
<title><?php echo $this->title; ?> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
<!-- Load additional CSS styles for debug mode-->
<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
<?php endif; ?>
<?php // If Right-to-Left ?>
<?php if ($this->direction == 'rtl') : ?>
<link href="<?php echo JUri::root(true);
?>/media/jui/css/bootstrap-rtl.css" rel="stylesheet"
/>
<?php endif; ?>
<?php // Load specific language related CSS ?>
<?php $file = '/administrator/language/' . $lang->getTag()
. '/' . $lang->getTag() . '.css'; ?>
<?php if (is_file(JPATH_ROOT . $file)) : ?>
<link href="<?php echo JUri::root(true) . $file; ?>"
rel="stylesheet" />
<?php endif; ?>
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/css/template<?php echo ($this->direction == 'rtl' ?
'-rtl' : ''); ?>.css"
rel="stylesheet" />
<link href="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template; ?>/favicon.ico"
rel="shortcut icon" type="image/vnd.microsoft.icon"
/>
<?php // Template color ?>
<?php if ($params->get('templateColor')) : ?>
<style>
.navbar-inner, .navbar-inverse .navbar-inner, .nav-list > .active >
a, .nav-list > .active > a:hover, .dropdown-menu li > a:hover,
.dropdown-menu .active > a, .dropdown-menu .active > a:hover,
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle
{
background: <?php echo
$params->get('templateColor');?>;
}
.navbar-inner, .navbar-inverse .nav li.dropdown.open >
.dropdown-toggle, .navbar-inverse .nav li.dropdown.active >
.dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active >
.dropdown-toggle{
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0,
0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0,
0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0, 0,
.1), inset 0 30px 10px rgba(0, 0, 0, .2);
}
</style>
<?php endif; ?>
<?php // Template header color ?>
<?php if ($params->get('headerColor')) : ?>
<style>
.header
{
background: <?php echo
$params->get('headerColor');?>;
}
</style>
<?php endif; ?>
<?php // Sidebar background color ?>
<?php if ($params->get('sidebarColor')) : ?>
<style>
.nav-list > .active > a, .nav-list > .active > a:hover {
background: <?php echo $params->get('sidebarColor');
?>;
}
</style>
<?php endif; ?>
<script src="<?php echo JUri::root(true);
?>/media/jui/js/jquery.js"></script>
<script src="<?php echo JUri::root(true);
?>/media/jui/js/jquery-noconflict.js"></script>
<script src="<?php echo JUri::root(true);
?>/media/jui/js/bootstrap.js"></script>
<script src="<?php echo $this->baseurl;
?>/templates/<?php echo $this->template;
?>/js/template.js"></script>
<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body class="admin <?php echo $option . ' view-' .
$view . ' layout-' . $layout . ' task-' .
$task;?>" data-spy="scroll"
data-target=".subhead" data-offset="87">
<!-- Top Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<?php if ($params->get('admin_menus') != '0')
: ?>
<a class="btn btn-navbar"
data-toggle="collapse" data-target=".nav-collapse">
<span class="element-invisible"><?php echo
JTEXT::_('TPL_ISIS_TOGGLE_MENU'); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<?php endif; ?>
<a class="admin-logo" href="<?php echo
$this->baseurl; ?>"><span
class="icon-joomla"></span></a>
<a class="brand hidden-desktop hidden-tablet"
href="<?php echo $mainPageUri; ?>" title="<?php
echo JText::sprintf('TPL_ISIS_PREVIEW', $sitename); ?>"
target="_blank"><?php echo
JHtml::_('string.truncate', $sitename, 14, false, false); ?>
<span class="icon-out-2 small"></span></a>
<?php if ($params->get('admin_menus') != '0')
: ?>
<div class="nav-collapse">
<?php else : ?>
<div>
<?php endif; ?>
<?php // Display menu modules ?>
<?php $this->menumodules =
JModuleHelper::getModules('menu'); ?>
<?php foreach ($this->menumodules as $menumodule) : ?>
<?php $output = JModuleHelper::renderModule($menumodule,
array('style' => 'none')); ?>
<?php $params = new Registry($menumodule->params); ?>
<?php echo $output; ?>
<?php endforeach; ?>
<ul class="nav nav-user<?php echo ($this->direction ==
'rtl') ? ' pull-left' : ' pull-right';
?>">
<li class="dropdown">
<a class="dropdown-toggle"
data-toggle="dropdown" href="#"><span
class="icon-cog"></span>
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li>
<span>
<span class="icon-user"></span>
<strong><?php echo htmlspecialchars($user->name,
ENT_QUOTES, 'UTF-8'); ?></strong>
</span>
</li>
<li class="divider"></li>
<li class="">
<a
href="index.php?option=com_admin&task=profile.edit&id=<?php
echo $user->id; ?>"><?php echo
JText::_('TPL_ISIS_EDIT_ACCOUNT'); ?></a>
</li>
<li class="divider"></li>
<li class="">
<a href="<?php echo
JRoute::_('index.php?option=com_login&task=logout&' .
JSession::getFormToken() . '=1'); ?>"><?php echo
JText::_('TPL_ISIS_LOGOUT'); ?></a>
</li>
</ul>
</li>
</ul>
<a class="brand visible-desktop visible-tablet"
href="<?php echo $mainPageUri; ?>" title="<?php
echo JText::sprintf('TPL_ISIS_PREVIEW', $sitename); ?>"
target="_blank"><?php echo
JHtml::_('string.truncate', $sitename, 14, false, false); ?>
<span class="icon-out-2
small"></span></a>
</div>
<!--/.nav-collapse -->
</div>
</div>
</nav>
<!-- Header -->
<header class="header">
<?php if ($displayHeader) : ?>
<div class="container-logo">
<img src="<?php echo $logo; ?>"
class="logo" />
</div>
<?php endif; ?>
<div class="container-title">
<h1 class="page-title"><?php echo
JText::_('ERROR'); ?></h1>
</div>
</header>
<?php if (!$statusFixed &&
$this->getInstance()->countModules('status')) : ?>
<!-- Begin Status Module -->
<div id="status" class="navbar status-top
hidden-phone">
<div class="btn-toolbar">
<div class="btn-group pull-right">
<p>
© <?php echo date('Y'); ?> <?php echo
$sitename; ?>
</p>
</div>
<?php // Display status modules ?>
<?php $this->statusmodules =
JModuleHelper::getModules('status'); ?>
<?php foreach ($this->statusmodules as $statusmodule) : ?>
<?php $output = JModuleHelper::renderModule($statusmodule,
array('style' => 'no')); ?>
<?php $params = new Registry($statusmodule->params); ?>
<?php echo $output; ?>
<?php endforeach; ?>
</div>
<div class="clearfix"></div>
</div>
<!-- End Status Module -->
<?php endif; ?>
<div class="subhead-spacer" style="margin-bottom:
20px"></div>
<!-- container-fluid -->
<div class="container-fluid container-main">
<section id="content">
<!-- Begin Content -->
<div class="row-fluid">
<div class="span12">
<!-- Begin Content -->
<h1 class="page-header"><?php echo
JText::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?></h1>
<blockquote>
<span class="label label-inverse"><?php echo
$this->error->getCode(); ?></span> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8');?>
<?php if ($this->debug) : ?>
<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>
</blockquote>
<?php if ($this->debug) : ?>
<div>
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data
as well ?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
<?php // Make the first assignment to setError() outside the
loop so the loop does not skip Exceptions ?>
<?php $this->setError($this->_error->getPrevious());
?>
<?php while ($loop === true) : ?>
<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error ?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
<?php endif; ?>
<p><a href="<?php echo $this->baseurl; ?>"
class="btn"><span
class="icon-dashboard"></span> <?php echo
JText::_('JGLOBAL_TPL_CPANEL_LINK_TEXT');
?></a></p>
<!-- End Content -->
</div>
</div>
<!-- End Content -->
</section>
<hr />
</div>
<script>
(function($){
// fix sub nav on scroll
var $win = $(window)
, $nav = $('.subhead')
, navTop = $('.subhead').length &&
$('.subhead').offset().top - 40
, isFixed = 0
processScroll()
// hack sad times - holdover until rewrite for 2.1
$nav.on('click', function ()
{
if (!isFixed) setTimeout(function () { $win.scrollTop($win.scrollTop()
- 47) }, 10)
})
$win.on('scroll', processScroll)
function processScroll()
{
var i, scrollTop = $win.scrollTop()
if (scrollTop >= navTop && !isFixed)
{
isFixed = 1
$nav.addClass('subhead-fixed')
} else if (scrollTop <= navTop && isFixed)
{
isFixed = 0
$nav.removeClass('subhead-fixed')
}
}
})(jQuery);
</script>
</body>
</html>