找不到哪个文件发送联系表
Can't find which file sends the contact form
ModX 网站有一个结构如下的工作联系表:
<form id="hi" action="#">
<input type="hidden" name="action" value="hisend">
... just some plain input fields ...
<input type="submit" value="Send" name="send">
</div>
</form>
当用户提交表单时,以下 jQuery 代码处理它:
$("#hi").submit(function(e){
e.preventDefault();
var r = new Date().getTime();
$.post('/ajax.html?ts'+r, $("#hi").serialize(), function(data){
if(data == 'OK'){
// ... just some simple thank you message ...
}
});
return false;
});
问题:我需要更改此表单向其发送电子邮件的地址,但不知道它在哪里 is/how 此表单有效?
从逻辑上讲,我会查看 ajax.html
以获取更多线索,但我看不到该文件,无论是从 ModX 管理器还是从 Web 主机提供的文件管理器(我没有 FTP 访问。)
文件似乎在那里,直接从浏览器访问时给出响应 200,但没有输出。
非常感谢任何提示。
看起来文件可能是索引-ajax.php。我怀疑 ajax.html 可能有一个 .htaccess 重定向到 index-ajax.php
ModX 网站有一个结构如下的工作联系表:
<form id="hi" action="#">
<input type="hidden" name="action" value="hisend">
... just some plain input fields ...
<input type="submit" value="Send" name="send">
</div>
</form>
当用户提交表单时,以下 jQuery 代码处理它:
$("#hi").submit(function(e){
e.preventDefault();
var r = new Date().getTime();
$.post('/ajax.html?ts'+r, $("#hi").serialize(), function(data){
if(data == 'OK'){
// ... just some simple thank you message ...
}
});
return false;
});
问题:我需要更改此表单向其发送电子邮件的地址,但不知道它在哪里 is/how 此表单有效?
从逻辑上讲,我会查看 ajax.html
以获取更多线索,但我看不到该文件,无论是从 ModX 管理器还是从 Web 主机提供的文件管理器(我没有 FTP 访问。)
文件似乎在那里,直接从浏览器访问时给出响应 200,但没有输出。
非常感谢任何提示。
看起来文件可能是索引-ajax.php。我怀疑 ajax.html 可能有一个 .htaccess 重定向到 index-ajax.php