我有几段代码应该从另一个网站获取表单。标头中的php清理URL中的GET字符串。
基本上,我有一个页面:order.html,如果我将整个javascript函数粘贴到其中,该页面将起作用:
<?php if (isset($_GET['url'])) {
echo file_get_contents("http://".sanitizeString($_GET['url']));
}
function sanitizeString($var) {
$var = strip_tags($var);
$var = htmlentities($var);
return stripslashes($var);
} ?>
<html>
<body>
<p>html text still displays</p>
<script>
document.write("<div id='info'></div>");
nocache = "&nocache=" + Math.random() * 1000000
request = new ajaxRequest()
request.open("GET", "<?php echo basename($_SERVER['SCRIPT_FILENAME']); ?>?url=platform.leedhub.com/merchants/form.php?merchant_id=<?php echo $_GET['merchantid']; ?>&margin=<?php echo $_GET['affiliateid'] ?>&padding=<?php echo $_GET['URL'] ?>" + nocache, true);
request.onreadystatechange = function()
{
if (this.readyState == 4)
{
if (this.status == 200)
{
if (this.responseText != null)
{
document.getElementById('info').innerHTML =
this.responseText
}
else alert("Ajax error: No data received")
}
else alert( "Ajax error: " + this.statusText)
}
}
request.send(null)
function ajaxRequest()
{
try
{
var request = new XMLHttpRequest()
}
catch(e1)
{
try
{
request = new ActiveXObject("Msxml2.XMLHTTP")
}
catch(e2)
{
try
{
request = new ActiveXObject("Microsoft.XMLHTTP")
}
catch(e3)
{
request = false
}
}
}
return request
}
</script>
</body>
</html>
但是,如果我采用书面javascript并从外部url包含它,它将无法正常工作。
<?php if (isset($_GET['url'])) {
echo file_get_contents("http://".sanitizeString($_GET['url']));
}
function sanitizeString($var) {
$var = strip_tags($var);
$var = htmlentities($var);
return stripslashes($var);
} ?>
<p>html text still displays</p>
<html>
<body>
<script src="urlget.js"></script>
</body>
</html>
我收到403禁止错误。它是从request.send(null)告诉我的。
禁止访问
您无权访问所请求的对象。服务器对其进行了读保护或不可读。
您知道我该如何解决吗?我需要将该脚本作为外部文件,以便可以将其包含在多个网站中。
最佳答案
我认为这是文件系统权限问题。您必须确保Web服务器对urlget.js
文件具有读取访问权限。您必须找出哪个用户正在运行Web服务器的工作程序,并授予该用户urlget.js
文件的读取权限。
关于php - 包含javascript时出现错误403禁止,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14567286/