Ошибка при переносе на другой хостинг

Тема в разделе "Перенос Joomla на хостинг и проблемы с хостингом", создана пользователем Eltablet, 23.06.2016.

  1. Offline

    Eltablet Недавно здесь

    Регистрация:
    23.06.2016
    Сообщения:
    2
    Симпатии:
    0
    Пол:
    Мужской
    Добрый день!

    Перенес с одного хостинга на другой по инструкции, но сайт выводит ошибку:

    Fatal error: Uncaught exception 'Exception' with message 'load error: failed to find /var/www/orion/data/www/oriontlc.ru/templates/shaper_corporex/less/error.less' in /var/www/u0206827/data/www/oriontlc.ru/plugins/system/helix/core/classes/lessc.inc.php:1598 Stack trace: #0 /var/www/u0206827/data/www/oriontlc.ru/plugins/system/helix/core/classes/lessc.inc.php(1683): lessc->compileFile('/var/www/orion/...') #1 /var/www/u0206827/data/www/oriontlc.ru/plugins/system/helix/core/helix.php(981): lessc->cachedCompile(Array) #2 /var/www/u0206827/data/www/oriontlc.ru/plugins/system/helix/core/helix.php(1011): Helix::autoCompileLess('/var/www/u02068...', '/var/www/u02068...') #3 /var/www/u0206827/data/www/oriontlc.ru/templates/shaper_corporex/error.php(25): Helix::addLess('error', 'error') #4 /var/www/u0206827/data/www/oriontlc.ru/libraries/joomla/document/error/error.php(135): require_once('/var/www/u02068...') #5 /var/www/u0206827/data/www/oriontlc.ru/libraries/joomla/document/error/error.php(107): JDocumentError->_loadTemplate('/ in/var/www/u0206827/data/www/oriontlc.ru/plugins/system/helix/core/classes/lessc.inc.php on line 1598.

    Понимаю что где то нужно прописать путь еще, или возможно что то сделать еще. Подскажите пожалуйста решение проблемы.

    Андрей.

     
  2.  
  3. Лучший ответ:
    Сообщение #2 от 23.06.2016, автор OlegK
  4. OlegK
    Offline

    OlegK Russian Joomla! Team Команда форума ⇒ Профи ⇐

    Регистрация:
    17.01.2011
    Сообщения:
    7 812
    Симпатии:
    771
    Пол:
    Мужской
    Лучший ответ
    Посмотри настройки плагина plugins/system/helix/
    И кеш очистить нужно
     
  5. Offline

    Eltablet Недавно здесь

    Регистрация:
    23.06.2016
    Сообщения:
    2
    Симпатии:
    0
    Пол:
    Мужской
    Helix.php
    <?php
    /**
    * @package Helix Framework
    * @author JoomShaper http://www.joomshaper.com
    * @copyright Copyright (c) 2010 - 2014 JoomShaper
    * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
    */

    //no direct accees
    defined ('_JEXEC') or die ('resticted aceess');

    jimport( 'joomla.event.plugin' );

    class plgSystemHelix extends JPlugin
    {
    function onAfterInitialise()
    {
    $helix_path = JPATH_PLUGINS.'/system/helix/core/helix.php';
    if (file_exists($helix_path)) {
    require_once($helix_path);
    Helix::getInstance()
    ->loadHelixOverwrite()
    ->importShortCodeFiles();
    }

    }

    //Added 2.1.6
    function onContentPrepare($context, &$article)
    {

    $userDef = ( $context == 'com_content.article' ) ||
    ( $context == 'com_content.category' ) ||
    ( $context == 'com_content.featured' ) ||
    ( $context == 'mod_custom.content' );

    if( $userDef ) {
    $article->text = do_shortcode($article->text);
    }

    }


    function onAfterRender()
    {
    $shortcodes_scripts = Helix::getInstance()->_shortcodes_scripts;
    $shortcodes_styles = Helix::getInstance()->_shortcodes_styles;

    $shortcodes_scripts = array_unique($shortcodes_scripts);
    $shortcodes_styles = array_unique($shortcodes_styles);

    $data = JResponse::getBody();
    $new_head_data = '';

    foreach ($shortcodes_styles as $style)
    {
    $new_head_data .= '<link rel="stylesheet" href="' . $style . '" />'. "\n";
    }

    foreach ($shortcodes_scripts as $script)
    {
    $new_head_data .= '<script type="text/javascript" src="' . $script . '"></script>'. "\n";
    }

    $data = str_replace('</head>', $new_head_data . "\n</head>", $data);

    JResponse::setBody($data);
    }


    function onAfterDispatch()
    {

    if( !JFactory::getApplication()->isAdmin() ){

    $activeMenu = JFactory::getApplication()->getMenu()->getActive();

    if(is_null($activeMenu)) $template_style_id = 0;
    else $template_style_id = (int) $activeMenu->template_style_id;
    if( $template_style_id > 0 ){

    JTable::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_templates/tables');
    $style = JTable::getInstance('Style', 'TemplatesTable');
    $style->load($template_style_id);

    if( !empty($style->template) ) JFactory::getApplication()->setTemplate($style->template, $style->params);
    }
    }
    }

    // Updated 1.9.5
    function onContentPrepareForm($form, $data)
    {
    if ($form->getName()=='com_menus.item') //Add Helix menu params to the menu item
    {
    JHtml::_('behavior.framework');
    $doc = JFactory::getDocument();

    JForm::addFormPath(JPATH_PLUGINS.'/system/helix/fields');
    $form->loadFile('params', false);


    // 2.5
    if (JVERSION < 3) {
    $plg_path = JURI::root(true).'/plugins/system/helix/js/admin/menuscript.25.js';
    } else {
    $plg_path = JURI::root(true).'/plugins/system/helix/js/admin/menuscript.30.js'; //for joomla 3.0
    }
    $doc->addScript($plg_path);
    }
    }

    Как очистить кеш?
    --- добавлено: 23.06.2016, первое сообщение размещено: 23.06.2016 ---
    В панель управления сайтом пока нет доступа.
    --- добавлено: 23.06.2016 ---
    кеш почистил, все запустилось.
    --- добавлено: 23.06.2016 ---
    спасибо
     

Поделиться этой страницей

Загрузка...