Cms php on line 19

Ошибка «failed to open stream: No such file or directory»

Warning: include(T:/home/testinstant1cms.ru/www/core/cms.php) [function.include]: failed to open stream: No such file or directory in T:\home\testinstant1cms.ru\www\portal\install\index.php on line 20

Warning: include() [function.include]: Failed opening ‘T:/home/testinstant1cms.ru/www/core/cms.php’ for inclusion (include_path=’.;C:\php\pear’) in T:\home\testinstant1cms.ru\www\portal\install\index.php on line 20

Fatal error: Class ‘cmsCore’ not found in T:\home\testinstant1cms.ru\www\portal\install\index.php on line 21

код index.php с 18-21 строку

define('VALID_CMS', 1); define('PATH', $_SERVER['DOCUMENT_ROOT']); include(PATH . '/core/cms.php'); cmsCore::includeFile('install/function.php');

Failed to open stream: No such file or directory
Доброе время суток коллеги, подскажите где поискать ошибку . Написал 2 файла один для подключения.

failed to open stream: No such file or directory in
Добрый день. Пытаюсь сделать возможность сохранения файла на хостинге. Права доступа выставил 777.

Devel Studio. Ошибка «failed to open stream: HTTP request failed!» при использовании file_get_contents()
Начал писать в девел студио фейк и возникает проблемма со скриптом, я без понятия что не так.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
 /******************************************************************************/ // // // InstantCMS v1.10.4 // // тут был адрес сайта InstantCMS // // // // written by InstantCMS Team, 2007-2014 // // produced by InstantSoft, (instantsoft) // // // // LICENSED BY GNU/GPL v2 // // // /******************************************************************************/ if(!defined('VALID_CMS')) { die('ACCESS DENIED'); } define('CORE_VERSION', '1.10.4'); define('CORE_BUILD', '1'); define('CORE_VERSION_DATE', '2014-06-19'); define('CORE_BUILD_DATE', '2014-06-19'); class cmsCore { private static $instance; private static $jevix; protected $start_time; protected $menu_item; protected $menu_id; protected $menu_struct; protected $is_menu_id_strict; protected $uri; protected $real_uri; public $component; public $do; public $components; public $plugins; protected static $filters; protected $url_without_com_name = false; private static $is_ajax = false; protected $module_configs; protected $component_configs; protected $template; public $single_run_plugins = array('wysiwyg'); protected function __construct($install_mode=false) { $this->startGenTimer(); // проверяем для совместимости if(!defined('HOST')){ define('HOST', 'http://' . self::getHost()); } if ($install_mode){ return; } //подключим базу и конфиг self::loadClass('db'); self::loadClass('config'); self::loadClass('plugin'); $inConf = cmsConfig::getInstance(); //проверяем был ли переопределен язык через сессию if (isset($_SESSION['lang'])) { $inConf->lang = $_SESSION['lang']; } self::loadLanguage('lang'); // определяем контекст использования self::detectContext(); //загрузим структуру меню в память $this->loadMenuStruct(); //получим URI $this->uri = $this->detectURI(); //загрузим все компоненты в память $this->components = $this->getAllComponents(); //определим компонент $this->component = $this->detectComponent(); //загрузим все события плагинов в память $this->plugins = $this->getAllPlugins(); // массив текущего пункта меню $this->menu_item = $this->getMenuItem($this->menuId()); // проверяем шаблон пункта меню $menu_template = $this->menuTemplate(); if ($menu_template) { $inConf->template = $menu_template; } //проверяем был ли переопределен шаблон через сессию if (isset($_SESSION['template'])) { $inConf->template = $_SESSION['template']; } define('TEMPLATE', $inConf->template); define('TEMPLATE_DIR', PATH.'/templates/'.$inConf->template.'/'); define('DEFAULT_TEMPLATE_DIR', PATH.'/templates/_default_/'); } protected function __clone() {} ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// public static function getInstance($install_mode=false, $is_admin=false) { if (self::$instance === null) { if(!$is_admin){ self::$instance = new self($install_mode); } else { self::includeFile('core/cms_admin.php'); self::$instance = new cmsAdmin($install_mode); } } return self::$instance; } public static function getHost(){ // если вызван из командной строки // ожидаем параметр с именем домена, например команда для CRON // php -f /path_to_site/cron.php site.ru if(PHP_SAPI == 'cli'){ global $argv; return isset($argv[1]) ? $argv[1] : ''; } // если интернационализованный домен if(mb_strpos($_SERVER['HTTP_HOST'], 'xn--') !== false){ self::loadClass('idna_convert'); $IDN = new idna_convert(); return $IDN->decode($_SERVER['HTTP_HOST']); } return $_SERVER['HTTP_HOST']; } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /** * Определяет контекст текущего запроса (стандартный или ajax) * @return bool */ private static function detectContext() else { self::$is_ajax = false; } } public static function isAjax(){ return self::$is_ajax; } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// public function startGenTimer() { $this->start_time = microtime(true); } public function getGenTime(){ return microtime(true) - $this->start_time; } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// public static function loadLanguage($file) { global $_LANG; $langfile = PATH.'/languages/'.cmsConfig::getConfig('lang').'/'.$file.'.php'; if (!file_exists($langfile)){ $langfile = PATH.'/languages/ru/'.$file.'.php'; } if (!file_exists($langfile)){ return false; } include_once($langfile); return true; } /** * Возвращает содержимое текстового файла письма из папки с текущим языком * @param string $file * @return string */ public static function getLanguageTextFile($file){ $letter_file = PATH.'/languages/'.cmsConfig::getConfig('lang').'/letters/'.$file.'.txt'; if (!file_exists($letter_file)){ $letter_file = PATH.'/languages/ru/letters/'.$file.'.txt'; } if (!file_exists($letter_file)) { return false; } return file_get_contents($letter_file); }

