Notice!

Fuel\Core\PhpErrorException [ Notice ]:
Undefined index: name

/usr/home/aa128snurh/sys/school/app/tmp/Smarty/templates_c/d117c90c8a5e30f6596c10bc55f4e63d61b1680c.file.detail.tpl.php @ line 44

39<?php if ($_valid && !is_callable('content_65fa437de97c15_03057269')) {function content_65fa437de97c15_03057269($_smarty_tpl) {?><?php if (!is_callable('smarty_modifier_date_format')) include '/usr/home/aa128snurh/sys/school/app/vendor/Smarty/libs/plugins/modifier.date_format.php';
40?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
41<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
42<head>
43
44<title><?php echo $_smarty_tpl->tpl_vars['sinfo']->value['name'];?>
45<?php echo $_smarty_tpl->tpl_vars['page_name']->value;?>
46|中学・高校・大学受験|進学塾・予備校のeisu ホームページ</title>
47
48<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
49<meta http-equiv="Content-Style-type" content="text/css" />

Backtrace

  1. /usr/home/aa128snurh/sys/school/core/bootstrap.php @ line 109
    104        include COREPATH.'classes/error.php';
    105        class_alias('\Fuel\Core\Error''Error');
    106        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    107    }
    108
    109    return \Error::error_handler($severity$message$filepath$line);
    110});
    111
    112function setup_autoloader()
    113{
    114    Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. /usr/home/aa128snurh/sys/school/app/tmp/Smarty/templates_c/d117c90c8a5e30f6596c10bc55f4e63d61b1680c.file.detail.tpl.php @ line 44
    39<?php if ($_valid && !is_callable('content_65fa437de97c15_03057269')) {function content_65fa437de97c15_03057269($_smarty_tpl) {?><?php if (!is_callable('smarty_modifier_date_format')) include '/usr/home/aa128snurh/sys/school/app/vendor/Smarty/libs/plugins/modifier.date_format.php';
    40?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    41<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
    42<head>
    43
    44<title><?php echo $_smarty_tpl->tpl_vars['sinfo']->value['name'];?>
    45<?php echo $_smarty_tpl->tpl_vars['page_name']->value;?>
    46|中学・高校・大学受験|進学塾・予備校のeisu ホームページ</title>
    47
    48<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    49<meta http-equiv="Content-Style-type" content="text/css" />
    
  3. /usr/home/aa128snurh/sys/school/app/vendor/Smarty/libs/sysplugins/smarty_internal_templatebase.php @ line 188
    183                        }
    184                        array_unshift($_template->_capture_stack, array());
    185                        //
    186                        // render compiled template
    187                        //
    188                        $_template->properties['unifunc']($_template);
    189                        // any unclosed {capture} tags ?
    190                        if (isset($_template->_capture_stack[0][0])) {
    191                            $_template->capture_error();
    192                        }
    193                        array_shift($_template->_capture_stack);
    
  4. /usr/home/aa128snurh/sys/school/packages/parser/classes/view/smarty.php @ line 32
    27        try
    28        {
    29            // Smarty doesn't support method chaining
    30            $parser = static::parser();
    31            $parser->assign($this->get_data());
    32            return $parser->fetch($file);
    33        }
    34        catch (\Exception $e)
    35        {
    36            // Delete the output buffer & re-throw the exception
    37            ob_end_clean();
    
  5. /usr/home/aa128snurh/sys/school/core/classes/view.php @ line 565
    560        {
    561            throw new \FuelException('You must set the file to use within your view before rendering');
    562        }
    563
    564        // combine local and global data and capture the output
    565        $return $this->process_file();
    566
    567        // restore the current language setting
    568        $this->active_language and \Config::set('language'$current_language);
    569
    570        // and the active request class
    
  6. /usr/home/aa128snurh/sys/school/core/classes/view.php @ line 207
    202     */
    203    public function __toString()
    204    {
    205        try
    206        {
    207            return $this->render();
    208        }
    209        catch (\Exception $e)
    210        {
    211            \Error::exception_handler($e);
    212
    
  7. /usr/home/aa128snurh/sys/school/core/classes/response.php @ line 355
    350     *
    351     * @return  string
    352     */
    353    public function __toString()
    354    {
    355        return (string) $this->body;
    356    }
    357}
    
  8. /usr/home/aa128snurh/html/eisu/school3/index.php @ line 82
    77        throw $e;
    78    }
    79}
    80
    81// Render the output
    82$response->body((string) $response);
    83
    84// This will add the execution time and memory usage to the output.
    85// Comment this out if you don't use it.
    86if (strpos($response->body(), '{exec_time}') !== false or strpos($response->body(), '{mem_usage}') !== false)
    87{