uawdijnntqw1x1x1
IP : 216.73.216.168
Hostname : server.fattispazio.it
Kernel : Linux server.fattispazio.it 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
poliximo
/
public_html
/
4690b
/
..
/
home_
/
modules
/
..
/
components
/
com_jcomments
/
jcomments.gzip.php
/
/
<?php /** * JComments - Joomla Comment System * * CSS & JavaScript deflate class * * @version 2.0 * @package JComments * @author Sergey M. Litvinov (smart@joomlatune.ru) * @copyright (C) 2006-2009 by Sergey M. Litvinov (http://www.joomlatune.ru) * @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html * * If you fork this to create your own project, * please make a reference to JComments someplace in your code * and provide a link to http://www.joomlatune.ru **/ // ensure this file is being included by a parent file (defined('_VALID_MOS') OR defined('_JEXEC')) or die('Direct Access to this location is not allowed.'); class JCommentsGzip { /* * Compresses the javascript or css code for more efficient delivery * * @access private */ function processRequest() { $target = JCommentsInput::getParam($_REQUEST, 'target', ''); switch($target) { case 'css': include_once (JCOMMENTS_HELPERS . DS . 'system.php'); $config = & JCommentsFactory::getConfig(); $filename = JCommentsSystemPluginHelper::getCSS(null, true); require_once (JCOMMENTS_LIBRARIES . DS . 'joomlatune' . DS . 'optimizer.php'); $optimizer = & JoomlaTuneOptimizer::getInstance(); $optimizer->compress($filename); break; case 'js': $files = array(); $files[] = JCOMMENTS_LIBRARIES . DS . 'joomlatune' . DS . 'ajax.js'; $files[] = JCOMMENTS_BASE . DS . 'js' . DS . 'jcomments-v2.1.js'; require_once (JCOMMENTS_LIBRARIES . DS . 'joomlatune' . DS . 'optimizer.php'); $optimizer = & JoomlaTuneOptimizer::getInstance(); $optimizer->compress($files, 'javascript'); break; default: header('HTTP/1.0 404 Not Found'); break; } exit; } } ?>
/home/poliximo/public_html/4690b/../home_/modules/../components/com_jcomments/jcomments.gzip.php