我的论坛中有一个脚本,允许我的用户从我的论坛上传一些东西。
我想让我的用户从论坛上传附件文件,但 vbulletin 总是显示未注册的表格。
所以我问有没有一种方法可以发送带有附件链接的用户名和密码,以便 vbulletin 可以识别我的用户并允许下载该附件文件?
我试过这个:
$link = 'http://localhost/vb/attachment.php?attachmentid=2';
$username = 'admin';
$password = '1111';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $link);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
echo '<pre>';
print_r($info);
print_r($output);
但正如我所说,未注册的表格出现了!