php curl发布到托管脚本的服务器不起作用

时间:2011-10-01 16:09:45

标签: php curl

我正在尝试使用curl将数据发布到发布在同一服务器上的脚本,但是它给了我这个错误:

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
  <title>401 - Unauthorized</title>
 </head>
 <body>
  <h1>401 - Unauthorized</h1>
 </body>
</html>

它在localhost上工作正常,我需要更改哪些设置才能使其在服务器上运行?

1 个答案:

答案 0 :(得分:0)

401 - unauthorized可能意味着您尝试上传到的路径有适当的密码保护。

您需要删除保护,或change your script so curl sends the correct credentials.