我有一个包含幻灯片,jQuery手风琴和博客部分的页面。在localhost上一切正常,因此我将其上传到我的服务器。现在一切都崩溃了!一旦在服务器上,手风琴和幻灯片放映不起作用。在使用代码寻找问题后,我意识到:
如果我从页面中删除了博客php代码(粘贴在下面),手风琴和幻灯片显示工作正常,但显然没有博客。
如果我只删除jquery手风琴代码(粘贴在下面),幻灯片和博客都可以工作,但显然没有手风琴。
我不知道为什么一切都在localhost上正常工作但在实际服务器上没有?我也不知道从哪里开始看?
这是违规文件的链接: http://www.darrenmorton.co.uk/blog/comments/index.php
感谢您的帮助。
下面是代码(两者都在同一张表中)。
<!--jQuery accordion-->
<script type="text/javascript">
$(function(){
$("#accordion").accordion({active: false, collapsible: true, icons: {'header': 'ui-icon-plus', 'headerSelected': 'ui-icon-minus'}});
});
</script>
<!--Blog section-->
<div class="container" id="six"><!--Comment section-->
<?php /*
//Simple login
echo '<div style="float:right;">';
if (isset($_SESSION['user']))
echo 'Logged as <a href="account.php">'.$_SESSION['user']['name'].'</a> | <a href="account.php?page=logout">Logout</a>';
else echo '<a href="account.php?page=login" class="btn">Login</a> <a href="account.php?page=signup" class="btn">Sign up</a>';
echo'</div>'; */
?>
<!--<a href="admin">Admin Dashboard Here !</a> | <a href="index2.php">Template #2</a> <br></br>-->
<?php
//Include Comments Class
require_once('includes/Comments.class.php');
$Comments = new Comments();
//Set some custom config. NOTE: Not all config options will work here ! Read the documentation.
$config = array(
'page_title' => 'My Page', //This is your page title, it's optional
);
$Comments->set_config($config);
//Display comments
$Comments->display_comments();
?>
</div><!--End comment section-->