gpt4 book ai didi

javascript - 购物车 : Using ajax calls in template - 403 Forbidden Error

转载 作者:行者123 更新时间:2023-11-28 05:13:08 26 4
gpt4 key购买 nike

我正在尝试使用 Ajax 将一些数据从 smarty 模板传递到 php 文件。

在 JavaScript 模板中:

$(document).ready(function() {
$(".redeem-button").click(function(){
var test = 'test';
$.ajax({
url: 'modules/Custom/ajaxtest.php',
data: {test: test},
type: 'POST',
success: function (data) {
$(".apply-left").html(data);
}
});
});
});

当我测试它时,我在控制台中收到此错误:

POST http://localhost/xcart/modules/Custom/ajaxtest.php 403 (Forbidden)

我尝试添加:

require_once 'http://localhost/xcart/auth.php';

在 ajaxtest.php 但仍然没有运气......

如何让它发挥作用?

版本4.7.6 X-cart Gold

最佳答案

可能的原因是

aim-server[~/www/xcart_4_6_x]$ cat modules/.htaccess    
Deny from all

在这种情况下,将此代码添加到您的模块/自定义/.htaccess 文件

Order Deny,Allow
<Files "*">
Deny from all
</Files>

<FilesMatch "^ajaxtest\.php$">
Allow from all
</FilesMatch>

关于javascript - 购物车 : Using ajax calls in template - 403 Forbidden Error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41209266/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com