我最近將我的公司網站移到我們未使用的網絡服務器之一,以便將Joomla後端從1.5.26更新到最新的Joomla 2.5。由於模塊,我們無法前往3.x.我使用了SP升級,並且一旦我安裝了新的主題和當前模塊,所有內容都可以很好地遷移。Javascript函數播放正確的舊網站,但不是新的
我們有一個自定義的默認主題和指定的主題到主頁。在分配的主題(分配給主菜單)目錄中,index.php在標題上方有一個腳本。我將在下面發佈此代碼。
可以在以下鏈接找到舊網站,當您第一次訪問網站時,您會看到視頻播放。 cpmchurchministries.com/old
新網站可以在以下鏈接找到,當您第一次訪問該網站時,您將只能看到一幅圖片。 cpmchurchministries.com/new
的代碼是相同的兩個站點,index.php文件:
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css"/>
<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/swf/swfobject.js"></script>
<script type="text/javascript">
swfobject.embedSWF("<?php echo $this->baseurl ?>/templates/chosenpeople/swf/cpm_logo.swf", "flash_logo", "245", "162", "7");
window.addEvent('domready', function() {
if($('default_header')) {
if(Cookie.get("cpm_movie") != "full") {
full_movie();
} else {
small_movie();
}
}
});
function small_movie() {
$('default_header').removeClass('full_movie');
$('default_header').addClass('small_movie');
swfobject.embedSWF("<?php echo $this->baseurl ?>/templates/cphome/swf/header_home.swf", "flash_header", "696", "157", "7");
}
function full_movie() {
$('default_header').removeClass('small_movie');
$('default_header').addClass('full_movie');
Cookie.set("cpm_movie", "full", {duration: 365});
swfobject.embedSWF("<?php echo $this->baseurl ?>/templates/cphome/swf/video_header.swf", "flash_header", "696", "400", "7");
}
</script>
<?php if ($editmode) echo '<link rel="stylesheet" href="'.$this->baseurl.'/templates/system/css/general.css" type="text/css" />'."\n"; ?>
有沒有人遇到類似的問題?可以得到任何幫助嗎? 謝謝。 。 。
你得到在控制檯中的錯誤;關於'Cookie.get()'的一些東西。 – Pointy
舊網站已脫機,現在應該可以訪問。 cpmchurchministries.com/old 讓我知道你現在是否可以看到它。 我會查看你的所有迴應,看看現在有什麼建議。 非常感謝您的回覆! – user3210108