这是我的index.php ::
的一部分<?php include("header.php");
$containerClass="container"; $rowClass="row";
?>
<div id='wrapper'>
<div class='<?php print $containerClass; ?>' >
<?php
if(($ptype=="" && $fullScreenEnabled!="true") || $ptype=="home" || $ptype=="viewMemberListing" || $ptype=="viewFullListing" || ($ptype=="showOnMap" && $fullScreenEnabled!="true") || $ptype=="adminOptions" || $ptype=="UpdateAdminOptions" || $ptype=="allMembers" || $ptype=="contactus" || $ptype=="page" || $_GET["cpage"]==1){
if($ptype=="viewMemberListing") $reextraMessage=" ".$relanguage_tags["your listings"]." ";
else $reextraMessage=" ".$relanguage_tags["all listings"]." ";
?>
<div class='<?php print $rowClass; ?>'>
<div class='col-md-4 col-lg-4 sbar'>
<div id="sidebar">
<div id="sidebar1">
<div class='a_block'>
<h3><?php print $relanguage_tags["Search"].$reextraMessage; ?></h3>
<?php include("reSearchForm.php"); ?>
</div>
</div> <!-- end #sidebar1 -->
对此,我补充说:
<div id="sidebar1">
<div class='a_block'>
<h3><?php print $relanguage_tags["Add Listing"].$reextraMessage; ?></h3>
<?php include("submitReListing.php"); ?>
</div>
</div> <!-- end #sidebar1 -->
// submitReListing.php已经存在于我的网站上并正常工作,但我只想让这个按钮出现在主页上,以便用户可以在主页上搜索和提交列表。
在我添加第二部分后,我转到filezilla,它询问我是否要将文件上传回服务器。我选择是。 (我需要检查“完成编辑并删除本地文件”??)但我没有看到我的网站有任何变化。
请建议。 我是php的新手,所以请耐心等待这些问题。如果需要,我还可以提供整个索引文件或其他文件。感谢
整个代码:
<?php include("header.php");
$containerClass="container"; $rowClass="row";
?>
<div id='wrapper'>
<div class='<?php print $containerClass; ?>' >
<?php
if(($ptype=="" && $fullScreenEnabled!="true") || $ptype=="home" || $ptype=="viewMemberListing" || $ptype=="viewFullListing" || ($ptype=="showOnMap" && $fullScreenEnabled!="true") || $ptype=="adminOptions" || $ptype=="UpdateAdminOptions" || $ptype=="allMembers" || $ptype=="contactus" || $ptype=="page" || $_GET["cpage"]==1){
if($ptype=="viewMemberListing") $reextraMessage=" ".$relanguage_tags["your listings"]." ";
else $reextraMessage=" ".$relanguage_tags["all listings"]." ";
?>
<div class='<?php print $rowClass; ?>'>
<div class='col-md-4 col-lg-4 sbar'>
<div id="sidebar">
<div id="sidebar1">
<div class='a_block'>
<h3><?php print $relanguage_tags["Search"].$reextraMessage; ?></h3>
<?php include("reSearchForm.php"); ?>
</div>
</div> <!-- end #sidebar1 -->
<div id="sidebar2">
<div class='a_block'>
<h3><?php print $relanguage_tags["Add listing"].$reextraMessage; ?></h3>
<?php include("submitReListing.php"); ?>
</div>
</div> <!-- end #sidebar1 -->
<?php if(trim($sidebarad)!=""){ ?>
<div id='sidebarad1'><?php print $sidebarad; ?></div>
<?php } ?>
</div> <!-- end #sidebar -->
</div>
<div class='col-md-8 col-lg-8'>
<div id="mainContent">
<div id='reResults'>
<?php if($ptype=="viewFullListing") include("viewFullListing.php"); ?>
<?php if($ptype=="adminOptions" || $ptype=="UpdateAdminOptions") include("adminOptions.php"); ?>
<?php if($ptype=="allMembers") include("allMembers.php"); ?>
<?php if($ptype=="showOnMap" && $fullScreenEnabled!="true") print "<div id='mapResults'></div>" ?>
<?php if($ptype=="contactus") include("contactus.php"); ?>
<?php if($ptype=="page"){ include("page.php"); $fullScreenEnabled="false"; } ?>
<?php if($_GET["cpage"]==1) include("pluginPage.php"); ?>
<?php if($ptype=="categoriesEdit") loadPage("categoriesEdit.php"); ?>
</div>
</div><!-- end #mainContent -->
</div>
</div>
<?php
}
if($fullScreenEnabled=="true"){
?>
<div style="width:100%;">
<div style="width:248px;" id='mapSidebar' >
<div id='showbar' data-original-title="<?php print $relanguage_tags["Show the sidebar"]; ?>"></div>
<div id="sidebar" class='ui-widget-content'>
<div id="sidebarTabs"><div id='hidebar' data-original-title="<?php print $relanguage_tags["Hide the sidebar"]; ?>"></div>
<ul>
<li><a href="#sidebar1"><?php print __("Search"); ?></a></li>
<li id='resultTab'><a href="#sidebarResults"><?php print __("Results"); ?> </a></li>
</ul>
<div id="sidebar1">
<div class='a_block'>
<!-- <div id="logo2"></div> -->
<h3><?php print $relanguage_tags["Search"].$reextraMessage; ?></h3>
<?php include("reSearchForm.php"); ?>
</div>
<?php if(trim($sidebarad)!=""){ ?>
<div id='sidebarad1'><?php print $sidebarad; ?></div>
<?php } ?>
</div> <!-- end #sidebar1 -->
<div id='sidebarResults'></div>
</div>
</div> <!-- end #sidebar -->
</div> <!-- end mapSidebar -->
<div style="width:80%;" id='mapContainer'>
<div id="mainContent"><div id='mapResults'></div><div id='theListing'></div> <div id='MapLoadingImage'><img src='images/maploading1.gif' alt='loading' /> </div>
<div id='modeButton'><a class='btn btn-primary btn-large' href='index.php? ptype=home&<?php print str_replace("ptype=", "",htmlspecialchars($_SERVER['QUERY_STRING'])); ?>'><i class='icon-align- justify'></i> <?php print $relanguage_tags["Switch to text mode"]; ?></a></div>
</div> <!-- end span8 -->
</div>
</div> <!-- end row -->
<div class="nolisting alert alert-info"><a class="close" onclick="$('.alert').hide()" data-dismiss="alert" href="#">x</a>
<h4 style="text-align:'center'"><?php print $relanguage_tags["No listings found for your search criteria"]; ?>.
<?php if($isThisDemo=="yes") print "The demo has limited listings." ?>
</h4></div>
<?php
}
if($ptype=="checklogin") loadPage("checklogin.php");
if($ptype=="submitReListing") loadPage("submitReListing.php");
if($ptype=="addReListing") loadPage("addReListing.php");
if($ptype=="editReListingForm") loadPage("editReListingForm.php");
if($ptype=="updateReListing") loadPage("updateReListing.php");
if($ptype=="myprofile") loadPage("myprofile.php");
if($ptype=="languagetags" || $ptype=="updateLanguageTags") loadPage("languagetags.php");
if($ptype=="categories" || $ptype=="updateCategories") loadPage("categories.php");
if($ptype=="pricerange" || $ptype=="updatePriceRange") loadPage("pricerange.php");
if($ptype=="countries" || $ptype=="updateCountries") loadPage("countries.php");
if($ptype=="towns" || $ptype=="updateTowns") loadPage("towns.php");
if($ptype=="addeditpage") loadPage("addeditpage.php");
if($ptype=="oodle" || $ptype=="updateOodle") loadPage("plugins/oodle/options.php");
?>
<!--
<div id="a_c" style="display:none;"><?php print $authorization_code; ?></div>
<div id="p_c" style="display:none;"><?php print md5($purchase_code); ?> </div>
-->
</div>
</div>
<?php
//if($fullScreenEnabled!="true")
include("footer.php"); ?>
答案 0 :(得分:0)
请检查它是否进入IF声明。
答案 1 :(得分:0)
好的,所以你需要有条不紊地测试一下。首先,您需要检查您输入的任何更改是否已上传到服务器并反映在网站上。
因此,再次编辑文件,键入die("Updated code");
作为index.php的第一行并保存文件。在出现的对话框中(您有一个屏幕截图),只需单击是。
现在硬刷新页面并查看是否显示“更新代码”文本。如果是,那么我们可以进入第二步。如果不是,那么您有权限或缓存问题。解决它可能需要更多的专业知识。您可以检查是否有正确的文件权限(虽然我怀疑这是原因,因为如果是这样的话,你会收到警告)。在任何情况下,右键单击文件 - 选择File Permissions
并确保选中写入复选框(如果您不确定您的用户,那么只需检查所有三个用户,组和公共。不是很安全,但是在任何情况下,我都不认为你现在正在构建世界上最安全的网站)
接下来检查是否存在缓存问题。您可以尝试打开相同的URL是一个不同的浏览器,或者您可以尝试删除所有缓存并再次尝试。我不认为这可能是一个问题(除非您有一个缓存层,如清漆或内存缓存,它设置在一个非常糟糕的方式)
接下来的事情非常重要:
更明显的原因似乎是您的代码可能是错误的。您认为该软件存在问题,这就是您没有看到应该进行更改的原因。人们认为他们的代码不会出现任何问题,但是世界上的其他任何问题都是一个常见的错误。所以我建议你开始逐行调试,直到你遇到一行,其中打印的内容不是预期的。从那里开始。