Joomla 5.2.2 Security & Bugfix Release
Joomla 5.2.2 je nyní k dispozici. Jedná se o bezpečnostní vydání pro Joomla 5.x.
kam nacpat kód, když v index.php není <head>?
07. led 2013 20:07 #101788
Odpověď od CrocodilusCZ
Zkušený uživatel
ani za tím řádkem, ani na konci souboru to nefunguje. Podle mě je tam nějaká pitomá kolize.
mimochodem, zkoušel jsem i modul freichat, ale ten také nefunguje. Je to zatrolené, kurňa.
mimochodem, zkoušel jsem i modul freichat, ale ten také nefunguje. Je to zatrolené, kurňa.
07. led 2013 20:17 #101790
Odpověď od Houbák
Zkušený uživatel
A jaký kód tam vkládáte? Co říká konzola prohlížeče?
07. led 2013 20:21 #101791
Odpověď od CrocodilusCZ
Zkušený uživatel
vkládám tam tohle, ale imho v tom problém není, protože jak říkám, pod default šablonou to běhá jak z praku...
Code:
<!--===============FreiChatX========START========================-->
<!-- For uninstalling ME , first remove/comment all FreiChatX related code i.e below code
Then remove FreiChatX tables frei_session & frei_chat if necessary
The best/recommended way is using the module for installation -->
<?php
$session = JSession::getInstance("none",array());
$host = JURI::root();
$ses=$session->getId();
if(!function_exists("freichatx_get_hash")){
function freichatx_get_hash($ses){
if(is_file("/home1/musicrev/public_html/teramagazin/freichat/hardcode.php")){
require "/home1/musicrev/public_html/teramagazin/freichat/hardcode.php";
$temp_id = $ses . $uid;
return md5($temp_id);
}
else
{
echo "<script>alert('module freichatx says: hardcode.php file not
found!');</script>";
}
return 0;
}
}
?>
<script type="text/javascript" language="javascipt"
src="<?php echo $host; ?>freichat/client/main.php?id=<?php echo $ses;?>&xhash=<?php echo freichatx_get_hash($ses); ?>">
</script> <link rel="stylesheet" href="<?php echo $host; ?>freichat/client/jquery/freichat_themes/freichatcss.php" type="text/css">
<!--===========================FreiChatX=======END=========================-->
07. led 2013 20:54 #101796
Odpověď od CrocodilusCZ
Zkušený uživatel
tak jsem teď použil soubor head.php v tomto znění
a pouze mi to rozstřelilo nabídku placek na webu. K nahlednutí je to na teramagazin.cz ideální by bylo, kdybych viděl, jestli to píše nějakou chybu, ale to neumím najít, jestli k nějaké kolizi skutečně dochází..
Code:
<?php
/**
* ------------------------------------------------------------------------
* JA T3 System plugin for Joomla 1.7
* ------------------------------------------------------------------------
* Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* ------------------------------------------------------------------------
*/
// No direct access
defined('_JEXEC') or die;
?>
<script type="text/javascript">
var siteurl='<?php echo JURI::base(true) ?>/';
var tmplurl='<?php echo JURI::base(true)."/templates/".T3_ACTIVE_TEMPLATE ?>/';
var isRTL = <?php echo $this->isRTL()?'true':'false' ?>;
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30378650-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<jdoc:include type="head" />
<?php if (T3Common::mobile_device_detect()=='iphone'):?>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1; user-scalable=1;" />
<meta name="apple-touch-fullscreen" content="YES" />
<?php endif;?>
<?php if (T3Common::mobile_device_detect()):?>
<meta name="HandheldFriendly" content="true" />
<?php endif;?>
<link href="<?php echo T3Path::getUrl('images/favicon.ico') ?>" rel="shortcut icon" type="image/x-icon" />
<?php JHTML::stylesheet ('', 'templates/system/css/system.css') ?>
<?php JHTML::stylesheet ('', 'templates/system/css/general.css') ?>
<!--===============FreiChatX========START========================-->
<!-- For uninstalling ME , first remove/comment all FreiChatX related code i.e below code
Then remove FreiChatX tables frei_session & frei_chat if necessary
The best/recommended way is using the module for installation -->
<?php
$session = JSession::getInstance("none",array());
$host = JURI::root();
$ses=$session->getId();
if(!function_exists("freichatx_get_hash")){
function freichatx_get_hash($ses){
if(is_file("/home1/musicrev/public_html/teramagazin/freichat/hardcode.php")){
require "/home1/musicrev/public_html/teramagazin/freichat/hardcode.php";
$temp_id = $ses . $uid;
return md5($temp_id);
}
else
{
echo "<script>alert('module freichatx says: hardcode.php file not
found!');</script>";
}
return 0;
}
}
?>
<script type="text/javascript" language="javascipt"
src="<?php echo $host; ?>freichat/client/main.php?id=<?php echo $ses;?>&xhash=<?php echo freichatx_get_hash($ses); ?>">
</script> <link rel="stylesheet" href="<?php echo $host; ?>freichat/client/jquery/freichat_themes/freichatcss.php" type="text/css">
<!--===========================FreiChatX=======END=========================-->
a pouze mi to rozstřelilo nabídku placek na webu. K nahlednutí je to na teramagazin.cz ideální by bylo, kdybych viděl, jestli to píše nějakou chybu, ale to neumím najít, jestli k nějaké kolizi skutečně dochází..
07. led 2013 21:03 #101798
Odpověď od CrocodilusCZ
Zkušený uživatel
řekne někomu něco tohle?
Code:
pera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.12 (Core 2.12.388)
K výmazu konzole použijte "clear()".
Pro více informací zadejte "// help()".
Uncaught exception: TypeError: 'jQuery('#lates_slider').bxSlider' is not a function
Error thrown at line 1060, column 1 in <anonymous function>() in http://teramagazin.cz/index.php:
jQuery('#lates_slider').bxSlider({
called via Function.prototype.apply() from line 168, column 29466 in <anonymous function: f.Callbacks>(b, f) in http://teramagazin.cz/freichat/client/main.php?id=voe5s0g1tlka07qobhbink9nr7&xhash=dc3ed8b67dbd11814e8eeaff7102b066:
if(c[l].apply(b,f)===!1&&a.stopOnFalse)
called from line 168, column 31004 in <anonymous function: fireWith>(b, c) in http://teramagazin.cz/freichat/client/main.php?id=voe5s0g1tlka07qobhbink9nr7&xhash=dc3ed8b67dbd11814e8eeaff7102b066:
d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));
called from line 168, column 19394 in <anonymous function: ready>(a) in http://teramagazin.cz/freichat/client/main.php?id=voe5s0g1tlka07qobhbink9nr7&xhash=dc3ed8b67dbd11814e8eeaff7102b066:
A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")
called from line 168, column 28585 in <anonymous function: B>() in http://teramagazin.cz/freichat/client/main.php?id=voe5s0g1tlka07qobhbink9nr7&xhash=dc3ed8b67dbd11814e8eeaff7102b066:
c.removeEventListener("DOMContentLoaded",B,!1),e.ready()
07. led 2013 21:06 #101799
Odpověď od Houbák
Zkušený uživatel
Jj, pere se vám to s modulem v levém sloupci (s těmi plackami).