我是Joomla的初学者! 我必须将Joomla 2.5.x版本站点升级到最新版本的Joomla。 我检查了版本2.5.19的所有现有组件/模块/插件的兼容性,它们在Joomla 3.x中都兼容。 唯一的问题是模板。 我只是不知道如何开始以及从哪里开始修改它。
这是 templateDetails.xml :
的部分内容<extension version="2.5" type="template" client="site">
<name>Harpo</name>
<version>1.0.0</version>
...
<files>
<filename>index.php</filename>
<folder>css/</folder>
<folder>images/</folder>
<filename>templateDetails.xml</filename>
<filename>error.php</filename>
</files>
<images>
<filename>template_thumbnail.png</filename>
</images>
...
<positions>
<position>newsflash</position>
<position>hornav</position>
<position>breadcrumbs</position>
<position>banner</position>
<position>left</position>
<position>right</position>
<position>top</position>
<position>user1</position>
<position>user2</position>
<position>user3</position>
<position>user4</position>
<position>user5</position>
<position>footer</position>
<position>syndicate</position>
<position>debug</position>
</positions>
</extension>
这是我的index.php文件的一些行:
<head>
<link rel="shortcut icon" href="<?php echo $app->getCfg( 'live_site' ); ?>templates/<?php echo $this->template ?>/images/favicon.ico"/>
<meta http-equiv="Content-Type" content="text/html;" />
<link href="<?php echo $app->getCfg( 'live_site' ); ?>templates/<?php echo $this->template ?>/css/template_css.css" rel="stylesheet" type="text/css" media="all"/>
<!-- <link href="css/template_css.css" rel="stylesheet" type="text/css" media="all"/> -->
<jdoc:include type="head" />
<meta name="verify-v1" content="PynT0gVSXBh484xuIjQakd0YZS+sHAYmOK+CRTa1aJI=" />
<script type="text/javascript" src="<?php echo $app->getCfg( 'live_site' ); ?>templates/<?php echo $this->template ?>/flashobject.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-32944659-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);
})();
jQuery.noConflict();
...
...
...
<body>
<div class="out">
<div class="main">
<!--Toparea Start-->
<div class="top">
<div class="logo_space">
<div class="boxlogin"><jdoc:include type="modules" name="user2" /></div>
</div>
<div class="header">
<img src="<?php echo $app->getCfg( 'live_site' ); ?>templates/<?php echo $this->template ?>/images/img_header.jpg" alt="sfondo_header" align="top" style="float:left;" />
<div id="flash" style="float:right; width:550px; height:132px;"></div>
<script type="text/javascript">
var fo = new FlashObject("<?php
$flashPath = $app->getCfg( 'live_site' )."templates/".$this->template."/flash/animazione.swf";
echo $flashPath;
?>", "Menu", "550", "132", "8", "#FFFFFF", "transparent");
fo.write("flash");
</script>
<!-- <img src="<?php echo $app->getCfg( 'live_site' ); ?>templates/<?php echo $this->template ?>/images/img_headerright.jpg" alt="sfondo_header" align="top" style="float:right;" width="550" height="132" /> -->
<!-- <div class="boxlogin"></div> -->
</div>
<div class="topmenu">
<?php if ($this->countModules( "top" )) { ?>
<jdoc:include type="modules" name="top" />
<?php } ?>
</div>
</div>
...
...
...
欢迎任何建议!
答案 0 :(得分:0)
好的看了你的代码,这里有几件事。
首先,您的XML文件很好,并且不需要任何更改。
要以noConflict模式导入jQuery并确保它只执行一次,您应该替换它:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
用这个:
JHtml::_('jquery.framework'); // this is PHP so wrap it in PHP tags
完成后,您可以删除此代码:jQuery.noConflict();
要从configuration.php文件中获取值,请不要使用$app->getCfg()
,因为它已被弃用。而是使用$app->get()
。所以在你的情况下,替换这个:
$app->getCfg('live_site')
用这个
$app->get('live_site');
除此之外,我还没有看到代码的任何其他问题。