Источник

Ошибка при редактировании

Не найден шаблон для отображения или он недоступен для чтения: /templates/default/assets/fields/vfile.tpl.php
Последние вызовы:

cmsTemplate->renderAsset() @ /system/core/template.php: 2727
cmsTemplate->getRenderedAsset() @ /system/core/template.php: 2745
cmsTemplate->renderFormField() @ /system/core/formfield.php: 422
cmsFormField->getInput() @ /system/fields/vfile.php: 486
fieldVfile->getInput() @ /templates/default/assets/ui/form_fields.tpl.php: 82
include() @ /templates/default/assets/ui/form.tpl.php: 35
include() @ /system/core/template.php: 2706
cmsTemplate->renderAsset() @ /system/core/template.php: 2399
cmsTemplate->renderForm() @ /templates/default/controllers/content/item_form.tpl.php: 54
include() @ /system/core/template.php: 2279
cmsTemplate->processRender() @ /system/core/template.php: 2236

rshabalin

Не найден шаблон для отображения или он недоступен для чтения
vfile.tpl.php — в папке /templates/default/assets/fields найти не может. Он об этом и пишет.
Да, и vfile (имя файла) нет вроде в оригинальной версии движка? Возможно он от дополнения (Поле видео файл)?
Если да, то найдите этот файл и закиньте туда.

Evg

Evg

Не найден шаблон для отображения или он недоступен для чтения
vfile.tpl.php — в папке /templates/default/assets/fields найти не может. Он об этом и пишет.
Да, и vfile (имя файла) нет вроде в оригинальной версии движка? Возможно он от дополнения (Поле видео файл)?
Если да, то найдите этот файл и закиньте туда.

@Evg

Спасибо это исправил. Но еще на главной вышла следующая ошибка

Warning: Declaration of fieldAuthor::getListItems($value) should be compatible with cmsFormField::getListItems() in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/fields/author.php on line 19 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: var_export does not handle circular references in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/cachefiles.php on line 26 Warning: Cannot modify header information — headers already sent by (output started at /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/fields/author.php:0) in /home/o/ooogeko4/pokraskaavto43rus.ru/public_html/system/core/template.php on line 353

Источник

Читайте также:  Python write list into file
Оцените статью