Jump to content
  • 0

В чем проблема


andrewmax
 Share

Question

Проблема заключается в следующем, хочу сделать мелкие правки на сайте ( править шаблон) сайт - http://wmzworker.ru 

Для этого я нажимаю проинспектировать элемент, но по какой то причине я не могу найти файл в котором лежит код отдельного елемента, постоянно показывает тот же самы файл в котором ничего нету. И так каждый раз какой бы я елемент не выбрал.

http://firepic.org/images/2014-01/17/vuybv62lyrgi.jpg

 

показывает файл  css.php в котором ничерта нету.......как же мне править?

 

вот что находится в этом файле:

ничерта нужного мне

 

 

<?php
/***********************************************************************************
************************************************************************************
***                                                                              ***
***   XTC Template Framework 2.2.6                                               ***
***                                                                              ***
***   Copyright © 2010-2012 Monev Software LLC,  All Rights Reserved           ***
***                                                                              ***
***   This program is free software; you can redistribute it and/or modify       ***
***   it under the terms of the GNU General Public License as published by       ***
***   the Free Software Foundation; either version 2 of the License, or          ***
***   (at your option) any later version.                                        ***
***                                                                              ***
***   This program is distributed in the hope that it will be useful,            ***
***   but WITHOUT ANY WARRANTY; without even the implied warranty of             ***
***   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              ***
***   GNU General Public License for more details.                               ***
***                                                                              ***
***   You should have received a copy of the GNU General Public License          ***
***   along with this program; if not, write to the Free Software                ***
***   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   ***
***                                                                              ***
***   See COPYRIGHT.php for more information.                                    ***
***   See LICENSE.php for more information.                                      ***
***                                                                              ***
***   www.joomlaxtc.com                                                          ***
***                                                                              ***
************************************************************************************
***********************************************************************************/
 
define('_JEXEC', 1);
define('DS', DIRECTORY_SEPARATOR);
 
$root = dirname(dirname(dirname(dirname(__FILE__))));
if (file_exists($root . '/defines.php')) {
include_once $root . '/defines.php';
}
if (!defined('_JDEFINES')) {
define('JPATH_BASE', $root);
require_once JPATH_BASE.'/includes/defines.php';
}
require_once JPATH_BASE.'/includes/framework.php';
 
$app = JFactory::getApplication('site');
$app->initialise();
 
// Get CSS parameter values
$template = JRequest::getWord('tp');
$id = JRequest::getInt('id');
 
// load XTC
require 'XTC.php';
$templateParameters = xtcLoadParams($id); // Get params for this template layout
 
// Process CSS
// set document mode
header('Content-type: text/css');
 
// Setup compression
if ($xtc->CSScompression) {
ob_start();
ob_implicit_flush(0);
}
 
$imgpath = $xtc->templateUrl.'images'; // a helper var for CSS scripts
 
$file = JRequest::getCmd('file');
$group = JRequest::getCmd('group');
$groups = JRequest::getVar('groups');
 
if ($file) {
$params = $templateParameters;
require $xtc->templatePath.'/css/'.$file.'.css';
}
 
if ($group) {
$prefix = $templateParameters->prefix[$group];
$params = $templateParameters->group->$group;
if (is_readable($xtc->templatePath.'/css/'.$group.'.css')) {
require $xtc->templatePath.'/css/'.$group.'.css';
}
else {
require $xtc->templatePath.'/css/'.$prefix.'.css';
}
}
 
if ($groups) {
$params = $templateParameters;
require $xtc->templatePath.'/css/default.css';
foreach (explode(',',$groups) as $group) {
$prefix = $templateParameters->prefix[$group];
$params = $templateParameters->group->$group;
if (is_readable($xtc->templatePath.'/css/'.$group.'.css')) {
require $xtc->templatePath.'/css/'.$group.'.css';
}
else {
require $xtc->templatePath.'/css/'.$prefix.'.css';
}
}
$params = $templateParameters;
require JPATH_ROOT.'/templates/system/css/system.css';
require JPATH_ROOT.'/templates/system/css/general.css';
require $xtc->templatePath.'/css/template.css';
}
 
 
// finish compression
if ($xtc->CSScompression) {
  if ( strpos($_SERVER["HTTP_ACCEPT_ENCODING"], 'x-gzip') !== false ) { $encoding = 'x-gzip'; }
  elseif ( strpos($_SERVER["HTTP_ACCEPT_ENCODING"],'gzip') !== false ) { $encoding = 'gzip'; }
  else { $encoding = false; }
 
  if ( $encoding ) {
    $contents = ob_get_contents();
    ob_end_clean();
    header('Content-Encoding: '.$encoding, false);
    print("\x1f\x8b\x08\x00\x00\x00\x00\x00");
    $size = strlen($contents);
    $contents = gzcompress($contents, 9);
//$contents = substr($contents, 0, $size);
    print($contents);
}
else {
    ob_end_flush();
  }
}

 

 

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy