我正在使用此网站发货计算器 MY Work Site 。我在wordpress的根目录中添加了以下代码
<?php
$zip = "";
$weight = "";
$qty = "";
if (isset($_GET['z']))
{
$zip = $_GET['z'];
}
if (isset($_GET['w']))
{
$weight = $_GET['w'];
}
if (isset($_GET['q']))
{
$qty = $_GET['q'];
}
$site_url = "http://www.marketumbrellasite.com/GetRate.aspx?w=".$weight."&q=".$qty."& z=".$zip;
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, $site_url);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
ob_start();
curl_exec($ch);
curl_close($ch);
$result = ob_get_contents();
ob_end_clean();
if($result != "")
{
echo $result;
} else {
echo "An error occurred.<br>Please try again later.";
}
?>
然后将以下代码发送到我的functions.php
<?php
add_action('wp_head', 'head_scripts');
function head_scripts() {
echo '<div id="comm100-button-121"></div>
<script type="text/javascript">// <![CDATA[
var Comm100API = Comm100API || new Object;
Comm100API.chat_buttons = Comm100API.chat_buttons || [];
var comm100_chatButton = new Object;
comm100_chatButton.code_plan = 121;
comm100_chatButton.div_id = \'comm100-button-121\';
Comm100API.chat_buttons.push(comm100_chatButton);
Comm100API.site_id = 124523;
Comm100API.main_code_plan = 121;
var comm100_lc = document.createElement(\'script\');
comm100_lc.type = \'text/javascript\';
comm100_lc.async = true;
comm100_lc.src = \'https://chatserver.comm100.com/livechat.ashx?siteId=\' + Comm100API.site_id;
var comm100_s = document.getElementsByTagName(\'script\')[0];
comm100_s.parentNode.insertBefore(comm100_lc, comm100_s);
// ]]></script>';
echo ' <script src="'. get_stylesheet_directory_uri() . '/js/UPSRates.js" type="text/javascript"></script>';
}
/* Shipping Calculator Shortcode [shipping-calculator weight="#"]
----------------------------------------------------------------------------------------*/
add_shortcode('shipping-calculator', 'ag_shipping_calculator');
function ag_shipping_calculator( $atts ) {
extract( shortcode_atts( array(
'weight' => ''
), $atts ) );
return '<a id="calc" style="font-weight:bold;color:#C20000; cursor:pointer;">Calculate Shipping</a>
<div id="calcShipping" style="display:none; width:250px;">
Zip Code: <input type="text" id="zip" name="zip" maxlength="5" style="width:82px;" /><br />
Quantity: <input type="text" id="qty" name="qty" value="1" maxlength="3" style="width:32px;" /><br />
<input type="hidden" id="weight" name="weight" value="'.$weight.'"/>
<button type="button" onclick="loadRates()">Calculate</button> <span id="ajaxloader" style="display:none;"><img src="/img/ajax-loader.gif" alt="Loading..." /></span>
<br />We charge no sales tax nor handling fees. We guarantee the internet\'s lowest out-the-door price on this item.
<br />
<script>
jQuery(document).ready(function() {
jQuery("#calc").click(function () {
jQuery("#calcShipping").toggle("fast");
});
});
</script>
<br />
</div>
<div id="shipRateDiv"></div>
';
}
然后这个js在我的主题
里面的一个js文件夹里面function loadRates() {
document.getElementById("ajaxloader").style.display = 'inline';
var zip = document.getElementById("zip").value;
var weight = document.getElementById("weight").value;
var qty = document.getElementById("qty").value;
var url = "/GetRate.php?z="+zip+"&w="+weight+"&q="+qty;
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
else {// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
document.getElementById("shipRateDiv").innerHTML = xmlhttp.responseText+" <br><br>";
document.getElementById("ajaxloader").style.display = 'none';
jQuery("#calcShipping").hide("slow");
}
}
xmlhttp.open("GET", url, true);
xmlhttp.send();
}
然后我在页面
中的订单按钮下添加了以下短代码[shipping-calculator weight="#"]
当我点击它时,要计算的表格即将到来,当我尝试使用此邮政编码&#34; 85298&#34; .it导致页面找不到。我跟着这个Site正在工作的东西一样。我不知道我在哪里弄错了。请帮助一些。谢谢!!
答案 0 :(得分:3)
请注意,您的网址是相对的,因此/GetRate.php
将被解析为绝对网址http://yoursite/GetRate.php
(因为/在开头)
如果您希望绝对网址为(例如)http://yoursite/portambrella/GetRate.php
,则应将相对网址更改为/portambrella/GetRate.php
。
答案 1 :(得分:2)
当您打开Firebug等Web调试工具或Firefox或Chrome的内置工具时,会出现一个“网络”标签,您可以使用该标签查看浏览器发出的HTTP请求。
在这种情况下,您可以看到http://constantin-entertainment.info/GetRate.php?z=85298&w=4&q=1的请求返回 404未找到错误。
您的php文件GetRate.php
可能位于其他位置,可能位于子文件夹中。
您需要调整线
var url = "/GetRate.php?z="+zip+"&w="+weight+"&q="+qty;
指向GetRate.php